Merge pull request #174020 from trofi/workaround-fno-common-for-nuweb

nuweb: add -fcommon workaround
This commit is contained in:
Anderson Torres 2022-05-23 23:13:34 -03:00 committed by GitHub
commit ca0550ab32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,6 +15,13 @@ stdenv.mkDerivation rec {
patchPhase = ''
sed -ie 's|nuweb -r|./nuweb -r|' Makefile
'';
# Workaround build failure on -fno-common toolchains like upstream
# gcc-10. Otherwise build fails as:
# ld: global.o:/build/nuweb-1.60/global.h:91: multiple definition of
# `current_sector'; main.o:/build/nuweb-1.60/global.h:91: first defined here
NIX_CFLAGS_COMPILE = "-fcommon";
buildPhase = ''
make nuweb
make nuweb.pdf nuwebdoc.pdf all