summaryrefslogtreecommitdiffstats
path: root/development/gcc-d
diff options
context:
space:
mode:
author Eugen Wissner2018-09-13 07:20:31 +0200
committer David Spencer2018-09-15 20:17:30 +0200
commit9ca9b96fdd694028ea193a1b2de3089922ef1882 (patch)
tree743126504bc5be4eb56ac4ec145c2c55dbdb0e4f /development/gcc-d
parentf4519f4f9a5fe9cb43d7d4685932184db001d057 (diff)
downloadslackbuilds-9ca9b96fdd694028ea193a1b2de3089922ef1882.tar.gz
development/gcc-d: Updated for version 2.081.2
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/gcc-d')
-rw-r--r--development/gcc-d/README19
-rw-r--r--development/gcc-d/gcc-d.SlackBuild122
-rw-r--r--development/gcc-d/gcc-d.info14
-rw-r--r--development/gcc-d/slack-desc4
4 files changed, 106 insertions, 53 deletions
diff --git a/development/gcc-d/README b/development/gcc-d/README
index d21fea30a9..0d3985f0fd 100644
--- a/development/gcc-d/README
+++ b/development/gcc-d/README
@@ -1,15 +1,12 @@
This is GDC (GNU D Compiler), the D frontend for GCC.
-D is a general-purpose programming language with static typing,
-systems-level access, and C-like syntax. It combines efficiency,
-control and modeling power with safety and programmer productivity.
+D is a general-purpose programming language with static typing, systems-level
+access, and C-like syntax. With the D Programming Language, write fast, read
+fast, and run fast.
-This package is for GCC 5.3.0 shipped with Slackware. It doesn't
-replace any of GCC stock files, so it should be safe to uninstall it.
-If it breaks your GCC installation nevertheless, please let me know.
+This package provides GCC 8 with C, C++ and D. It doesn't conflict with GCC 5
+shipped by Slackware.
-GDC version provided by this package is the latest from the official
-"gdc-5" branch. Please note that GDC doesn't support all the latest
-features supported by the corresponding DMD version.
-
-GDC doesn't conflict with DMD, they can be installed and used together.
+Since GCC is built several times to bootstrap the D frontend written in D with
+an older C++-version, be sure you have about 9 GB of disk space in your
+temporary directory.
diff --git a/development/gcc-d/gcc-d.SlackBuild b/development/gcc-d/gcc-d.SlackBuild
index 65bf1868b3..3bfad9d03f 100644
--- a/development/gcc-d/gcc-d.SlackBuild
+++ b/development/gcc-d/gcc-d.SlackBuild
@@ -26,9 +26,10 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=gcc-d
-SRCNAM=gdc
-VERSION=${VERSION:-2.076.0_b5}
-GCC_VERSION=5.5.0
+VERSION=${VERSION:-2.081.2}
+GCC_VERSION=8.2.0
+HOST_GDC=2.076.0
+HOST_GCC=7.3.0
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -73,19 +74,68 @@ case "$ARCH" in
*) TARGET=$ARCH-slackware-linux ;;
esac
-# Create directories.
+if [ "$ARCH" != "x86_64" ]; then
+ GCC_ARCHOPTS="--with-arch=$ARCH"
+else
+ GCC_ARCHOPTS="--disable-multilib"
+fi
+MAJOR=$( echo $GCC_VERSION | cut -d. -f1 )
+
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
+
+# Build bootstrap compiler
+cd $TMP
+rm -rf gdc-$HOST_GDC gcc-$HOST_GCC $TMP/bootstrap-gcc-d
+tar xvf $CWD/gcc-$HOST_GCC.tar.?z*
+tar xvf $CWD/gdc-$HOST_GDC.tar.?z*
+
+# Apply patches.
+cd $TMP/gcc-$HOST_GCC/gcc
+
+cd $TMP/gdc-$HOST_GDC
+sh setup-gcc.sh ../gcc-$HOST_GCC
+
+cd $TMP/gcc-$HOST_GCC
+
+CFLAGS="$SLKCFLAGS" \
+CXXFLAGS="$SLKCFLAGS" \
+../gcc-$HOST_GCC/configure \
+ --prefix=$TMP/bootstrap-$PRGNAM \
+ --enable-shared \
+ --disable-bootstrap \
+ --enable-languages=c,c++,d \
+ --enable-threads=posix \
+ --enable-checking=release \
+ --with-system-zlib \
+ --enable-libstdcxx-dual-abi \
+ --disable-libunwind-exceptions \
+ --enable-__cxa_atexit \
+ --enable-libssp \
+ --enable-lto \
+ --disable-install-libiberty \
+ --with-gnu-ld \
+ --verbose \
+ --with-arch-directory=$LIB_ARCH \
+ $GCC_ARCHOPTS \
+ --target=${TARGET} \
+ --build=${TARGET} \
+ --host=${TARGET}
+
+make
+make install
+
+# Build D compiler
cd $TMP
-rm -rf $SRCNAM-$VERSION gcc-$GCC_VERSION
+rm -rf gdc-$VERSION gcc-$GCC_VERSION
tar xvf $CWD/gcc-$GCC_VERSION.tar.?z*
-tar xvf $CWD/$SRCNAM-$VERSION.tar.?z*
+tar xvf $CWD/gdc-$VERSION.tar.?z*
# Apply patches.
cd $TMP/gcc-$GCC_VERSION/gcc
-cd $TMP/$SRCNAM-$VERSION
+cd $TMP/gdc-$VERSION
sh setup-gcc.sh ../gcc-$GCC_VERSION
cd $TMP/gcc-$GCC_VERSION
@@ -96,26 +146,23 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
-if [ "$ARCH" != "x86_64" ]; then
- GCC_ARCHOPTS="--with-arch=$ARCH"
-else
- GCC_ARCHOPTS="--disable-multilib"
-fi
-
+CC="$TMP/bootstrap-$PRGNAM/bin/gcc" \
+CXX="$TMP/bootstrap-$PRGNAM/bin/g++" \
+CPP="$TMP/bootstrap-$PRGNAM/bin/cpp" \
+GDC="$TMP/bootstrap-$PRGNAM/bin/gdc" \
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
../gcc-$GCC_VERSION/configure \
- --prefix=/usr \
- --libdir=/usr/lib$LIBDIRSUFFIX \
+ --prefix=/opt/gdc \
+ --libdir=/opt/gdc/lib$LIBDIRSUFFIX \
--mandir=/usr/man \
--infodir=/usr/info \
--enable-shared \
- --disable-bootstrap \
+ --enable-bootstrap \
--enable-languages=c,c++,d \
--enable-threads=posix \
--enable-checking=release \
--with-system-zlib \
- --with-python-dir=/lib$LIBDIRSUFFIX/python2.7/site-packages \
--enable-libstdcxx-dual-abi \
--disable-libunwind-exceptions \
--enable-__cxa_atexit \
@@ -125,6 +172,8 @@ CXXFLAGS="$SLKCFLAGS" \
--with-gnu-ld \
--verbose \
--with-arch-directory=$LIB_ARCH \
+ --program-suffix="-$MAJOR" \
+ --with-pkgversion="GDC $VERSION" \
$GCC_ARCHOPTS \
--target=${TARGET} \
--build=${TARGET} \
@@ -134,40 +183,43 @@ make
make install DESTDIR=$PKG
# Remove not D related stuff, already available in GCC
-find $PKG/usr/bin -type f -not -name "*gdc*" -delete
find $PKG/usr/info -type f -not -name "*gdc*" -delete
-find $PKG/usr/man/man1 -type f -not -name "*gdc*" -delete
rm -r $PKG/usr/man/man7
-rm -r $PKG/usr/share
-rm -r $PKG/usr/include
-rm -r $PKG/usr/lib$LIBDIRSUFFIX/python2.7
+#rm -r $PKG/usr/share
+#rm -r $PKG/usr/include
-find $PKG/usr/libexec/gcc \
- \( -type f -or -type l \) -not -name "cc1d" \
- -delete
+#find $PKG/usr/libexec/gcc \
+# \( -type f -or -type l \) -not -name "cc1d" \
+# -delete
-find $PKG/usr/lib$LIBDIRSUFFIX/gcc -mindepth 3 \
- \( -type f -or -type l \) -not -regex ".*/d/.*" \
- -delete
+#find $PKG/usr/lib$LIBDIRSUFFIX/gcc -mindepth 3 \
+# \( -type f -or -type l \) -not -regex ".*/d/.*" \
+# -delete
-find $PKG/usr/lib$LIBDIRSUFFIX -maxdepth 1 \
- \( -type f -or -type l \) \
- -not \( -name "*phobos*" -or -name "*gdruntime*" \) \
- -delete
-
-find $PKG/usr -type d -empty -delete
+#find $PKG/usr/lib$LIBDIRSUFFIX -maxdepth 1 \
+# \( -type f -or -type l \) \
+# -not \( -name "*phobos*" -or -name "*gdruntime*" \) \
+# -delete
+#find $PKG/usr -type d -empty -delete
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
+mkdir -p $PKG/usr/bin
+for bin in $PKG/opt/gdc/bin/g* $PKG/opt/gdc/bin/c*; do
+ binary=$( basename $bin )
+ ln -s /opt/gdc/bin/$binary $PKG/usr/bin/$binary
+done
+ln -s gdc-$MAJOR $PKG/usr/bin/gdc
+
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
gzip -9 $PKG/usr/info/*.info
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp $TMP/$SRCNAM-$VERSION/README.md $PKG/usr/doc/$PRGNAM-$VERSION
+cp $TMP/gdc-$VERSION/README.md $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
diff --git a/development/gcc-d/gcc-d.info b/development/gcc-d/gcc-d.info
index f1f67aed39..5d6a472f35 100644
--- a/development/gcc-d/gcc-d.info
+++ b/development/gcc-d/gcc-d.info
@@ -1,10 +1,14 @@
PRGNAM="gcc-d"
-VERSION="2.076.0_b5"
+VERSION="2.081.2"
HOMEPAGE="https://www.gdcproject.org/"
-DOWNLOAD="https://download.dlackware.com/slackware/slackware64-14.2/patches/source/gcc/gcc-5.5.0.tar.xz \
- https://download.dlackware.com/hosted-sources/gcc-d/gdc-2.076.0_b5.tar.xz"
-MD5SUM="0f70424213b4a1113c04ba66ddda0c1f \
- f55c3a5ec11ee09b4a2f4f81f65fbf61"
+DOWNLOAD="https://download.dlackware.com/hosted-sources/gcc-d/gdc-2.076.0.tar.xz \
+ https://download.dlackware.com/hosted-sources/gcc-d/gdc-2.081.2.tar.xz \
+ https://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/gcc-7.3.0/gcc-7.3.0.tar.xz
+ https://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/gcc-8.2.0/gcc-8.2.0.tar.xz"
+MD5SUM="7cfaa5b332372c6cc91284bb63609f87 \
+ a0a1093b7a5774eb2a63313f3c0b6c28 \
+ be2da21680f27624f3a87055c4ba5af2 \
+ 4ab282f414676496483b3e1793d07862"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
diff --git a/development/gcc-d/slack-desc b/development/gcc-d/slack-desc
index 2e5cfd4f58..f76a2186ea 100644
--- a/development/gcc-d/slack-desc
+++ b/development/gcc-d/slack-desc
@@ -11,8 +11,8 @@ gcc-d:
gcc-d: GCC is the GNU Compiler Collection.
gcc-d:
gcc-d: D is a general-purpose programming language with static typing,
-gcc-d: systems-level access, and C-like syntax. It combines efficiency,
-gcc-d: control and modeling power with safety and programmer productivity.
+gcc-d: systems-level access, and C-like syntax. With the D Programming
+gcc-d: Language, write fast, read fast, and run fast.
gcc-d:
gcc-d: Homepage: https://www.gdcproject.org
gcc-d: