Skip to content

Commit 625646a

Browse files
Merge pull request #135 from oscarbenjamin/pr_flint_rpath
build: add --local-flint to set rpath in dev build
2 parents 6d942d5 + d357d1f commit 625646a

File tree

6 files changed

+35
-3
lines changed

6 files changed

+35
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
build/*
2+
build-install/*
23
dist/*
34
src/flint/**/*.c
45
src/flint/*.html

meson.build

+10
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ gmp_dep = dependency('gmp')
99
mpfr_dep = dependency('mpfr')
1010
flint_dep = dependency('flint')
1111

12+
# Add rpaths for a local build of flint found via pkgconfig
13+
# https://github.com/mesonbuild/meson/issues/13046
14+
if get_option('add_flint_rpath')
15+
flint_lib_dir = flint_dep.get_pkgconfig_variable('libdir')
16+
add_project_link_arguments(
17+
'-Wl,-rpath=' + flint_lib_dir,
18+
language: 'c',
19+
)
20+
endif
21+
1222
# flint.pc was missing -lflint until Flint 3.1.0
1323
if flint_dep.version().version_compare('<3.1')
1424
flint_dep = cc.find_library('flint')

meson.options

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
option('add_flint_rpath', type : 'boolean', value : false)

requirements-dev.txt

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
cython
2+
spin
3+
meson
4+
meson-python
5+
pytest
6+
coverage
7+
pytest-cov

src/flint/flintlib/flint.pxd

+15-2
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,26 @@ cdef extern from "flint/fmpz.h":
3636

3737
ctypedef slong fmpz_struct
3838

39+
cdef extern from *:
40+
"""
41+
/*
42+
* Functions renamed in Flint 3.2.0
43+
*/
44+
#if __FLINT_RELEASE < 30200 /* Flint < 3.2.0 */
45+
46+
#define flint_rand_init flint_randinit
47+
#define flint_rand_clear flint_randclear
48+
49+
#endif
50+
"""
51+
3952
cdef extern from "flint/flint.h":
4053
const char * FLINT_VERSION
4154
const int __FLINT_RELEASE
4255
const int FLINT_BITS
4356
ctypedef void * flint_rand_t
44-
void flint_randinit(flint_rand_t state)
45-
void flint_randclear(flint_rand_t state)
57+
void flint_rand_init(flint_rand_t state)
58+
void flint_rand_clear(flint_rand_t state)
4659
void flint_set_num_threads(long)
4760
long flint_get_num_threads()
4861
void flint_cleanup()

src/flint/pyflint.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ cimport cython
99
from flint.flint_base.flint_context cimport thectx
1010

1111
cdef flint_rand_t global_random_state
12-
flint_randinit(global_random_state)
12+
flint_rand_init(global_random_state)
1313

1414
ctx = thectx

0 commit comments

Comments
 (0)