Fix +load hash list. Special script for runtime-info.h on mingw32
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/libobjc/trunk@10022 72102866-910b-0410-8b05-ffd578937521main
parent
3dcf666e04
commit
ba524a1e53
@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
|
||||
if test x"$1" = z; then
|
||||
CC1OBJ=gcc
|
||||
else
|
||||
CC1OBJ=$1
|
||||
fi
|
||||
|
||||
if test "$GNUSTEP_HOST_OS" = mingw32; then
|
||||
CC1OBJ=`cygpath -u $CC1OBJ`
|
||||
fi
|
||||
rm -f tmp-runtime
|
||||
echo "" > tmp-runtime
|
||||
echo "/* This file is automatically generated */" > runtime-info.h
|
||||
$CC1OBJ -print-objc-runtime-info tmp-runtime >> runtime-info.h
|
||||
rm -f tmp-runtime
|
||||
Loading…
Reference in New Issue