Skip to content
Snippets Groups Projects
Commit 4e01f8a8 authored by David Hendriks's avatar David Hendriks
Browse files

made the setup verbose to debug

parent c722cc8c
No related branches found
No related tags found
No related merge requests found
...@@ -123,7 +123,7 @@ def create_hdf5(data_dir): ...@@ -123,7 +123,7 @@ def create_hdf5(data_dir):
# Get data files # Get data files
data_files = [el for el in content_data_dir if el.endswith(".dat")] data_files = [el for el in content_data_dir if el.endswith(".dat")]
print(data_files)
# Create the file # Create the file
hdf5_filename = os.path.join( hdf5_filename = os.path.join(
data_dir, "{base_name}.hdf5".format(base_name=base_name) data_dir, "{base_name}.hdf5".format(base_name=base_name)
......
...@@ -58,6 +58,25 @@ API_h = os.environ["BINARY_C"] + "/src/API/binary_c_API.h" ...@@ -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)]) 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( binary_c_python_api_module = Extension(
# name="binarycpython.core.binary_c", # name="binarycpython.core.binary_c",
name="binary_c_python_api", name="binary_c_python_api",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment