Skip to content

Commit

Permalink
CI: Link basicapitest with Accelerate framework for MacOS
Browse files Browse the repository at this point in the history
Clean also some other compiler options for basicapitest.

Fixes: 3ab8dcb ("Use Apple Accelerate framework [...]")
Signed-off-by: Stefan Weil <[email protected]>
  • Loading branch information
stweil committed Sep 6, 2021
1 parent e5e12f2 commit 60fd2b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/autotools-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
run: |
export "PKG_CONFIG_PATH=/usr/local/lib/pkgconfig"
cd test
${{ matrix.config.cxx }} -o basicapitest testing/basicapitest.cpp -I/usr/local/include -L/usr/local/lib `pkg-config --cflags --libs tesseract lept ` -pthread -std=c++11
${{ matrix.config.cxx }} -o basicapitest testing/basicapitest.cpp $(pkg-config --cflags --libs tesseract lept) -pthread -std=c++11 -framework accelerate
./basicapitest
- name: Display Compiler Version
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
run: |
export "PKG_CONFIG_PATH=/usr/local/lib/pkgconfig"
cd test
${{ matrix.config.cxx }} -o basicapitest testing/basicapitest.cpp -I/opt/local/include -L/opt/local/lib -I/usr/local/include -L/usr/local/lib `pkg-config --cflags --libs tesseract lept ` -pthread -std=c++11
${{ matrix.config.cxx }} -o basicapitest testing/basicapitest.cpp -I/opt/local/include -L/opt/local/lib $(pkg-config --cflags --libs tesseract lept) -pthread -std=c++11 -framework Accelerate
./basicapitest
- name: Display Compiler Version
Expand Down

0 comments on commit 60fd2b4

Please sign in to comment.