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
smtg_setup_platform_toolset adds libc++ to the libraries:link_libraries(c++)
link_libraries(c++)
this seems to be implicit nowadays and the linker will warn:
ld: warning: ignoring duplicate libraries: '-lc++'
removing link_libraries(c++) fixes the issue (the code seems to be a relic from the libstdc++->libc++ migration of macos)
The text was updated successfully, but these errors were encountered:
Thanks we will fix in the next update
Sorry, something went wrong.
No branches or pull requests
smtg_setup_platform_toolset adds libc++ to the libraries:
link_libraries(c++)
this seems to be implicit nowadays and the linker will warn:
removing
link_libraries(c++)
fixes the issue (the code seems to be a relic from the libstdc++->libc++ migration of macos)The text was updated successfully, but these errors were encountered: