Kaydet (Commit) 96515464 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

force the use of gcc on cygwin for concat-deps.c

üst b23f2d78
......@@ -76,8 +76,12 @@ fi
# build concat-deps
echo "building concat-deps"
$CC_FOR_BUILD -O2 "$SOLARENV/bin/concat-deps.c" -o "$SOLARENV/bin/concat-deps" || exit
if [ "$COM_FOR_BUILD" = "MSC" ] ; then
# on cygwin force the use of gcc
gcc -O2 "$SOLARENV/bin/concat-deps.c" -o "$SOLARENV/bin/concat-deps" || exit
else
$CC_FOR_BUILD -O2 "$SOLARENV/bin/concat-deps.c" -o "$SOLARENV/bin/concat-deps" || exit
fi
#make sure build.pl is executable
chmod +x "$SRC_ROOT/solenv/bin/build.pl"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment