Skip to content

Commit

Permalink
Remove echos
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-s committed May 12, 2024
1 parent 7b0f7bf commit e7d0d0d
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
working-directory: ../sbcl
run: |
choco install sbcl -source tools-for-build
- name: build
- name: build sbcl
working-directory: ../sbcl
env:
SBCL_HOME: "/c/Program Files/Steel Bank Common Lisp/1.4.14"
Expand All @@ -47,10 +47,7 @@ jobs:
LIBRARY_PATH: ${{ github.workspace }}/../sbcl/src/runtime;.
CL_SOURCE_REGISTRY: "${{ github.workspace }}//"
run: |
echo $CL_SOURCE_REGISTRY
pwd
$SBCL_SRC/run-sbcl.sh --script script.lisp
echo $LIBRARY_PATH
gcc -Wall -fPIC -shared -o libcalc.dll libcalc.c -Wl,--export-all-symbols -Wl,--whole-archive -lsbcl -Wl,--no-whole-archive -ladvapi32 -lsynchronization -lws2_32 -lzstd
gcc -Wall -o example example.c -lcalc
echo "(+ 1 2)" | ./example.exe

0 comments on commit e7d0d0d

Please sign in to comment.