Mercurial > hg > peckfft
annotate compile.sh @ 7:707be088ccc3
build
| author | Peter Meerwald <p.meerwald@bct-electronic.com> |
|---|---|
| date | Mon, 19 Sep 2011 17:39:53 +0200 |
| parents | 2d6c49fcafcb |
| children | 8726585681f6 |
| rev | line source |
|---|---|
| 0 | 1 gcc \ |
|
4
2d6c49fcafcb
neon2 and neon4 support
Peter Meerwald <p.meerwald@bct-electronic.com>
parents:
0
diff
changeset
|
2 -O2 -march=native -msse2 -mfpmath=sse -ffast-math -fomit-frame-pointer \ |
|
2d6c49fcafcb
neon2 and neon4 support
Peter Meerwald <p.meerwald@bct-electronic.com>
parents:
0
diff
changeset
|
3 -DUSE_SIMD=SIMD_SSE2 \ |
| 0 | 4 -I . \ |
| 5 -o peck_test_x86 \ | |
| 6 peck_fftr.c peck_fft.c \ | |
| 7 peck_test.c \ | |
| 8 -lm | |
| 9 | |
| 7 | 10 /opt/arm-2011.03/bin/arm-none-linux-gnueabi-gcc \ |
| 11 -O3 -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -ffast-math -fomit-frame-pointer \ | |
| 12 -DUSE_SIMD=SIMD_NEON \ | |
| 13 -I . \ | |
| 14 -o peck_test_neon \ | |
| 15 peck_fftr.c peck_fft.c \ | |
| 16 peck_test.c \ | |
| 17 -lm | |
| 0 | 18 |
| 7 | 19 /opt/arm-2011.03/bin/arm-none-linux-gnueabi-gcc \ |
| 20 -O3 -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -ffast-math -fomit-frame-pointer \ | |
| 21 -DUSE_SIMD=SIMD_NEON2 \ | |
| 22 -I . \ | |
| 23 -o peck_test_neon2 \ | |
| 24 peck_fftr.c peck_fft.c \ | |
| 25 peck_test.c \ | |
| 26 -lm | |
| 27 | |
| 28 /opt/arm-2011.03/bin/arm-none-linux-gnueabi-gcc \ | |
| 29 -O3 -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp -ffast-math -fomit-frame-pointer \ | |
| 30 -DUSE_SIMD=SIMD_NEON4 \ | |
| 31 -I . \ | |
| 32 -o peck_test_neon4 \ | |
| 33 peck_fftr.c peck_fft.c \ | |
| 34 peck_test.c \ | |
| 35 -lm | |
| 36 |
