diff options
Diffstat (limited to 'repo/core/gcc.xibuild')
-rw-r--r-- | repo/core/gcc.xibuild | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/repo/core/gcc.xibuild b/repo/core/gcc.xibuild index 276560c..19e28ca 100644 --- a/repo/core/gcc.xibuild +++ b/repo/core/gcc.xibuild @@ -8,23 +8,36 @@ DESC="The GNU Compiler Collection - C and C++ frontends" build () { + #fix an issue breaking libasan.a + + sed -e '/static.*SIGSTKSZ/d' \ + -e 's/return kAltStackSize/return SIGSTKSZ * 4/' \ + -i libsanitizer/sanitizer_common/sanitizer_posix_libcdep.cpp + case $(uname -m) in - x86_64) - sed -e '/m64=/s/lib64/lib/' \ - -i.orig gcc/config/i386/t-linux64 - ;; -esac + x86_64) + sed -e '/m64=/s/lib64/lib/' \ + -i.orig gcc/config/i386/t-linux64 + ;; + esac - mkdir -v build cd build - ../configure --prefix=/usr --disable-multilib + + ../configure --prefix=/usr \ + LD=ld \ + --enable-languages=c,c++ \ + --disable-multilib \ + --disable-bootstrap \ + --with-system-zlib + make + make DESTDIR=$PKG_DEST install } package () { - ln -sv /usr/bin/gcc $PKG_DEST/lib/cpp + ln -svr /usr/bin/cpp $PKG_DEST/usr/lib } |