2019-06-03 21:37:46 +00:00
|
|
|
# Support code for building a C extension with checksums code
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
2022-02-26 21:18:12 +00:00
|
|
|
def xxhash_ext_kwargs(pc, system_prefix):
|
|
|
|
if system_prefix:
|
|
|
|
print('Detected and preferring libxxhash [via BORG_LIBXXHASH_PREFIX]')
|
|
|
|
return dict(include_dirs=[os.path.join(system_prefix, 'include')],
|
|
|
|
library_dirs=[os.path.join(system_prefix, 'lib')],
|
|
|
|
libraries=['xxhash'])
|
|
|
|
|
|
|
|
if pc and pc.installed('libxxhash', '>= 0.7.3'):
|
|
|
|
print('Detected and preferring libxxhash [via pkg-config]')
|
|
|
|
return pc.parse('libxxhash')
|
|
|
|
|
|
|
|
raise Exception('Could not find xxhash lib/headers, please set BORG_LIBXXHASH_PREFIX')
|