03-gcc-static 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. # Build script for gcc.
  2. #
  3. # Copyright (c) 2016-2020 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.3.0
  17. # Prerequisites
  18. gmp_version=6.2.0
  19. mpfr_version=4.0.2
  20. mpc_version=1.1.0
  21. isl_version=0.22.1
  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. # Update detection for hosts based on musl
  50. cp -f "${worktree}/archive/common/config.guess" gmp/configfsf.guess
  51. cp -f "${worktree}/archive/common/config.sub" gmp/config.sub
  52. for directory in mpfr mpc isl
  53. do
  54. cp -f "${worktree}/archive/common/config.guess" ${directory}/config.guess
  55. cp -f "${worktree}/archive/common/config.sub" ${directory}/config.sub
  56. done
  57. unset directory
  58. # Apply specific patches for the support in musl.
  59. # http://port70.net/~nsz/musl/gcc-9.1.0/
  60. patch -Np1 -i "${worktree}/patches/gcc/230-musl_libssp.patch"
  61. patch -Np1 -i "${worktree}/patches/gcc/0002-posix_memalign.patch"
  62. patch -Np1 -i "${worktree}/patches/gcc/0003-libatomic-test-fix.patch"
  63. patch -Np1 -i "${worktree}/patches/gcc/0004-libgomp-test-fix.patch"
  64. patch -Np1 -i "${worktree}/patches/gcc/0005-libitm-test-fix.patch"
  65. patch -Np1 -i "${worktree}/patches/gcc/0006-libvtv-test-fix.patch"
  66. patch -Np1 -i "${worktree}/patches/gcc/0007-j2.patch"
  67. patch -Np1 -i "${worktree}/patches/gcc/0008-s390x-muslldso.patch"
  68. patch -Np1 -i "${worktree}/patches/gcc/0009-microblaze-pr65649.patch"
  69. patch -Np1 -i "${worktree}/patches/gcc/0010-ldbl128-config.patch"
  70. patch -Np1 -i "${worktree}/patches/gcc/0011-m68k.patch"
  71. patch -Np1 -i "${worktree}/patches/gcc/0012-static-pie.patch"
  72. patch -Np1 -i "${worktree}/patches/gcc/0013-invalid-tls-model.patch"
  73. # Build in a separate directory
  74. rm -rf ../gcc-build
  75. mkdir ../gcc-build
  76. cd ../gcc-build
  77. ../gcc-${version}/configure \
  78. AR="ar" CC="$BTCC" CXX="$BTCXX" \
  79. CFLAGS="$BTCFLAGS" CXXFLAGS="$BTCXXFLAGS" LDFLAGS="$BTLDFLAGS" \
  80. --prefix="$crossdir" \
  81. --libdir="${crossdir}/lib${libSuffix}" \
  82. --build=$host \
  83. --host=$host \
  84. --target=$target \
  85. --enable-languages=c \
  86. --enable-clocale=generic \
  87. --disable-shared \
  88. --disable-threads \
  89. --disable-decimal-float \
  90. --disable-libgomp \
  91. --disable-libssp \
  92. --disable-libatomic \
  93. --disable-libitm \
  94. --disable-libquadmath \
  95. --disable-libvtv \
  96. --disable-libcilkrts \
  97. --disable-libstdcxx \
  98. --disable-gnu-indirect-function \
  99. --disable-libmudflap \
  100. --disable-libsanitizer \
  101. --disable-libmpx \
  102. --disable-nls \
  103. --with-sysroot="${crossdir}/$target" \
  104. --with-newlib \
  105. --without-headers \
  106. --without-ppl \
  107. --without-cloog \
  108. $multilib_options \
  109. $gcc_options
  110. make -j${jobs} all-gcc all-target-libgcc
  111. make -j${jobs} install-gcc install-target-libgcc
  112. cd ..
  113. cleanup()
  114. {
  115. cd -- "$TMPDIR" && rm -rf gcc-${version} gcc-build \
  116. gmp-${gmp_version} mpfr-${mpfr_version} \
  117. mpc-${mpc_version} isl-${isl_version}
  118. }