mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 06:53:33 +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
|
||||
# indicate that ignoring these flags, helps let autoconf know
|
||||
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" ] || \
|
||||
[ x"$x" = x"-pedantic-errors" ]; then
|
||||
# this toolchain is intended for building other people's code
|
||||
|
|
|
@ -142,6 +142,10 @@ for x; do
|
|||
continue
|
||||
elif [ x"$x" = x"-fPIC" ]; then
|
||||
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" ] ||
|
||||
[ x"$x" = x"-pie" ] ||
|
||||
[ x"$x" = x"-shared" ] ||
|
||||
|
|
Loading…
Reference in a new issue