configure
script should do a good job of picking flags
for the C compiler. Still, we keep the notes below in case you run
into problems.
Laurent Desnogues sent us his changes to get FFTW running on an Alpha under Digital Unix.
In src/Makefile
:
# Alpha under Digital Unix CC = cc CFLAGS = -newc -w0 -O4 -ansi_alias -ansi_args -fp_reorder -tune host \ -std1 $(INCLUDE)
In tests/Makefile
:
# Alpha under Digital Unix CC = cc CFLAGS = -newc -w0 -O4 -ansi_alias -ansi_args -fp_reorder -tune host \ -std1 $(INCLUDE) -D_XOPEN_SOURCE_EXTENDED
# Alpha under Digital Unix CC = cc CFLAGS = -O4 -fp_reorder -std1 $(INCLUDE)He also had to comment out the declarations of
random
and
srandom
(lines 52 and 53) in tests/testnd.c
.
(Otherwise, he got errors about previous declarations found in
stdlib.h
.)