05-gcc-final 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. # Build script for gcc.
  2. #
  3. # Copyright (c) 2016-2019 Matias Fonzo, <selk@dragora.org>.
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. version=9-20190720
  17. # Prerequisites
  18. gmp_version=6.1.2
  19. mpfr_version=4.0.2
  20. mpc_version=1.1.0
  21. isl_version=0.21
  22. cd -- "$TMPDIR"
  23. rm -rf gcc-${version} gmp-${gmp_version} \
  24. mpfr-${mpfr_version} mpc-${mpc_version} isl-${isl_version}
  25. unpack "${worktree}/sources/gcc-${version}.tar.xz" \
  26. "${worktree}/sources/gmp-${gmp_version}.tar.lz" \
  27. "${worktree}/sources/mpfr-${mpfr_version}.tar.bz2" \
  28. "${worktree}/sources/mpc-${mpc_version}.tar.gz" \
  29. "${worktree}/sources/isl-${isl_version}.tar.bz2"
  30. # Build instructions
  31. cd gcc-${version}
  32. # Make symlinks for requisites
  33. ln -s ../gmp-${gmp_version} gmp
  34. ln -s ../mpfr-${mpfr_version} mpfr
  35. ln -s ../mpc-${mpc_version} mpc
  36. ln -s ../isl-${isl_version} isl
  37. # Apply patches for MPFR
  38. (
  39. cd mpfr || exit 1
  40. for file in "${worktree}"/patches/mpfr/*
  41. do
  42. if test -f "$file"
  43. then
  44. rm -f PATCHES
  45. patch -p1 < "$file"
  46. fi
  47. done
  48. )
  49. # Apply specific patches for the support in musl.
  50. # http://port70.net/~nsz/musl/gcc-9.1.0/
  51. patch -Np1 -i "${worktree}/patches/gcc/230-musl_libssp.patch"
  52. patch -Np1 -i "${worktree}/patches/gcc/0002-posix_memalign.patch"
  53. patch -Np1 -i "${worktree}/patches/gcc/0003-libatomic-test-fix.patch"
  54. patch -Np1 -i "${worktree}/patches/gcc/0004-libgomp-test-fix.patch"
  55. patch -Np1 -i "${worktree}/patches/gcc/0005-libitm-test-fix.patch"
  56. patch -Np1 -i "${worktree}/patches/gcc/0006-libvtv-test-fix.patch"
  57. patch -Np1 -i "${worktree}/patches/gcc/0007-j2.patch"
  58. patch -Np1 -i "${worktree}/patches/gcc/0008-s390x-muslldso.patch"
  59. patch -Np1 -i "${worktree}/patches/gcc/0009-microblaze-pr65649.patch"
  60. patch -Np1 -i "${worktree}/patches/gcc/0010-ldbl128-config.patch"
  61. patch -Np1 -i "${worktree}/patches/gcc/0011-m68k.patch"
  62. patch -Np1 -i "${worktree}/patches/gcc/0012-static-pie.patch"
  63. patch -Np1 -i "${worktree}/patches/gcc/0013-invalid-tls-model.patch"
  64. # Build in a separate directory
  65. rm -rf ../gcc-build
  66. mkdir ../gcc-build
  67. cd ../gcc-build
  68. option_list="
  69. --prefix="$crossdir" \
  70. --libdir="${crossdir}/lib${libSuffix}" \
  71. --build=$host \
  72. --host=$host \
  73. --target=$target \
  74. --enable-languages=c,c++ \
  75. --enable-clocale=generic \
  76. --enable-tls \
  77. --enable-libstdcxx-time \
  78. --enable-checking=release \
  79. --enable-fully-dynamic-string \
  80. --enable-libssp \
  81. --disable-symvers \
  82. --disable-gnu-indirect-function \
  83. --disable-libmudflap \
  84. --disable-libsanitizer \
  85. --disable-libmpx \
  86. --disable-nls \
  87. --disable-lto-plugin \
  88. --with-sysroot="${crossdir}/$target" \
  89. $multilib_options \
  90. $gcc_options
  91. "
  92. if test -n "$IS_DARKCRUSADE"
  93. then
  94. ../gcc-${version}/configure CC="$BTCC" CXX="$BTCXX" AR="ar" \
  95. CFLAGS="$BTCFLAGS" CXXFLAGS="$BTCXXFLAGS" LDFLAGS="$BTLDFLAGS" \
  96. $option_list
  97. else
  98. ../gcc-${version}/configure AR="ar" \
  99. CFLAGS="$BTCFLAGS" CXXFLAGS="$BTCXXFLAGS" LDFLAGS="$BTLDFLAGS" \
  100. $option_list
  101. fi
  102. unset option_list IS_DARKCRUSADE
  103. make -j${jobs} all \
  104. AS_FOR_TARGET="${target}-as" \
  105. LD_FOR_TARGET="${target}-ld"
  106. make -j${jobs} install
  107. # Inset again libssp_nonshared.a overwritten the recent library
  108. ${target}-gcc \
  109. -c "${worktree}/archive/gcc/__stack_chk_fail_local.c" \
  110. -o __stack_chk_fail_local.o
  111. ${target}-ar rc libssp_nonshared.a __stack_chk_fail_local.o
  112. ${target}-ranlib libssp_nonshared.a
  113. cp -f libssp_nonshared.a "${crossdir}/${target}/lib/"
  114. cd -- "$TMPDIR"
  115. cleanup()
  116. {
  117. rm -rf gcc-${version} gcc-build \
  118. gmp-${gmp_version} mpfr-${mpfr_version} \
  119. mpc-${mpc_version} isl-${isl_version}
  120. }