gsrc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gsrc-commit] trunk r5469: update gcc to 9-20180429


From: Carl Hansen
Subject: [Gsrc-commit] trunk r5469: update gcc to 9-20180429
Date: Mon, 30 Apr 2018 01:14:42 -0400 (EDT)
User-agent: Bazaar (2.7.0dev1)

------------------------------------------------------------
revno: 5469
revision-id: address@hidden
parent: address@hidden
committer: address@hidden
branch nick: trunk
timestamp: Sun 2018-04-29 22:14:38 -0700
message:
  update gcc to 9-20180429
added:
  pkg/gnualpha/gcc9/             gcc9-20180430051416-apjm8gmvy08pz1zi-1
  pkg/gnualpha/gcc9/Makefile     makefile-20180430051416-apjm8gmvy08pz1zi-3
  pkg/gnualpha/gcc9/config.mk    config.mk-20180430051416-apjm8gmvy08pz1zi-2
  pkg/gnualpha/gcc9/sha256sums   sha256sums-20180430051416-apjm8gmvy08pz1zi-4
=== added directory 'pkg/gnualpha/gcc9'
=== added file 'pkg/gnualpha/gcc9/Makefile'
--- a/pkg/gnualpha/gcc9/Makefile        1970-01-01 00:00:00 +0000
+++ b/pkg/gnualpha/gcc9/Makefile        2018-04-30 05:14:38 +0000
@@ -0,0 +1,158 @@
+# Copyright ©2017, 2018 Carl Hansen <address@hidden>
+#
+# This file is part of GSRC.
+#
+# GSRC is free software: you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# GSRC is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
+# License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GSRC.  If not, see <http://www.gnu.org/licenses/>.
+#
+#
+# Send bug reports and comments about GSRC problems to address@hidden
+
+NAME = The GNU Compiler Collection 
+GARNAME = gcc
+GARVERSION =  9-20180429
+
+HOME_URL = http://www.gnu.org/software/gcc
+DESCRIPTION = GNU Compiler Collection alpha version
+define BLURB
+GCC is the GNU Compiler Collection.  It provides compiler front-ends
+for several languages, including C, C++, Objective-C, Fortran, Java,
+Ada, and Go.  It also includes runtime support libraries for these
+languages.
+endef
+
+# if downloading not working, look here:
+# ftp://gcc.gnu.org/pub/gcc/snapshots/
+
+
+######################################################################
+#ftp://gcc.gnu.org/pub/gcc/snapshots/9-20180429/gcc-9-20180429.tar.xz
+MASTER_SITES = ftp://gcc.gnu.org/
+MASTER_SUBDIR = pub/gcc/snapshots/$(GARVERSION)/
+#MASTER_SITES = $(MASTER_GNU)
+#MASTER_SUBDIR = $(GARNAME)/$(DISTNAME)/
+DISTFILES = $(DISTNAME).tar.xz sha512.sum
+SIGFILES =
+
+#$(DISTNAME).tar.bz2.sig
+
+WORKOBJ = $(WORKDIR)/$(GARNAME)-$(GARVERSION).build
+INSTALL_SCRIPTS = $(WORKOBJ)/Makefile links
+INFO_FILES = cpp.info cppinternals.info cp-tools.info \
+    gccgo.info gccgo.info      gcc.info gccinstall.info gccint.info \
+    gfc-internals.info gfortran.info gfortran.info     gnat_rm.info \
+    gnat-style.info gnat_ugn.info gnat_ugn.info        libffi.info 
libgomp.info \
+    libitm.info libquadmath.info
+
+# cp-tools.info ?
+
+
+
+BUILDDEPS = gmp mpfr mpc zlib
+LIBDEPS = 
+#USE_AUTORECONF=y
+
+######################################################################
+
+## Configuration options for gcc ##
+
+## Note: you must set up your environment (PATH, LDPATH, etc) to
+## include GSRC-installed packages in order to install gcc as
+## configured below. You can do this easily like so in Bash:
+## $ source $(your_gsrc_dir) setup.sh
+
+## adjust --enable-languages=   to your liking; this is maximal.
+## gnat (ada) is a special case;  requires a working ada compiler to
+## already be installed, the compiler you are using to compile the rest.
+
+# --enable-languages=c,c++,fortran,go,jit,lto,objc,obj-c++,ada 
+
+# jit requires --enable-host-shared
+# --enable-host-shared typically slows the rest of the compiler down by
+# a few %, so you must explicitly enable it.
+
+# If you want to build both the jit and the regular compiler, it is often
+# best to do this via two separate configure/builds, in separate
+# directories, to avoid imposing the performance cost of
+# --enable-host-shared on the regular compiler.
+
+
+#--enable-cloog-backend=isl \
+
+CONFIGURE_ARGS += \
+--with-local-prefix=$(prefix) \
+--with-gmp=$(prefix) \
+--with-mpfr=$(prefix) \
+--with-mpc=$(prefix) \
+--with-target-bdw-gc=$(prefix) \
+--enable-bootstrap \
+--enable-checking=release \
+--enable-clocale=gnu \
+--enable-__cxa_atexit \
+--enable-default-pie \
+--enable-gnu-unique-object \
+--enable-gtk-cairo \
+--enable-languages=c,c++,fortran,go,lto,objc,obj-c++,ada,brig \
+--enable-libada \
+--enable-libmpx \
+--enable-libssp \
+--enable-libstdcxx-debug \
+--enable-libstdcxx-time=yes \
+--enable-linker-build-id \
+--enable-lto \
+--enable-multiarch \
+--enable-multilib  \
+--enable-nls \
+--enable-objc-gc=auto \
+--enable-plugin \
+--enable-shared \
+--enable-threads=posix \
+--with-abi=m64 \
+--with-default-libstdcxx-abi=new \
+--with-multilib-list=m32,m64,mx32 \
+--with-system-zlib \
+--with-target-system-zlib \
+--with-tune=generic \
+--build=x86_64-linux-gnu \
+--host=x86_64-linux-gnu \
+--target=x86_64-linux-gnu
+
+
+# enable-bootstrap might not be necessary, but it solves some problems
+# of building when not using recent gcc to build.
+
+
+LDFLAGS += -L/usr/lib/x86_64-linux-gnu
+CPPFLAGS += -I/usr/include/x86_64-linux-gnu -I$(prefix)/include -isystem 
/usr/include/x86_64-linux-gnu
+CFLAGS   += -I/usr/include/x86_64-linux-gnu -I$(prefix)/include -isystem 
/usr/include/x86_64-linux-gnu
+
+
+include ../../../gar/gar.lib/auto.mk
+include ../../../gar/gar.lib/info.mk
+
+include config.mk
+
+
+post-build: build
+       make -C $(WORKOBJ)/ all
+
+install-links:
+       @ln -sf gcc $(packageprefix)/bin/cc
+       @ln -sf ../bin/cpp $(packageprefix)/lib/cpp
+       $(MAKECOOKIE)
+
+checkall:
+       cd $(WORKOBJ); $(MAKE) -k check 
+       $(MAKECOOKIE)
+
+

=== added file 'pkg/gnualpha/gcc9/config.mk'
--- a/pkg/gnualpha/gcc9/config.mk       1970-01-01 00:00:00 +0000
+++ b/pkg/gnualpha/gcc9/config.mk       2018-04-30 05:14:38 +0000
@@ -0,0 +1,8 @@
+
+
+CONFIGURE_OPTS ?= --program-suffix=-9
+
+BUILD_OPTS ?=  -Wall -Wextra 
+#BUILD_OPTS ?= 
+
+

=== added file 'pkg/gnualpha/gcc9/sha256sums'
--- a/pkg/gnualpha/gcc9/sha256sums      1970-01-01 00:00:00 +0000
+++ b/pkg/gnualpha/gcc9/sha256sums      2018-04-30 05:14:38 +0000
@@ -0,0 +1,2 @@
+86a0ce4f11fe43c9d591b0b503c1c82db6dfc597575366844b204efc702670fe  
download/gcc-9-20180429.tar.xz
+31f8b9246853998fffaef01532cb986d95e9d779d940105747d13a08ec5fc956  
download/sha512.sum


reply via email to

[Prev in Thread] Current Thread [Next in Thread]