diff options
author | Stefan Krah <skrah@bytereef.org> | 2020-09-04 20:33:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-04 20:33:17 (GMT) |
commit | 84a7917b4c9afec07575065cffa143b91fe98c14 (patch) | |
tree | 6ec0f739a58f73b72eb55c21ebcfcb4160c6f29d /configure | |
parent | 306cfb3a37e1438f6ba9f0a9f3af3c00aae4ec64 (diff) | |
download | cpython-84a7917b4c9afec07575065cffa143b91fe98c14.zip cpython-84a7917b4c9afec07575065cffa143b91fe98c14.tar.gz cpython-84a7917b4c9afec07575065cffa143b91fe98c14.tar.bz2 |
bpo-41721: Add xlc options (GH-22096)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -7592,11 +7592,14 @@ $as_echo "$MACOSX_DEPLOYMENT_TARGET" >&6; } ;; esac -# ICC needs -fp-model strict or floats behave badly case "$CC" in *icc*) + # ICC needs -fp-model strict or floats behave badly CFLAGS_NODIST="$CFLAGS_NODIST -fp-model strict" ;; +*xlc*) + CFLAGS_NODIST="$CFLAGS_NODIST -qalias=noansi -qmaxmem=-1" + ;; esac if test "$assertions" = 'true'; then |