Skip to content

Commit

Permalink
Maybe fix library search
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-s committed Sep 24, 2024
1 parent 6ef3a72 commit e978d05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
conda install -y conda-build
- name: build conda package
env:
SBCL_SRC: ${{ github.workspace }}/../sbcl
LIBRARY_PATH: ${{ github.workspace }}/../sbcl/src/runtime
run: |
source ~/.bash_profile
conda build recipe --output-folder conda-bld
Expand Down
4 changes: 1 addition & 3 deletions recipe/build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
SBCL_SRC=

if [[ "$OSTYPE" == "darwin"* && $(uname -m) == "arm64" ]]; then
:
else
Expand All @@ -15,7 +13,7 @@ pushd lib
mkdir build
cd build
# Build libsbcl
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_LIBRARY_PATH=$(SBCL_SRC)/src/runtime ..
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
cmake --build .
cmake --install . --prefix=$PREFIX
popd
Expand Down

0 comments on commit e978d05

Please sign in to comment.