{bio}[intel/2019a] Red v2015-05-22#9856
Conversation
boegel
left a comment
There was a problem hiding this comment.
@bjmoran Thank you very much for your contribution!
I tried this myself, and it works, but it doesn't exactly compile as intended:
/usr/bin/g++ -O3 -g -fmessage-length=0 -Wall -c RepeatsDetector.cpp -o ../bin/Red.o
Problems:
- it uses the system C++ compiler
/usr/bin/g++rather than the one provided by the toolchain - it uses
-O3rather than the compiler options specified in$CXXFLAGS
It looks like you can fix this byy adding this to your easyconfig file:
buildopts = 'CXX="$CXX" CXXFLAGS="$CXXFLAGS -fmessage-length=0"I'm not sure what the -fmessage-length=0 that is used by default does, so it may be best to keep using that.
In addition, there's no need to use a full toolchain like intel here, since Red doesn't require MPI or BLAS/LAPACK, so you could downgrade the toolchain to iccifort?
…lchain, as requested
|
@boegel I've added a commit with your requested changes. Thanks for your review! |
|
Test report by @boegel |
|
Test report by @boegel |
|
Test report by @boegel |
|
Going in, thanks @bjmoran! |
(created using
eb --new-pr)