Created
November 7, 2010 21:03
-
-
Save ice799/666785 to your computer and use it in GitHub Desktop.
wat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
is_gcc_m64() { | |
if test `echo $CFLAGS | grep "\-m64" -c` -eq 1 ; then echo ppc64; | |
else | |
if test `echo $CC | grep "\-m64" -c` -eq 1 ; then echo ppc64; else echo ppc32; fi; | |
fi; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment