Skip to content

Commit

Permalink
Fix aarch64 XCode version and set LC_DYLIB_ID correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
urschrei committed Feb 15, 2022
1 parent dce6da7 commit 828ab37
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
if: matrix.target == 'aarch64-apple-darwin'
run: |
xcodebuild -showsdks
SDKROOT=$(xcrun -sdk macosx12.0 --show-sdk-path)
SDKROOT=$(xcrun -sdk macosx12.1 --show-sdk-path)
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -131,6 +131,8 @@ jobs:
echo "TYPE=tar" >> $GITHUB_ENV
echo "EXTENSION=tar.gz" >> $GITHUB_ENV
for lib in target/${{ matrix.target }}/release/*.dylib; do
install_name_tool -id "@rpath/librdp.dylib" $lib
otool -L $lib
strip -ur $lib
done
cp target/${{ matrix.target }}/release/*.dylib $stage/
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "lonlat_bng"
description = "Convert longitude and latitude coordinates to BNG coordinates, and vice versa"
version = "0.6.19"
version = "0.6.20"
authors = ["Stephan Hügel <urschrei@gmail.com>"]
license = "MIT"
keywords = ["OSGB36", "BNG", "Geo", "ETRS89", "OSTN02", "OSTN15"]
Expand Down

0 comments on commit 828ab37

Please sign in to comment.