You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I ran "make" in the git cloned path, an Error reported:
make
g++ -Wall -std=c++14 -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -I. -Irnaseqc -Irnaseqc/src -Irnaseqc/SeqLib -Irnaseqc/SeqLib/htslib/ -c -o src/scrinvex.o src/scrinvex.cpp
g++: error: unrecognized command line option ‘-std=c++14’
make: *** [Makefile:24: src/scrinvex.o] Error 1
Would you please offer an advice of solving this problem? Thank you very much !!!
The text was updated successfully, but these errors were encountered:
It sounds like your version of g++ may not include the C++14 standard. I believe support for c++14 was added in gcc version 5.2. If updating is not an option, you can try editing the Makefile to use c++1y instead of c++14, although this may not compile as expected
Hello!
When I ran "make" in the git cloned path, an Error reported:
make
g++ -Wall -std=c++14 -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -I. -Irnaseqc -Irnaseqc/src -Irnaseqc/SeqLib -Irnaseqc/SeqLib/htslib/ -c -o src/scrinvex.o src/scrinvex.cpp
g++: error: unrecognized command line option ‘-std=c++14’
make: *** [Makefile:24: src/scrinvex.o] Error 1
Would you please offer an advice of solving this problem? Thank you very much !!!
The text was updated successfully, but these errors were encountered: