-
Notifications
You must be signed in to change notification settings - Fork 680
New issue
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
Linker Errors using C++17 #200
Comments
Compliment for being issue number 200. As a special gift, you get a prompt solution to your issue (just pushed) |
Thanks for the impressively quick Answer 👍 |
yes, the problem was that you could not mix c++14 and c++17 together. Now you can |
Supplemental info for my suggestion to use C++17 (for anyone googling this stuff): |
not with the latest changes... Grood submodule to be updated accordingly |
Hello together,
while trying to do all the provided tutorials, i ran into a linking issue when defining Nodes that use Input and Output ports. During build process, the following issues are raised when i add the Code to register the Nodes:
... (6 in total)
During debugging i moved the files outside our main CMake-project and the build was successful.
It turned out, that the issue can be triggered by adding
set(CMAKE_CXX_STANDARD 17)
in the CMake File.I know that the ReadMe file sets the CMake to C++14, however i would really like to use the tree in my C++17 project. Is there any way to fix this issue in C++17 or are there any Releases in sight compatible with C++17?
Thanks in Advance
The text was updated successfully, but these errors were encountered: