2. I'm having problems building Scanalyze 1.0.3 on my Linux system
Michael Goesele of TU Darmstadt contributes his experience with
making Scanalyze build on his SUSE Linux 10.2 system (64 bit version) with
gcc version 4.1.2:
I just compiled scanalyze on my new system here in Darmstadt and ran
into a few problems:
1. I needed to add some permissive flags in
auxlibs/dist/mixkit/mix-config.Linux:
CFLAGS = -g -O2 -fpermissive
CXXFLAGS = -g -O2 -fpermissive
2. I had to add an "#undef isfinite" statement in Pnt3.h (isfinite
was defined as function and macro which yields a very cryptic error
message):
#include
#undef isfinite
#include
3. I had to make another change to the Makedefs.Linux file (removing
the -march flag):
TARGET =
#TARGET = -march=i686
Back to Scanalyze homepage