We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Trying to build graphmap2 on openEuler 20.03 LTS ARM64 fails with:
mkdir -p obj_linux/codebase/seqlib/src/libs/libdivsufsort-2.0.1-64bit/ g++ -static-libgcc -static-libstdc++ -D__cplusplus=201103L -I"./src/" -I"/usr/include/" -I"codebase/seqlib/src/libs/seqan-library-2.0.1/include" -I"codebase/seqlib/src/libs/libdivsufsort-2.0.1-64bit/" -Icodebase/argumentparser/src -Icodebase/seqlib/src -Icodebase/gindex/src -DRELEASE_VERSION -g -O3 -fdata-sections -ffunction-sections -c -fmessage-length=0 -ffreestanding -fopenmp -m64 -std=c++11 -Werror=return-type -pthread -o obj_linux/codebase/seqlib/src/libs/libdivsufsort-2.0.1-64bit/utils.o codebase/seqlib/src/libs/libdivsufsort-2.0.1-64bit/utils.cpp g++: error: unrecognized command line option ‘-m64’ make: *** [Makefile:128: obj_linux/codebase/seqlib/src/libs/libdivsufsort-2.0.1-64bit/utils.o] Error 1
According to https://stackoverflow.com/a/58244182/497381 -m64 is x86_64 specific flag. I will try to provide a PR with support for both CPU architectures!
-m64
$ g++ --version g++ (GCC) 7.3.0 $ uname -a Linux mgrigorov-arm64 4.19.90-2205.3.0.0149.oe1.aarch64 #1 SMP Wed May 11 12:53:17 UTC 2022 aarch64 aarch64 aarch64 GNU/Linux
The text was updated successfully, but these errors were encountered:
sse
+1 for support for ARM64 !
Sorry, something went wrong.
Will be fixed with #23
Successfully merging a pull request may close this issue.
Trying to build graphmap2 on openEuler 20.03 LTS ARM64 fails with:
According to https://stackoverflow.com/a/58244182/497381
-m64
is x86_64 specific flag.I will try to provide a PR with support for both CPU architectures!
The text was updated successfully, but these errors were encountered: