diff options
author | notaz | 2012-09-13 02:17:48 +0300 |
---|---|---|
committer | notaz | 2012-09-13 02:17:48 +0300 |
commit | 84365ca2e1751440f0af970abd3b8517ae97a055 (patch) | |
tree | 29a7d6ea543379303f715044a182823bcb5ab916 /configure | |
parent | 9e5ac38fda66536f2a9e6dd2a747ae37538c3638 (diff) | |
parent | 791f6e3e4764e93a81a6b57127d6d9673a7456e9 (diff) | |
download | pcsx_rearmed-84365ca2e1751440f0af970abd3b8517ae97a055.tar.gz pcsx_rearmed-84365ca2e1751440f0af970abd3b8517ae97a055.tar.bz2 pcsx_rearmed-84365ca2e1751440f0af970abd3b8517ae97a055.zip |
Merge branch 'libretro'
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 <<EOF #include <zlib.h> - void main() { uncompress(0, 0, 0, 0); } + int main(void) { uncompress(0, 0, 0, 0); } EOF compile_binary } |