-
-
Notifications
You must be signed in to change notification settings - Fork 31
add an meson option to pass pari location #195
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
base: main
Are you sure you want to change the base?
Conversation
|
This doesn't quite work, as custom prefix pari clashes with a system-wide one |
this what I get if I install pari 2.17.3 to |
|
The simplest solution would be to convince the pari people to add a pkg-config file... |
with PPREF set to point at pari install prefix, do export LDFLAGS="-Wl,-rpath=$PPREF/lib -L$PPREF/lib -lpari" pip install . --config-settings=setup-args="-Dpari-prefix=$PPREF" works
|
I pushed a solution involving setting cf the commit message: |
Does meson use rpath in this case? That's what's needed for building wheels. |
|
is setting LDFLAGS equivalent to passing an argument to meson? |
OK, turns out I can use now I need to figure out how to pass all this to |
fixes #194