Skip to content

Commit

Permalink
Add BUILDAPP variable to the buildapp-script.
Browse files Browse the repository at this point in the history
This enables us to be able to make buildapp binaries for both CCL and
SBCL.  Currently, the buildapp binary is either based on CCL or SBCL,
but can't make binaries for both, so we need to install a CCL buildapp
and an SBCL buildapp if we want to build both on the same system, and in
this case need a mechanism for choosing which to use.
  • Loading branch information
rpgoldman committed Nov 24, 2023
1 parent f1bcab8 commit f7e4c97
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions shop3/buildapp/buildapp-script
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
ASDF_DIR=${ASDF_DIR:-${HOME}/lisp/asdf/build}
THIS_DIR=$(realpath $(dirname ${BASH_SOURCE}))
QUICKLISP_DIR=${QUICKLISP_DIR:-~/quicklisp}
BUILDAPP=${BUILDAPP:-buildapp}

# --dispatched-entry "shop/shop-app::main" \
# --dispatched-entry "ess-shop/shop-app::ess-main" \
# --entry "shop-app::main" \
buildapp --logfile "/tmp/buildapp-shop-app.log" \
# --DISPATCHED-ENTRY "SHOP/SHOP-APP::MAIN" \
# --DISPATCHED-ENTRY "ESS-SHOP/SHOP-APP::ESS-MAIN" \
# --ENTRY "SHOP-APP::MAIN" \
${BUILDAPP} --logfile "/tmp/buildapp-shop-app.log" \
--output shop-app \
--dispatched-entry "/shop-app::main" \
--dispatched-entry "shop/shop-app::classic-main" \
Expand Down

0 comments on commit f7e4c97

Please sign in to comment.