From 4e01f8a811f5452c5d3b5c7ffaae7856b745efcf Mon Sep 17 00:00:00 2001 From: David Hendriks <davidhendriks93@gmail.com> Date: Mon, 27 Jan 2020 19:43:19 +0000 Subject: [PATCH] made the setup verbose to debug --- binarycpython/utils/functions.py | 2 +- setup.py | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/binarycpython/utils/functions.py b/binarycpython/utils/functions.py index b98619a72..29e413f48 100644 --- a/binarycpython/utils/functions.py +++ b/binarycpython/utils/functions.py @@ -123,7 +123,7 @@ def create_hdf5(data_dir): # Get data files data_files = [el for el in content_data_dir if el.endswith(".dat")] - print(data_files) + # Create the file hdf5_filename = os.path.join( data_dir, "{base_name}.hdf5".format(base_name=base_name) diff --git a/setup.py b/setup.py index cd1c06519..a28235d80 100644 --- a/setup.py +++ b/setup.py @@ -58,6 +58,25 @@ API_h = os.environ["BINARY_C"] + "/src/API/binary_c_API.h" binary_c_define_macros.extend([("BINARY_C_API_H", API_h)]) + +print("binary_c_config": binary_c_config) +print("incdirs:",binary_c_incdirs) +print("binary_c_libdirs: ", binary_c_libdirs) +print("binary_c_cflags: ",binary_c_cflags) +print("binary_c_libs: ",binary_c_libs) +print("API_h:",API_h) +print("macros:",binary_c_define_macros) + + + + + + + + + + + binary_c_python_api_module = Extension( # name="binarycpython.core.binary_c", name="binary_c_python_api", -- GitLab