From 4a6466a5ace783e363e874229ded4f004790614e Mon Sep 17 00:00:00 2001 From: Ansgar Wehrhahn <31626864+AWehrhahn@users.noreply.github.com> Date: Fri, 1 Apr 2022 15:34:28 +0200 Subject: [PATCH] add some print statements to check what happens on Mac OSX --- src/pysme/sme_synth.py | 1 + src/pysme/smelib/setup.py | 1 + 2 files changed, 2 insertions(+) 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]