Commit c0e6964a authored by lovedheart's avatar lovedheart Committed by Ed Reel

[gcc7] minor change, add gcc4-compatible option (#2232)

* [gcc7] minor change, add gcc4-compatible option

* Update gcc7.rb

* Update gcc7.rb

Fix installation process

* Update gcc7.rb
parent df9eb0fa
......@@ -3,28 +3,34 @@ require 'package'
class Gcc7 < Package
description 'The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Ada, and Go.'
homepage 'https://www.gnu.org/software/gcc/'
version '7.3.0'
version '7.3.0-0'
source_url 'https://github.com/gcc-mirror/gcc/archive/gcc-7_3_0-release.tar.gz'
source_sha256 'af11c397296cab69996723b9d828c98a9bb749447ac8f7ed67458bcdb60311ed'
binary_url ({
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/gcc7-7.3.0-chromeos-armv7l.tar.xz',
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/gcc7-7.3.0-chromeos-armv7l.tar.xz',
i686: 'https://dl.bintray.com/chromebrew/chromebrew/gcc7-7.3.0-chromeos-i686.tar.xz',
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/gcc7-7.3.0-chromeos-x86_64.tar.xz',
aarch64: 'https://dl.bintray.com/chromebrew/chromebrew/gcc7-7.3.0-0-chromeos-armv7l.tar.xz',
armv7l: 'https://dl.bintray.com/chromebrew/chromebrew/gcc7-7.3.0-0-chromeos-armv7l.tar.xz',
i686: 'https://dl.bintray.com/chromebrew/chromebrew/gcc7-7.3.0-0-chromeos-i686.tar.xz',
x86_64: 'https://dl.bintray.com/chromebrew/chromebrew/gcc7-7.3.0-0-chromeos-x86_64.tar.xz',
})
binary_sha256 ({
aarch64: '9f7af4ee52a48df0b2a88be4a38331831666a430a82c01eab05bfa7d6851b46d',
armv7l: '9f7af4ee52a48df0b2a88be4a38331831666a430a82c01eab05bfa7d6851b46d',
i686: '40972578f1f38a3366233314da5b9d219d172d7fdc0a62a5b324161fa076e188',
x86_64: '075de22aabb8b9ea9e1acb515b360284934ffcd50fa5aa45e0cef15e56094c9f',
aarch64: '6cf87fdec09dcfe030d3c6a9fbd5d7cb838d18d01c1213304e5c2d6180be5e89',
armv7l: '6cf87fdec09dcfe030d3c6a9fbd5d7cb838d18d01c1213304e5c2d6180be5e89',
i686: 'bf8eb6cb5ac5491b53de52adc3c24f2904283b39fb64253d3e14b98731f847fa',
x86_64: '8903d899d22e02ecb018393fe4242923dc4adc7d505e6bd731a0cb1c75e4e642',
})
depends_on 'unzip' => :build
depends_on 'gawk'
depends_on 'gawk' => :build
depends_on 'dejagnu' => :build # for test
depends_on 'gcc' => :build # gcc version 4.9.4
depends_on 'icu4c' => :build # icu version 60.1
def self.build
ENV["LIBRARY_PATH"] = "#{CREW_LIB_PREFIX}"
# previous compile issue
# /usr/local/bin/ld: cannot find crti.o: No such file or directory
# /usr/local/bin/ld: cannot find /usr/lib64/libc_nonshared.a
ENV["LIBRARY_PATH"] = "#{CREW_LIB_PREFIX}" # fix x86_64 issues
system "mkdir -p objdir"
Dir.chdir("objdir") do
case ARCH
......@@ -39,14 +45,16 @@ class Gcc7 < Package
"--enable-languages=c,c++,fortran",
"--disable-multilib",
"--enable-threads=posix",
"--disable-bootstrap",
"--enable-bootstrap",
"--disable-werror",
"--disable-libmpx",
"--disable-static",
"--program-suffix=-7.3",
"--with-arch=armv7-a",
"--with-tune=cortex-a15",
"--with-fpu=neon",
"--with-float=hard"
"--with-float=hard",
"--with-default-libstdcxx-abi=gcc4-compatible"
when "x86_64"
system "../configure",
"--prefix=#{CREW_PREFIX}",
......@@ -58,11 +66,13 @@ class Gcc7 < Package
"--enable-languages=c,c++,fortran",
"--disable-multilib",
"--enable-threads=posix",
"--disable-bootstrap",
"--enable-bootstrap",
"--disable-werror",
"--disable-libmpx",
"--disable-static",
"--program-suffix=-7.3",
"--with-arch-64=x86-64"
"--with-arch-64=x86-64",
"--with-default-libstdcxx-abi=gcc4-compatible"
when "i686"
system "../configure",
"--prefix=#{CREW_PREFIX}",
......@@ -74,20 +84,49 @@ class Gcc7 < Package
"--enable-languages=c,c++,fortran",
"--disable-multilib",
"--enable-threads=posix",
"--disable-bootstrap",
"--enable-bootstrap",
"--disable-werror",
"--disable-libmpx",
"--disable-static",
"--program-suffix=-7.3",
"--with-arch-32=i686"
"--with-arch-32=i686",
"--with-default-libstdcxx-abi=gcc4-compatible"
end
# Comment: --with-default-libstdcxx-abi=gcc-compatible
# Use this switch if we are upgrading from GCC version prior to 5.1.0
# We do not want to recompile all the libraries written in C++
system "make"
end
end
# preserve for check, skip check for current version
def self.check
Dir.chdir("objdir") do
#system "ulimit -s 32768"
#system "make -k check -j8"
#system "../contrib/test_summary > ~/Downloads/gcc_test_summary.txt"
end
end
def self.install
Dir.chdir("objdir") do
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
# http://www.linuxfromscratch.org/lfs/view/development/chapter06/gcc.html#contents-gcc
# move a misplaced file
# The installation stage puts some files used by gdb under the /usr/local/lib(64) directory. This generates spurious error messages when performing ldconfig. This command moves the files to another location.
system "mkdir -pv #{CREW_DEST_PREFIX}/share/gdb/auto-load/usr/lib"
system "mv -v #{CREW_DEST_LIB_PREFIX}/*gdb.py #{CREW_DEST_PREFIX}/share/gdb/auto-load/usr/lib"
# Install Binary File Descriptor library (BFD)
system "install -v -dm755 #{CREW_DEST_LIB_PREFIX}/bfd-plugins"
# Add a compatibility symlink to enable building programs with Link Time Optimization (LTO)
system "ln -sfv #{CREW_DEST_PREFIX}/libexec/gcc/$(gcc -dumpmachine)/7.3.0/liblto_plugin.so #{CREW_DEST_LIB_PREFIX}/bfd-plugins/"
system "ln -sv gcc-7.3 #{CREW_DEST_PREFIX}/bin/gcc"
system "ln -sv gcc-7.3 #{CREW_DEST_PREFIX}/bin/cc"
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment