gsrc-commit
[Top][All Lists]
Advanced

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

[Gsrc-commit] trunk r5123: update gcc to 8-20180121


From: Carl Hansen
Subject: [Gsrc-commit] trunk r5123: update gcc to 8-20180121
Date: Sun, 21 Jan 2018 22:52:03 -0500 (EST)
User-agent: Bazaar (2.7.0dev1)

------------------------------------------------------------
revno: 5123
revision-id: address@hidden
parent: address@hidden
committer: address@hidden
branch nick: trunk
timestamp: Sun 2018-01-21 19:51:58 -0800
message:
  update gcc to 8-20180121
modified:
  pkg/alpha/gcc/Makefile         makefile-20160617013554-2dgkgob7hbc1rnnp-16
  pkg/alpha/gcc/config.mk        config.mk-20170628194429-srkt1490zr0iclwh-1
  pkg/alpha/gcc/sha256sums       sha256sums-20160617013554-2dgkgob7hbc1rnnp-20
=== modified file 'pkg/alpha/gcc/Makefile'
--- a/pkg/alpha/gcc/Makefile    2018-01-14 23:51:36 +0000
+++ b/pkg/alpha/gcc/Makefile    2018-01-22 03:51:58 +0000
@@ -20,7 +20,7 @@
 
 NAME = The GNU Compiler Collection 
 GARNAME = gcc
-GARVERSION =  8-20180114
+GARVERSION =  8-20180121
 
 HOME_URL = http://www.gnu.org/software/gcc
 DESCRIPTION = GNU Compiler Collection alpha version
@@ -65,16 +65,72 @@
 
 ######################################################################
 
+## 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-mpfr=$(prefix) \
-                --with-gmp=$(prefix) \
-                --with-mpc=$(prefix) \
-         --with-target-bdw-gc=$(prefix) 
-
-
-#               --with-system-zlib
+--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.
 
 
 CPPFLAGS += -I/usr/include/x86_64-linux-gnu -I$(prefix)/include -isystem 
/usr/include/x86_64-linux-gnu
@@ -90,8 +146,6 @@
 post-build: build
        make -C $(WORKOBJ)/ all
 
-
-
 install-links:
        @ln -sf gcc $(packageprefix)/bin/cc
        @ln -sf ../bin/cpp $(packageprefix)/lib/cpp
@@ -101,5 +155,4 @@
        cd $(WORKOBJ); $(MAKE) -k check 
        $(MAKECOOKIE)
 
-# send to gcc.gnu.org....
 

=== modified file 'pkg/alpha/gcc/config.mk'
--- a/pkg/alpha/gcc/config.mk   2017-10-09 02:33:15 +0000
+++ b/pkg/alpha/gcc/config.mk   2018-01-22 03:51:58 +0000
@@ -1,71 +1,8 @@
-## 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.
-
-
-
-CONFIGURE_OPTS ?= \
---enable-bootstrap \
---enable-checking=release \
---enable-clocale=gnu \
---enable-cloog-backend=isl \
---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.
-
-
+
+
+CONFIGURE_OPTS ?= 
 
 BUILD_OPTS ?=  -Wall -Wextra 
 #BUILD_OPTS ?= 
 
 
-
-
-

=== modified file 'pkg/alpha/gcc/sha256sums'
--- a/pkg/alpha/gcc/sha256sums  2018-01-14 23:51:36 +0000
+++ b/pkg/alpha/gcc/sha256sums  2018-01-22 03:51:58 +0000
@@ -1,1 +1,1 @@
-bdea78b3d330552bf298b6507e05c21838e22c1905578933fd89cb7afdcb3c84  
download/gcc-8-20180114.tar.xz
+634adfedb0439f2071c23147144909bab42eb66a9dd8dfd0ac9549e0802d10a0  
download/gcc-8-20180121.tar.xz


reply via email to

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