You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
355 B
Bash
17 lines
355 B
Bash
#!/bin/sh
|
|
|
|
if test x"$1" = z; then
|
|
CC1OBJ=gcc
|
|
else
|
|
CC1OBJ=$1
|
|
fi
|
|
|
|
if test "$GNUSTEP_HOST_OS" = mingw32; then
|
|
CC1OBJ=`$GNUSTEP_MAKEFILES/fixpath.sh -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
|