hack for lto on windows for devkitPSP

This commit is contained in:
Dave Murphy 2012-02-28 02:12:28 +00:00
parent 0fe3446758
commit 07bc3d2d1e

View File

@ -7,10 +7,12 @@ PLATFORM=`uname -s`
case $PLATFORM in
Darwin )
cflags="-O -g -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc"
ldflags="-arch i386 -arch ppc"
ldflags="-arch i386 -arch ppc"
;;
MINGW32* )
cflags="-D__USE_MINGW_ACCESS"
# horrid hack to get -flto to work on windows
plugin_ld="--with-plugin-ld=ld"
;;
esac