diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-04-05 14:04:27 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-04-05 14:04:27 +0000 |
commit | f6a1d782daa8a6f6748b1099c72398a712406d6b (patch) | |
tree | 8da457b2bc4565e86255d11011a73b52ad7315b7 /audio/id3lib/Makefile | |
parent | devel/py-validators: Update to 0.14.3 (diff) |
audio/id3lib: fix build on powerpc 12.1-RELEASE
Error:
`_ZTSN12_GLOBAL__N_117ConstIteratorImplE' referenced in section `.data.rel.ro' of tag.lo: defined in discarded section `.rodata._ZTSN12_GLOBAL__N_117ConstIteratorImplE[_ZTSN12_GLOBAL__N_117ConstIteratorImplE]' of tag.lo
Using newer binutils alone doesn't help, but using also newer GCC helps.
PR: 243715
Reported by: canardo909@gmx.com
Notes
Notes:
svn path=/head/; revision=530789
Diffstat (limited to '')
-rw-r--r-- | audio/id3lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/id3lib/Makefile b/audio/id3lib/Makefile index 5e49c96cfb9e..d3a872770bc8 100644 --- a/audio/id3lib/Makefile +++ b/audio/id3lib/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_mips= fails to link: '_ZTSN12_GLOBAL__N_117ConstIteratorImplE' referenced in section '.data.rel.ro' of tag.lo: defined in discarded section BROKEN_mips64= fails to link: '_ZTSN12_GLOBAL__N_117ConstIteratorImplE' referenced in section '.data.rel.ro' of tag.lo: defined in discarded section -USES= iconv libtool localbase +USES= compiler:c11 iconv libtool localbase GNU_CONFIGURE= yes USE_LDCONFIG= yes |