forked from mighty-gerbils/gerbil
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Welcome to the Future, Part II (mighty-gerbils#777)
* gambit submodule * kill old configuration/installation artifacts * kill build directories * build with integrated gambit * remove destdir check in build.sh it goes into install, where it belongs * configure, make, make install what the user expects * gitignore build-env.sh * update CI worflows * kill legacy script * fix handling of gambit tags * fix CI, more * don't trigger autoconf * make clean: first clean build artifacts and then clean gambit * don't --enable-openssl by default it causes problems... and we'll have the replacment soon. * configure: use exact git version * add a comment about why we need GERBIL_PREFIX * add help to configure script * reinstate -u script discipline.
- Loading branch information
Showing
34 changed files
with
559 additions
and
3,825 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ src/gerbil/runtime/gx-version.scm | |
src/gerbil/boot-gxi | ||
|
||
build-deps | ||
build-env.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "src/gambit"] | ||
path = src/gambit | ||
url = https://github.com/gambit/gambit.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
default: build | ||
|
||
build: | ||
./build.sh | ||
|
||
install: | ||
./install.sh | ||
|
||
clean: | ||
rm -rf build | ||
rm -rf bootstrap | ||
cd src/gambit && make clean |
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/sh | ||
set -e | ||
cd $(dirname "$0") | ||
|
||
die() { | ||
echo "build failed" | ||
exit 1 | ||
} | ||
|
||
if [ -e build-env.sh ]; then | ||
. ./build-env.sh | ||
else | ||
echo "build-env.sh does not exist; did you run configure?" | ||
die | ||
fi | ||
|
||
(cd src && ./build.sh) || die |
Oops, something went wrong.