Re: hfsinspect: src/crc32c/crc32c.c:29:13: error: instruction requires: Not 64-bit mode

2020-05-06 Thread macports
> On 2020-05-06, at 02:40, Ryan Schmidt wrote: > On May 5, 2020, at 14:02, macpo...@parvis.nl wrote: > >> man -c src/volumes/crc32/crc32.c >> mp -c src/crc32c/crc32c.c > >> obviously i have a problem understandig github. >> >> for the manual make i did git clone --recursive >> >> git

Re: hfsinspect: src/crc32c/crc32c.c:29:13: error: instruction requires: Not 64-bit mode

2020-05-05 Thread Ryan Schmidt
On May 5, 2020, at 14:02, macpo...@parvis.nl wrote: > man -c src/volumes/crc32/crc32.c > mp -c src/crc32c/crc32c.c > obviously i have a problem understandig github. > > for the manual make i did git clone --recursive > > git log: > commit fc00689c77928b229707851931719fac937bf34c (tag:

Re: hfsinspect: src/crc32c/crc32c.c:29:13: error: instruction requires: Not 64-bit mode

2020-05-05 Thread Ken Cunningham
> for the manual make i did git clone --recursive > > g you may be using the bundled crc then in the manual build, and some other crc is being found by macports in the macports build. I'd have to actually try to build it now to tell you anything more intelligent, but I have too many other

Re: hfsinspect: src/crc32c/crc32c.c:29:13: error: instruction requires: Not 64-bit mode

2020-05-05 Thread macports
> On 2020-05-05, at 18:07, Ken Cunningham > wrote: > ... > For that answer, you'd have to look closely at the build lines. Perhaps it's > building in 32bit mode when you do it manually. Maybe MacPorts is setting the > environment up for you with lots of added bits that aren't happening with

Re: hfsinspect: src/crc32c/crc32c.c:29:13: error: instruction requires: Not 64-bit mode

2020-05-05 Thread macports
> On 2020-05-05, at 15:49, Ken Cunningham > wrote: > > you are building a 64 bit executable, but trying to include 32 bit Intel asm, > which won't work. > > hopefully there is 64 bit asm somewhere you should include instead, or some > #define to set for 64 bit builds, or some way to turn

Re: hfsinspect: src/crc32c/crc32c.c:29:13: error: instruction requires: Not 64-bit mode

2020-05-05 Thread Ken Cunningham
On 2020-05-05 8:43 a.m., Paul de Vries wrote: On 2020-05-05, at 15:49, Ken Cunningham wrote: you are building a 64 bit executable, but trying to include 32 bit Intel asm, which won't work. hopefully there is 64 bit asm somewhere you should include instead, or some #define to set for 64

Re: hfsinspect: src/crc32c/crc32c.c:29:13: error: instruction requires: Not 64-bit mode

2020-05-05 Thread Ken Cunningham
you are building a 64 bit executable, but trying to include 32 bit Intel asm, which won't work. hopefully there is 64 bit asm somewhere you should include instead, or some #define to set for 64 bit builds, or some way to turn off the asm, or ... some other way to not include 32 bit asm in a 64

hfsinspect: src/crc32c/crc32c.c:29:13: error: instruction requires: Not 64-bit mode

2020-05-05 Thread macports
https://github.com/ahknight/hfsinspect i’m trying to build a portfile for hfsinspect (on 10.11). manually its works fine: git clone --recursive https://github.com/ahknight/hfsinspect.git cd hfsinspect make sudo make install Portfile: - PortSystem 1.0 PortGroup github