mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-27 06:48:31 +00:00
parent
bb92347158
commit
1c34088ba0
2 changed files with 8 additions and 0 deletions
|
@ -180,6 +180,10 @@ for x; do
|
||||||
# no support for building dynamic shared objects yet. reports
|
# no support for building dynamic shared objects yet. reports
|
||||||
# indicate that ignoring these flags, helps let autoconf know
|
# indicate that ignoring these flags, helps let autoconf know
|
||||||
continue
|
continue
|
||||||
|
elif [ x"$x" = x"-fpie" ] || [ x"$x" = x"-pie" ]; then
|
||||||
|
# no support for position independent executables
|
||||||
|
# https://github.com/jart/cosmopolitan/issues/1126
|
||||||
|
continue
|
||||||
elif [ x"$x" = x"-Werror" ] || \
|
elif [ x"$x" = x"-Werror" ] || \
|
||||||
[ x"$x" = x"-pedantic-errors" ]; then
|
[ x"$x" = x"-pedantic-errors" ]; then
|
||||||
# this toolchain is intended for building other people's code
|
# this toolchain is intended for building other people's code
|
||||||
|
|
|
@ -142,6 +142,10 @@ for x; do
|
||||||
continue
|
continue
|
||||||
elif [ x"$x" = x"-fPIC" ]; then
|
elif [ x"$x" = x"-fPIC" ]; then
|
||||||
continue
|
continue
|
||||||
|
elif [ x"$x" = x"-fpie" ] || [ x"$x" = x"-pie" ]; then
|
||||||
|
# no support for position independent executables
|
||||||
|
# https://github.com/jart/cosmopolitan/issues/1126
|
||||||
|
continue
|
||||||
elif [ x"$x" = x"-r" ] ||
|
elif [ x"$x" = x"-r" ] ||
|
||||||
[ x"$x" = x"-pie" ] ||
|
[ x"$x" = x"-pie" ] ||
|
||||||
[ x"$x" = x"-shared" ] ||
|
[ x"$x" = x"-shared" ] ||
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue