...
Code Block |
---|
if [ -z "$BASH_VERSION" -o -n "$ORALD_USE_GCC" ] ; then
exec gcc "$@"
exit 1
fi
|
add the -no-pie option to gcc in here.:
Code Block |
---|
if [ -z "$BASH_VERSION" -o -n "$ORALD_USE_GCC" ] ; then
exec gcc -no-pie "$@"
exit 1
fi |
Warning |
---|
The proper option is -no-pie with a SINGLE dash before it! Having two dashes does not seem to report an error but the option does not work!! |
...