-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG FIX] Architecture: arpackdef.h for C/C++, and, arpackicb.h for F77/F90. #249
Conversation
Pull Request Test Coverage Report for Build 1177
💛 - Coveralls |
4c26c40
to
a0d24ce
Compare
Found yet another bug nest... In total connection with #246 and maybe also with #230... Pushed a few stuffs to prepare for later work : this may need time. @sylvestre : would be good to finish that before next release, when do you plan next release ? |
Le 28/02/2020 à 22:43, Franck HOUSSEN a écrit :
Found yet another bug nest... In total connection with #246
<#246> and maybe also with
#230 <#230>... Pushed a
few stuffs to prepare for later work : this may need time. @sylvestre
<https://github.com/sylvestre> : would be good to finish that before
next release, when do you plan next release ?
When ready :)
No rush
|
TESTS/Makefile.am
Outdated
bug_1315_single_LDADD = $(top_builddir)/SRC/libarpack$(LIBSUFFIX).la | ||
bug_1315_double_LDADD = $(top_builddir)/SRC/libarpack$(LIBSUFFIX).la | ||
bug_1315_single_LDADD = $(LDADD) | ||
bug_1315_double_LDADD = $(LDADD) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think these should stay the way they were, see ddfd843. But I'm not familiar with the problem that this tries to solve.
TESTS/Makefile.am
Outdated
icb_arpack_c_LDADD = $(top_builddir)/SRC/libarpack$(LIBSUFFIX).la | ||
icb_arpack_c_LDADD = $(LDADD) | ||
icb_arpack_c_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_builddir) -I$(top_srcdir)/ICB | ||
|
||
icb_arpack_cpp_SOURCES = icb_arpack_cpp.cpp | ||
icb_arpack_cpp_LDADD = $(top_builddir)/SRC/libarpack$(LIBSUFFIX).la | ||
icb_arpack_cpp_LDADD = $(LDADD) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Try deleting these two LDADD lines instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to clarify, $(LDADD) is the default, so you don't need to specify it on each target like this. I don't know what problem this is trying to solve, so I can't comment on whether changing the value is the right thing to do.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@turboencabulator : you are right, I've just reverted it (since trying to test pyarpack on ILP64, lots of problems show up and mix up at the same time... I though this could explain one of them : I understood later that I was wrong). For sake of symmetry, and if I get that well, I tried to push 9ab2463
Doing nothing for now, but, preparing for the fix which may not be so easy |
OK, so if I am not mistaken, I should get stability (accuracy test) and clean traces to debug problems on ILP64 CI : this should now fail on the one problem that still need to be fixed... |
Short story : Long story:
Hope this should be enough to get |
CI not triggered ?... Rebasing on master |
43f55cd
to
4bafd3e
Compare
Rebased on master as it was conflicting. |
2d rebase on master as it conflicts again. could you merge that ? will conflict again with #258 if icb tests are indeed upgraded... |
Good to go ! Merge it before next release ! :D |
Sorry, I missed it |
Just checking if this could be the casper bug from #246 ...
@turboencabulator : do you see something wrong (pattern, misuse related to conditional, ...) in
TESTS/Makefile.am
?