diff options
author | grant <grant@pkgsrc.org> | 2004-12-19 00:38:59 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-12-19 00:38:59 +0000 |
commit | ea8feb4881ac68910fd9877626aef8c18c40f61f (patch) | |
tree | 127f9be403454225986fe396f623fe326550a0f8 /mk/wrapper | |
parent | ab51eeee4907521c151ae0932557119bbbd4597a (diff) | |
download | pkgsrc-ea8feb4881ac68910fd9877626aef8c18c40f61f.tar.gz |
transform -fPIC to -qnocommon and clarify the related comment.
Diffstat (limited to 'mk/wrapper')
-rw-r--r-- | mk/wrapper/transform-xlc-cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mk/wrapper/transform-xlc-cc b/mk/wrapper/transform-xlc-cc index 1fa6a32eee0..c3c8c100b06 100644 --- a/mk/wrapper/transform-xlc-cc +++ b/mk/wrapper/transform-xlc-cc @@ -1,4 +1,4 @@ -# $NetBSD: transform-xlc-cc,v 1.5 2004/12/05 09:27:23 grant Exp $ +# $NetBSD: transform-xlc-cc,v 1.6 2004/12/19 00:38:59 grant Exp $ # # Copyright (c) 2004 The NetBSD Foundation, Inc. # All rights reserved. @@ -58,9 +58,10 @@ case $arg in split_arg=yes ;; # -qnocommon is the xlc argument to allocate uninitialized globals in -# the data section. --fno-common) +# the data section for PIC. +-fno-common|-fPIC) arg=-qnocommon + msg_log $wrapperlog " (transform-xlc-cc) to: $arg" addtocache=yes ;; ###################################################################### |