summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-11-11 23:43:36 -0300
committerJames Almer <jamrial@gmail.com>2017-11-11 23:43:36 -0300
commit82fc222f676fd4e0dc8328e3abf17fba45d11af5 (patch)
tree14e7afdca906fb7027f7f92d1f1ed30bbf872275 /configure
parent12f4e2ba023e4ac286f5b4e8d73de07ea749a888 (diff)
parent9dc79b2943d99f256a3279f09580b27a95fb9aa8 (diff)
Merge commit '9dc79b2943d99f256a3279f09580b27a95fb9aa8'
* commit '9dc79b2943d99f256a3279f09580b27a95fb9aa8': configure: Drop support for legacy PGI compiler Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure19
1 files changed, 0 insertions, 19 deletions
diff --git a/configure b/configure
index a7bc69db03..f259a483ef 100755
--- a/configure
+++ b/configure
@@ -4084,17 +4084,6 @@ icc_flags(){
done
}
-pgi_flags(){
- for flag; do
- case $flag in
- -flto) echo -Mipa=fast,libopt,libinline,vestigial ;;
- -fomit-frame-pointer) echo -Mnoframe ;;
- -g) echo -gopt ;;
- *) echo $flag ;;
- esac
- done
-}
-
suncc_flags(){
for flag; do
case $flag in
@@ -4236,14 +4225,6 @@ probe_cc(){
_cflags_speed='-O2'
_cflags_size='-Os'
_flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
- elif $_cc -V 2>&1 | grep -q Portland; then
- _type=pgi
- _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
- opt_common='-alias=ansi -Mdse -Mlre -Mpre'
- _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
- _cflags_size="-O2 -Munroll=c:1 $opt_common"
- _cflags_noopt="-O"
- _flags_filter=pgi_flags
elif $_cc 2>&1 | grep -q 'Microsoft.*ARM.*Assembler'; then
_type=armasm
_ident=$($_cc | head -n1)