X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=configure;h=da126e7ba8d0a3dfcd106b3ddef6aee272ce9223;hp=0618ac2119dfecfbdd4db3324217adefeaaf8dc9;hb=06bc35c833797ce9f6f3287abf954f037bb12319;hpb=f89fa2d9b2c3e90a361a38656cb45e20cf7cf097 diff --git a/configure b/configure index 0618ac21..da126e7b 100755 --- a/configure +++ b/configure @@ -164,7 +164,6 @@ fi # ARM stuff if [ "$ARCH" = "arm" ]; then if [ "$optimize_cortexa8" = "yes" ]; then - # both: -mfpu=neon CFLAGS="$CFLAGS -mcpu=cortex-a8 -mtune=cortex-a8" ASFLAGS="$ASFLAGS -mcpu=cortex-a8" fi @@ -198,7 +197,7 @@ if [ "$ARCH" = "arm" ]; then fi fi - # set mfpu and mfloat-abi if they are not set + # automatically set mfpu and mfloat-abi if they are not set if [ "$have_arm_neon" = "yes" ]; then echo "$CFLAGS" | grep -q -- '-mfpu=' || CFLAGS="$CFLAGS -mfpu=neon" echo "$ASFLAGS" | grep -q -- '-mfpu=' || ASFLAGS="$ASFLAGS -mfpu=neon" @@ -206,14 +205,15 @@ if [ "$ARCH" = "arm" ]; then echo "$CFLAGS" | grep -q -- '-mfpu=' || CFLAGS="$CFLAGS -mfpu=vfp" echo "$ASFLAGS" | grep -q -- '-mfpu=' || ASFLAGS="$ASFLAGS -mfpu=vfp" fi - if [ "$have_armv6" = "yes" ]; then + floatabi_set_by_gcc=`$CC -v 2>&1 | grep -q -- --with-float= && echo yes` || true + if [ "$floatabi_set_by_gcc" != "yes" -a "$have_armv6" = "yes" ]; then echo "$CFLAGS" | grep -q -- '-mfloat-abi=' || CFLAGS="$CFLAGS -mfloat-abi=softfp" echo "$ASFLAGS" | grep -q -- '-mfloat-abi=' || ASFLAGS="$ASFLAGS -mfloat-abi=softfp" fi - # must disable -mthumb as recompiler can't handle it + # must disable thumb as recompiler can't handle it if check_define __thumb__; then - CFLAGS="$CFLAGS -mno-thumb" + CFLAGS="$CFLAGS -marm" fi if [ "$have_armv7" = "yes" ]; then @@ -230,12 +230,12 @@ if [ "x$builtin_gpu" = "x" ]; then builtin_gpu="peops" fi -if [ "$ARCH" = "x86_64" ]; then +#if [ "$ARCH" = "x86_64" ]; then # currently we are full of 32bit assumptions, # at least savestate compatibility will break without these - CFLAGS="$CFLAGS -m32" - LDFLAGS="$LDFLAGS -m32" -fi +# CFLAGS="$CFLAGS -m32" +# LDFLAGS="$LDFLAGS -m32" +#fi # supposedly we can avoid -fPIC on armv5 for slightly better performace? if [ "$ARCH" != "arm" -o "$have_armv6" = "yes" ]; then @@ -267,7 +267,7 @@ check_zlib() { cat > $TMPC < - void main() { uncompress(0, 0, 0, 0); } + int main(void) { uncompress(0, 0, 0, 0); } EOF compile_binary } @@ -319,12 +319,12 @@ EOF } MAIN_LDLIBS="$MAIN_LDLIBS -lz" -check_zlib || fail "please install zlib/libz-dev" +check_zlib || fail "please install zlib (libz-dev)" -check_bzlib || fail "please install bz2lib/libbz2-dev" +check_bzlib || fail "please install bz2lib (libbz2-dev)" MAIN_LDLIBS="-lpng $MAIN_LDLIBS" -check_libpng || fail "please install libpng/libpng-dev" +check_libpng || fail "please install libpng (libpng-dev)" # find what audio support we can compile if [ "x$sound_drivers" = "x" ]; then @@ -333,7 +333,7 @@ if [ "x$sound_drivers" = "x" ]; then sound_drivers="$sound_drivers alsa" MAIN_LDLIBS="-lasound $MAIN_LDLIBS" fi - if [ "$need_sdl" == "yes" ] || check_sdl `sdl-config --cflags -libs`; then + if [ "$need_sdl" = "yes" ] || check_sdl `sdl-config --cflags --libs`; then sound_drivers="$sound_drivers sdl" need_sdl="yes" fi @@ -347,10 +347,12 @@ else fi fi -if [ "$need_sdl" == "yes" ]; then +if [ "$need_sdl" = "yes" ]; then + which sdl-config > /dev/null || \ + fail "sdl-config is missing; please install libsdl (libsdl1.2-dev)" CFLAGS="$CFLAGS `sdl-config --cflags`" MAIN_LDLIBS="`sdl-config --libs` $MAIN_LDLIBS" - check_sdl || fail "please install libsdl1.2-dev" + check_sdl || fail "please install libsdl (libsdl1.2-dev)" fi # check for tslib (only headers needed) @@ -383,6 +385,13 @@ if [ "$have_arm_neon" = "yes" -a "$builtin_gpu" != "neon" ]; then plugins="$plugins plugins/gpu_neon/gpu_neon.so" fi +cat > $TMPC <