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
In your Makefile, it is:
CFLAGS = -std=gnu99 -O3 CXXFLAGS = -std=c++98 -O3
I have to change them into:
CFLAGS = -std=gnu++11 -O3 CXXFLAGS = -std=c++11 -O3
Then I can compile parts of your code.
But I can't step through the compiling stage of SGA.
There are lost of error information with "Undefine" in it. I get your code with git clone -b master --recursive https://xxxx.git.
git clone -b master --recursive https://xxxx.git
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In your Makefile, it is:
I have to change them into:
Then I can compile parts of your code.
But I can't step through the compiling stage of SGA.
There are lost of error information with "Undefine" in it.
I get your code with
git clone -b master --recursive https://xxxx.git
.The text was updated successfully, but these errors were encountered: