summaryrefslogtreecommitdiff
path: root/build-bootstrap.sh
diff options
context:
space:
mode:
authorAlexander Hill <ahill@breadpudding.dev>2025-04-20 16:20:16 -0400
committerAlexander Hill <ahill@breadpudding.dev>2025-04-20 16:20:16 -0400
commit7c11f8a1aa634e70e7be8999fd598a9583351d12 (patch)
tree048efef8cbd812f4063a94635b81f3c429fa77b0 /build-bootstrap.sh
parent1f29f6713380ce89239bf838c1e66e16a0a2252b (diff)
Moved CMake to the chrooted build
Diffstat (limited to 'build-bootstrap.sh')
-rwxr-xr-xbuild-bootstrap.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/build-bootstrap.sh b/build-bootstrap.sh
index 8deb454..d18a06e 100755
--- a/build-bootstrap.sh
+++ b/build-bootstrap.sh
@@ -280,23 +280,6 @@ make -j $THREAD
make -j $THREAD install DESTDIR=$MAPLE
cd ..
-# CMake Build
-tar xf ../sources/cmake-*.tar*
-cd cmake-*/
-# NOTE: Tests are disabled because they attempt to run on the system responsible
-# for the build, not the system being built. ~ahill
-cmake -B build -G Ninja \
- -DBUILD_TESTING=OFF \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_C_COMPILER=$CC \
- -DCMAKE_CXX_COMPILER=$CXX \
- -DCMAKE_INSTALL_PREFIX=$MAPLE/usr \
- -DCMAKE_SYSROOT=$MAPLE \
- -DCMAKE_USE_OPENSSL=OFF
-cmake --build build
-cmake --install build
-cd ..
-
# Gawk Build
tar xf ../sources/gawk-*.tar*
cd gawk-*/