diff --git a/src/pysme/sme_synth.py b/src/pysme/sme_synth.py index df31ecde..b21944f3 100644 --- a/src/pysme/sme_synth.py +++ b/src/pysme/sme_synth.py @@ -16,6 +16,7 @@ # Load the library # This ensures that we can find the library when we load _smelib libfile = get_full_libfile() +logger.critical(libfile) cdll.LoadLibrary(libfile) from .smelib import _smelib diff --git a/src/pysme/smelib/setup.py b/src/pysme/smelib/setup.py index 64ad3468..a84466d0 100644 --- a/src/pysme/smelib/setup.py +++ b/src/pysme/smelib/setup.py @@ -7,6 +7,7 @@ libdir = get_full_libfile() libdir = abspath(dirname(libdir)) +print(libdir) include_dirs = numpy.distutils.misc_util.get_numpy_include_dirs() include_dirs += [libdir]