diff options
author | kamil <kamil@pkgsrc.org> | 2018-12-18 15:23:07 +0000 |
---|---|---|
committer | kamil <kamil@pkgsrc.org> | 2018-12-18 15:23:07 +0000 |
commit | 3df0547e6e28f3d6b1b38aff05f9fd5f9ced340d (patch) | |
tree | 7ded58f5dec2f3b34212418fe12038a6d76f281f /textproc | |
parent | 3551241880a6e1e3a5081c685af22c6d0dedd74c (diff) | |
download | pkgsrc-3df0547e6e28f3d6b1b38aff05f9fd5f9ced340d.tar.gz |
icu: Revert -fno-addrsig for Clang
This should be handled in a different place.
The addrsig property breaks GNU strip(1) in a cryptic way, creating
misparsable ELF file.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/icu/Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/textproc/icu/Makefile b/textproc/icu/Makefile index 7f66d1444f7..479e65ce92b 100644 --- a/textproc/icu/Makefile +++ b/textproc/icu/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.119 2018/12/18 06:14:08 kamil Exp $ +# $NetBSD: Makefile,v 1.120 2018/12/18 15:23:07 kamil Exp $ DISTNAME= icu4c-63_1-src PKGNAME= ${DISTNAME:S/4c//:S/-src//:S/_/./g} @@ -130,12 +130,4 @@ SUBST_SED.icu-config+= -e 's/l$${LIBICU}/l$${ICUPREFIX}/g' SUBST_SED.icu-config+= -e '/l$${ICUPREFIX}/ s/$${ICULIBSUFFIX_VERSION}//g' .endif -.if !empty(PKGSRC_COMPILER:Mclang) -# The -faddrsig flag does not make libraries compatible with GNU strip(1) -CWRAPPERS_APPEND.cxx+= -fno-addrsig -CWRAPPERS_APPEND.cc+= -fno-addrsig -_WRAP_EXTRA_ARGS.CXX+= -fno-addrsig -_WRAP_EXTRA_ARGS.CC+= -fno-addrsig -.endif - .include "../../mk/bsd.pkg.mk" |