Skip to content

Commit

Permalink
fix(boost)
Browse files Browse the repository at this point in the history
the change to fix-machos broke other things, and introduced too much complexity.
  • Loading branch information
jhheider committed Aug 23, 2023
1 parent 31aaf57 commit cfc7721
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions projects/boost.org/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,18 @@ build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
script: |
./bootstrap.sh --prefix={{ prefix }}
./b2 $ARGS
script:
- ./bootstrap.sh --prefix={{ prefix }}
- ./b2 $ARGS

# boost.org has libs that end up with name @rpath/libboost_atomic.dylib (offset 24)
# so we need to add @loader_path to the rpath
- run: |
for LIB in *.dylib; do
install_name_tool -add_rpath @loader_path $LIB
done
working-directory: ${{prefix}}/lib
if: darwin
env:
ARGS:
- install
Expand Down

0 comments on commit cfc7721

Please sign in to comment.