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
gcc is more picky about link order than some linkers. Current build fails with:
g++ -mtune=core2 -march=core2 -msse3 -mfpmath=sse -m64 -O3 -o example libuc.a example.o example.o: In function print_person(JAD::UniversalContainer&)': example.cpp:(.text+0x4f): undefined reference toJAD::UniversalContainer::operator[](char const*)' example.cpp:(.text+0x5c): undefined reference to JAD::UniversalContainer::operator std::string() const' example.cpp:(.text+0x69): undefined reference toJAD::UniversalContainer::operator[](char const*)' example.cpp:(.text+0x76): undefined reference to JAD::UniversalContainer::operator std::string() const' example.cpp:(.text+0x83): undefined reference toJAD::UniversalContainer::operator[](char const*)' example.cpp:(.text+0x8b): undefined reference to `JAD::UniversalContainer::operator char() const' ....
print_person(JAD::UniversalContainer&)': example.cpp:(.text+0x4f): undefined reference to
JAD::UniversalContainer::operator std::string() const' example.cpp:(.text+0x69): undefined reference to
JAD::UniversalContainer::operator std::string() const' example.cpp:(.text+0x83): undefined reference to
The text was updated successfully, but these errors were encountered:
No branches or pull requests
gcc is more picky about link order than some linkers. Current build fails with:
g++ -mtune=core2 -march=core2 -msse3 -mfpmath=sse -m64 -O3 -o example libuc.a example.o
example.o: In function
print_person(JAD::UniversalContainer&)': example.cpp:(.text+0x4f): undefined reference to
JAD::UniversalContainer::operator[](char const*)'example.cpp:(.text+0x5c): undefined reference to
JAD::UniversalContainer::operator std::string() const' example.cpp:(.text+0x69): undefined reference to
JAD::UniversalContainer::operator[](char const*)'example.cpp:(.text+0x76): undefined reference to
JAD::UniversalContainer::operator std::string() const' example.cpp:(.text+0x83): undefined reference to
JAD::UniversalContainer::operator[](char const*)'example.cpp:(.text+0x8b): undefined reference to `JAD::UniversalContainer::operator char() const'
....
The text was updated successfully, but these errors were encountered: