musl-cross: remove old patch artifact of the musl-cross era (#849)

* musl-cross: remove old patch artifact of the musl-cross era

* CircleCI: do not produce hash digest for musl-cross-make patches (artifact was for musl-cross, not musl-cross-make)
This commit is contained in:
tlaurion 2020-10-16 15:26:59 -04:00 committed by GitHub
parent 92e9a24902
commit b80899f36c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 39 deletions

View File

@ -24,7 +24,7 @@ jobs:
- run:
name: Creating musl-cross-make and musl-cross-make patches digest
command: |
find ./patches/musl-cross-* modules/musl-cross* -type f | sort -h | xargs sha256sum > /tmp/musl-cross_module_and_patches.sha256sums \
find modules/musl-cross* -type f | sort -h | xargs sha256sum > /tmp/musl-cross_module_and_patches.sha256sums \
- restore_cache:

View File

@ -1,38 +0,0 @@
diff --git a/config.sh b/config.sh
index ec3c1ce..844fb3d 100644
--- a/config.sh
+++ b/config.sh
@@ -1,13 +1,15 @@
# ARCH will be auto-detected as the host if not specified
#ARCH=i486
-#ARCH=x86_64
+ARCH=x86_64
#ARCH=powerpc
#ARCH=arm
#ARCH=microblaze
#ARCH=mips
#ARCH=mipsel
-CC_BASE_PREFIX=/opt/cross
+if [ -z "$CC_BASE_PREFIX" ]; then
+ CC_BASE_PREFIX=$HOME/heads/install
+fi
# If you use arm, you may need more fine-tuning:
# arm hardfloat v7
@@ -20,11 +22,14 @@ CC_BASE_PREFIX=/opt/cross
#GCC_BOOTSTRAP_CONFFLAGS="--with-arch=armv7-a --with-float=softfp"
#GCC_CONFFLAGS="--with-arch=armv7-a --with-float=softfp"
-MAKEFLAGS=-j8
+MAKEFLAGS=-j`nproc`
# Enable this to build the bootstrap gcc (thrown away) without optimization, to reduce build time
GCC_STAGE1_NOOPT=1
+# Build GMP, MPFR and MPC
+GCC_BUILTIN_PREREQS=yes
+
# uncomment these to get smaller/stripped binaries
#export CFLAGS="-Os -g0 -s"
#export CXXFLAGS="-Os -g0"