Package Details: wxhexeditor 0.24-4

Git Clone URL: https://aur.archlinux.org/wxhexeditor.git (read-only, click to copy)
Package Base: wxhexeditor
Description: A free hex editor / disk editor for Linux, Windows and MacOSX
Upstream URL: http://www.wxhexeditor.org
Licenses: GPL2
Submitter: None
Maintainer: severach (mxfm)
Last Packager: severach
Votes: 87
Popularity: 0.000064
First Submitted: 2009-01-20 22:52 (UTC)
Last Updated: 2022-12-16 03:28 (UTC)

Dependencies (4)

Required by (0)

Sources (3)

Latest Comments

« First ‹ Previous 1 .. 3 4 5 6 7 8 9 10 11 Next › Last »

stevenhoneyman commented on 2014-12-09 20:46 (UTC)

I suppose the first question would be does it build manually OK? I think this has to be the simplest PKGBUILD ever... the only "addition" is I found without specifying CC CXX and CPP, it tries to use "wx-gtk-cpp" or similar as a compiler... which isn't even a real binary :/

stevenhoneyman commented on 2014-12-09 20:42 (UTC)

I notice two differences from mine - you have --sort-common in your LDFLAGS; and you are using a wrapper for gcc/g++ (distcc?) Not sure if/why either of those would break this, but it's two things you could test out easily. I'll post a full makepkg log of mine if that might help you?

<deleted-account> commented on 2014-12-09 20:34 (UTC)

I have the same problem, output here: https://gist.github.com/ajs124/ff00d9c419beb1954710

stevenhoneyman commented on 2014-12-09 17:41 (UTC)

5th line of his makefile adds it to LDFLAGS, and the second parameter in the final link stage is LDFLAGS. copy/paste the last compilation command please? the line starting in: g++ and ending in: -o wxHexEditor

stevenhoneyman commented on 2014-12-09 17:34 (UTC)

the "GOMP" (in capital letters :P) is the clue I think - libgomp.so should be a part of gcc-libs I think, it looks like it is not linking that in the build for you

willemw commented on 2014-12-09 17:17 (UTC)

... HexDialogs.cpp:(.text+0x25e): undefined reference to `GOMP_sections_next' ... HexDialogs.cpp:(.text+0x1945f): undefined reference to `GOMP_sections_end_nowait' collect2: error: ld returned 1 exit status Makefile:53: recipe for target 'wxHexEditor' failed make: *** [wxHexEditor] Error 1 ==> ERROR: A failure occurred in build(). Aborting... Removing udis86-git (there is no udis86 in PKGBUILD) or installing udis86 makes no difference.

Alister.Hood commented on 2014-09-12 16:22 (UTC)

Does it really need udis86-git? Plain udis86 seems to work for me.

eniac commented on 2014-06-15 09:21 (UTC)

A couple of "assertion failed" errors when starting wxhexeditor: ./src/gtk/textctrl.cpp(833): assert "IsSingleLine()" failed in GetEditable(): shouldn't be called for multiline ./src/common/sizer.cpp(1401): assert "Assert failure" failed in DoInsert(): too many items (5 > 2*2) in grid sizer (maybe you should omit the number of either rows or columns?) and one when closing it: ./src/common/wincmn.cpp(478): assert "GetEventHandler() == this" failed in ~wxWindowBase(): any pushed event handlers must have been removed The solution is to compile wxwidgets with --disable-debug and use build=release as per http://sourceforge.net/p/wxhexeditor/discussion/648351/thread/e79380f0/?limit=50

dobo commented on 2014-05-23 13:14 (UTC)

It still works when compiling with wxgtk2.8. --- PKGBUILD 2014-05-23 15:11:49.904926673 +0200 +++ PKGBUILD_ 2014-05-23 13:33:52.457886719 +0200 @@ -7,7 +7,7 @@ pkgdesc="a free hex editor / disk editor arch=('i686' 'x86_64' 'mips64el' 'armv6h') url="http://wxhexeditor.sourceforge.net/" license=('GPL') -depends=('udis86-git' 'wxgtk') +depends=('udis86-git' 'wxgtk2.8') makedepends=('webkitgtk2') provides=("wxhexeditor=${pkgver}") conflicts=('wxhexeditor') @@ -31,7 +31,7 @@ prepare() { build() { cd "${srcdir}/wxHexEditor" - make -j1 + make WXCONFIG=/usr/bin/wx-config-2.8 -j1 } package() {