Skip to content

Commit

Permalink
fix pd path
Browse files Browse the repository at this point in the history
  • Loading branch information
fdch committed Jun 18, 2023
1 parent 3d417d1 commit 87d727f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
env:
OUTPUT: fd_lib-${{ github.job }}
PDPATH: resources/pure-data
PDPATH: ./pure-data
steps:
- uses: actions/checkout@v3
- name: get pdlibbuilder
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:
runs-on: macos-latest
env:
OUTPUT: fd_lib-${{ github.job }}
PDPATH: resources/pure-data
PDPATH: ./pure-data
steps:
- uses: actions/checkout@v3
- name: get pdlibbuilder
Expand Down Expand Up @@ -67,18 +67,19 @@ jobs:
runs-on: windows-latest
env:
OUTPUT: fd_lib-${{ github.job }}
PDPATH: ./pure-data
steps:
- uses: actions/checkout@v3
- name: get pdlibbuilder
run: git submodule init && git submodule update
- name: get pd
run: |
curl -O http://msp.ucsd.edu/Software/pd-0.53-2.msw.zip
unzip -d pure-data pd-0.53-2.msw.zip
unzip -d $PDPATH pd-0.53-2.msw.zip
- name: configure
run: ./config.sh
- name: make
run : make pdbinpath=pure-data/bin PDINCLUDEDIR=pure-data/src CFLAGS=-march=x86-64 -Iinclude
run : make pdbinpath=$PDPATH/bin PDINCLUDEDIR=$PDPATH/src CFLAGS=-march=x86-64 -Iinclude
- name: install lib
run: |
make install PDLIBDIR=.
Expand Down

0 comments on commit 87d727f

Please sign in to comment.