mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-08-03 23:55:58 -04:00
12 lines
457 B
Bash
Executable File
12 lines
457 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$1" = "--version" ]; then
|
|
echo "${TARGET}-g++ (GCC) 4.9 20140827 (prerelease)"
|
|
echo "Copyright (C) 2014 Free Software Foundation, Inc."
|
|
echo "This is free software; see the source for copying conditions. There is NO"
|
|
echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
|
|
else
|
|
# theargs=
|
|
exec $thecxx -Wno-unknown-warning-option "${@/-fno-var-tracking-assignments/}"
|
|
# exec $thecxx "$theargs"
|
|
fi
|