Browse Source

Allow override system libsecp with env. variable (#35)

* allow override system libsecp with env. variable

* rename secp override variable

* Update setup_support.py
anonswap
fivepiece 6 years ago
committed by Ofek Lev
parent
commit
fe05089edf
  1. 3
      setup_support.py

3
setup_support.py

@ -68,6 +68,9 @@ def build_flags(library, type_, path):
def _find_lib():
if 'COINCURVE_IGNORE_SYSTEM_LIB' in os.environ:
return False
from cffi import FFI
ffi = FFI()
try:

Loading…
Cancel
Save