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 fdd1196 commit 48d19d7Copy full SHA for 48d19d7
flang/tools/flang-driver/CMakeLists.txt
@@ -28,6 +28,12 @@ clang_target_link_libraries(flang
28
clangBasic
29
)
30
31
+# This creates the executable with a version appended
32
+# and creates a symlink to it without the version
33
+if(CYGWIN OR NOT WIN32) # but it doesn't work on Windows
34
+ set_target_properties(flang PROPERTIES VERSION ${FLANG_EXECUTABLE_VERSION})
35
+endif()
36
+
37
option(FLANG_PLUGIN_SUPPORT "Build Flang with plugin support." ON)
38
39
# Enable support for plugins, which need access to symbols from flang
0 commit comments