Questions and Answers :
Unix/Linux :
Fixing build for FreeBSD/amd64
Message board moderation
Author | Message |
---|---|
![]() ![]() Send message Joined: 19 Jul 99 Posts: 5 Credit: 625,605 RAC: 0 ![]() |
Hello! Without this patch, the configure-script fails to recognize a FreeBSD/amd64 system as a "X86_64_TRUE" one. The build subsequently fails, because an attempt is made to compile sse3_ChirpData_ak, which contains some SSE3-only instructions, which Opterons don't have... The patch is really simple: --- configure.ac 2007-09-01 03:59:50.000000000 -0400 +++ configure.ac 2008-01-06 11:35:40.000000000 -0500 @@ -247,5 +247,5 @@ AM_CONDITIONAL(LINUX, [test -n "`echo ${target} | grep linux`"]) AM_CONDITIONAL(I386, [test -n "`echo ${target} | grep i.86`"]) -AM_CONDITIONAL(X86_64, [test -n "`echo ${target} | grep 'x86_64'`"]) +AM_CONDITIONAL(X86_64, [test -n "`echo ${target} | egrep 'x86_64|amd64'`"]) AM_CONDITIONAL(PPC, [test -n "`echo ${target} | grep 'powerpc'`" -o -n "`echo ${target} | grep 'ppc'`" ]) Please, apply ASAP. Thanks! |
Dotsch ![]() Send message Joined: 9 Jun 99 Posts: 2422 Credit: 919,393 RAC: 0 ![]() |
Rene, the maintainer of the FreeBSD SETI ports has still posted this to the mailinglist for the responsable devs. |
©2025 University of California
SETI@home and Astropulse are funded by grants from the National Science Foundation, NASA, and donations from SETI@home volunteers. AstroPulse is funded in part by the NSF through grant AST-0307956.