We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19f63bd commit 833330fCopy full SHA for 833330f
1 file changed
setup.py
@@ -147,6 +147,15 @@ def get_gsl_config():
147
library_dirs += gcfg['library_dirs']
148
# add optimization flags for other compilers if needed
149
150
+print("INCLUDE DIR = {!r}".format(include_dirs))
151
+print("LIBRARY DIR = {!r}".format(library_dirs))
152
+import glob
153
+
154
+pattern = 'gsl.*'
155
156
+matching_files = glob.glob(library_dirs + '\\' + pattern)
157
+if len(matching_files) != 0:
158
+ print("GSL LIBRARY FOUND in {!r}".format(matching_files[0]))
159
160
# define extension here
161
pdffit2module = Extension('diffpy.pdffit2.pdffit2', [
0 commit comments