We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2ae560 commit 9e50355Copy full SHA for 9e50355
tools/export/cmake/CMakeLists.txt.tmpl
@@ -55,6 +55,8 @@ SET_TARGET_PROPERTIES({{name}} PROPERTIES ENABLE_EXPORTS 1)
55
TARGET_LINK_LIBRARIES({{name}}
56
{% for libname in dependencies.keys()|sort(reverse=true) %}{{libname}}
57
{% endfor %})
58
+# add dependencies for stdc++, c and nosys so the linker stage works
59
+TARGET_LINK_LIBRARIES({{name}} stdc++ c nosys)
60
61
{% if pp -%}
62
add_custom_command(TARGET {{name}} PRE_LINK
0 commit comments