comparison compile.sh @ 10:05f6ab0a17c0

backup
author Peter Meerwald <p.meerwald@bct-electronic.com>
date Wed, 21 Sep 2011 15:20:58 +0200
parents 8726585681f6
children
comparison
equal deleted inserted replaced
9:8726585681f6 10:05f6ab0a17c0
1 /opt/arm-2011.03/bin/arm-none-linux-gnueabi-gcc \ 1 /opt/arm-2011.03/bin/arm-none-linux-gnueabi-gcc \
2 -O3 -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -ffast-math -fomit-frame-pointer \ 2 -O3 -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -ffast-math -fomit-frame-pointer \
3 -DUSE_SIMD=SIMD_NEON2 -DBFLY2_ASM=1 \
4 -I . \ 3 -I . \
5 -c -o kf_bfly2_only.o -g \ 4 -c -o kf_bfly2_only.o -g \
6 kf_bfly2.S \ 5 kf_bfly2.S \
7 -lm 6 -lm
8 7
9 /opt/arm-2011.03/bin/arm-none-linux-gnueabi-gcc \ 8 /opt/arm-2011.03/bin/arm-none-linux-gnueabi-gcc \
10 -O3 -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -ffast-math -fomit-frame-pointer \ 9 -O3 -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -ffast-math -fomit-frame-pointer \
11 -DUSE_SIMD=SIMD_NEON2 -DBFLY2_ASM=1 \ 10 -I . \
11 -c -o kf_bfly4_only.o -g \
12 kf_bfly4.S \
13 -lm
14
15
16 /opt/arm-2011.03/bin/arm-none-linux-gnueabi-gcc \
17 -O3 -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -ffast-math -fomit-frame-pointer \
18 -DUSE_SIMD=SIMD_NEON2 -DBFLY2_ASM=1 -DBFLY4_ASM=1 \
12 -I . -I ../armv7_cycles \ 19 -I . -I ../armv7_cycles \
13 -o peck_test_arm -g \ 20 -o peck_test_arm -g \
14 peck_fft.c peck_fftr.c peck_test.c kf_bfly2.S ../armv7_cycles/armv7_cycles.c \ 21 peck_fft.c peck_fftr.c peck_test.c kf_bfly2.S kf_bfly4.S ../armv7_cycles/armv7_cycles.c \
15 -lm 22 -lm
16 23
17 gcc \ 24 gcc \
18 -O2 -march=native -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer \ 25 -O2 -march=native -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer \
19 -DUSE_SIMD=SIMD_SSE2 -DBFLY2_ASM=0 \ 26 -DUSE_SIMD=SIMD_SSE2 -DBFLY2_ASM=0 -DBFLY4_ASM=0 \
20 -I . -I ../armv7_cycles \ 27 -I . -I ../armv7_cycles \
21 -o peck_test_x86 \ 28 -o peck_test_x86 \
22 peck_fftr.c peck_fft.c \ 29 peck_fftr.c peck_fft.c \
23 peck_test.c ../armv7_cycles/armv7_cycles.c \ 30 peck_test.c ../armv7_cycles/armv7_cycles.c \
24 -lm 31 -lm
25 32
26 /opt/arm-2011.03/bin/arm-none-linux-gnueabi-gcc \ 33 /opt/arm-2011.03/bin/arm-none-linux-gnueabi-gcc \
27 -O3 -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -ffast-math -fomit-frame-pointer \ 34 -O3 -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -ffast-math -fomit-frame-pointer \
28 -DUSE_SIMD=SIMD_NEON -DBFLY2_ASM=0 \ 35 -DUSE_SIMD=SIMD_NEON -DBFLY2_ASM=0 -DBFLY4_ASM=0 \
29 -I . -I ../armv7_cycles \ 36 -I . -I ../armv7_cycles \
30 -o peck_test_neon \ 37 -o peck_test_neon \
31 peck_fftr.c peck_fft.c \ 38 peck_fftr.c peck_fft.c \
32 peck_test.c ../armv7_cycles/armv7_cycles.c \ 39 peck_test.c ../armv7_cycles/armv7_cycles.c \
33 -lm 40 -lm
34 41
35 /opt/arm-2011.03/bin/arm-none-linux-gnueabi-gcc \ 42 /opt/arm-2011.03/bin/arm-none-linux-gnueabi-gcc \
36 -O3 -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -ffast-math -fomit-frame-pointer \ 43 -O3 -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -ffast-math -fomit-frame-pointer \
37 -DUSE_SIMD=SIMD_NEON2 -DBFLY2_ASM=0 \ 44 -DUSE_SIMD=SIMD_NEON2 -DBFLY2_ASM=0 -DBFLY4_ASM=0 \
38 -I . -I ../armv7_cycles \ 45 -I . -I ../armv7_cycles \
39 -o peck_test_neon2 \ 46 -o peck_test_neon2 \
40 peck_fftr.c peck_fft.c \ 47 peck_fftr.c peck_fft.c \
41 peck_test.c ../armv7_cycles/armv7_cycles.c \ 48 peck_test.c ../armv7_cycles/armv7_cycles.c \
42 -lm 49 -lm
43 50
44 /opt/arm-2011.03/bin/arm-none-linux-gnueabi-gcc \ 51 /opt/arm-2011.03/bin/arm-none-linux-gnueabi-gcc \
45 -O3 -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -ffast-math -fomit-frame-pointer \ 52 -O3 -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -ffast-math -fomit-frame-pointer \
46 -DUSE_SIMD=SIMD_NEON4 -DBFLY2_ASM=0 \ 53 -DUSE_SIMD=SIMD_NEON4 -DBFLY2_ASM=0 -DBFLY4_ASM=0 \
47 -I . -I ../armv7_cycles \ 54 -I . -I ../armv7_cycles \
48 -o peck_test_neon4 \ 55 -o peck_test_neon4 \
49 peck_fftr.c peck_fft.c \ 56 peck_fftr.c peck_fft.c \
50 peck_test.c ../armv7_cycles/armv7_cycles.c \ 57 peck_test.c ../armv7_cycles/armv7_cycles.c \
51 -lm 58 -lm

Repositories maintained by Peter Meerwald, pmeerw@pmeerw.net.