03-gcc-static 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. # Build script for gcc.
  2. #
  3. # Copyright (c) 2016-2018 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=8-20181123
  17. # Prerequisites
  18. gmp_version=6.1.2
  19. mpfr_version=4.0.1
  20. mpc_version=1.1.0
  21. isl_version=0.20
  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-8.2.0
  51. patch -Np1 -i "${worktree}/patches/gcc/0001-ssp_nonshared.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. # Build in a separate directory
  64. rm -rf ../gcc-build
  65. mkdir ../gcc-build
  66. cd ../gcc-build
  67. ../gcc-${version}/configure \
  68. AR="ar" CC="$BTCC" CXX="$BTCXX" \
  69. CFLAGS="$BTCFLAGS" CXXFLAGS="$BTCXXFLAGS" LDFLAGS="$BTLDFLAGS" \
  70. --prefix="$crossdir" \
  71. --libdir="${crossdir}/lib${libSuffix}" \
  72. --build=$host \
  73. --host=$host \
  74. --target=$target \
  75. --enable-languages=c \
  76. --enable-clocale=generic \
  77. --disable-shared \
  78. --disable-threads \
  79. --disable-decimal-float \
  80. --disable-libgomp \
  81. --disable-libssp \
  82. --disable-libatomic \
  83. --disable-libitm \
  84. --disable-libquadmath \
  85. --disable-libvtv \
  86. --disable-libcilkrts \
  87. --disable-libstdcxx \
  88. --disable-gnu-indirect-function \
  89. --disable-libmudflap \
  90. --disable-libsanitizer \
  91. --disable-libmpx \
  92. --disable-nls \
  93. --with-sysroot="${crossdir}/$target" \
  94. --with-newlib \
  95. --without-headers \
  96. --without-ppl \
  97. --without-cloog \
  98. $multilib_options \
  99. $gcc_options
  100. make -j${jobs} all-gcc all-target-libgcc
  101. make -j${jobs} install-gcc install-target-libgcc
  102. cleanup()
  103. {
  104. cd -- "$TMPDIR" && rm -rf gcc-${version} \
  105. gmp-${gmp_version} mpfr-${mpfr_version} \
  106. mpc-${mpc_version} isl-${isl_version}
  107. }