-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding missing rpath to Python on Apple Silicon #1467
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -264,7 +264,6 @@ jobs: | |
brew install \ | ||
autoconf \ | ||
automake \ | ||
cairo \ | ||
libtool \ | ||
nasm \ | ||
qt@5 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,6 @@ | |
"dependencies": [ | ||
{ | ||
"name": "cairo", | ||
"platform": "windows", | ||
"default-features": false | ||
}, | ||
"python3" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,7 @@ if(PORT STREQUAL cairo) | |
set(VCPKG_LIBRARY_LINKAGE dynamic) | ||
set(VCPKG_BUILD_TYPE release) | ||
endif() | ||
|
||
if(PORT STREQUAL python3) | ||
set(VCPKG_CONFIGURE_MAKE_OPTIONS "LDFLAGS_NODIST=-rpath ${CURRENT_INSTALLED_DIR}/lib") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The Python documentation says that this should be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is the error? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's the same error this is trying to fix in the Python Cairo module. It's as if no configure arguments are applied at all. |
||
endif() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Python documentation says that this should be
CONFIGURE_LDFLAGS_NODIST