# Infrastructure to build flang driver entry point. Flang driver depends on # LLVM libraries. # Set your project compile flags. link_directories(${LLVM_LIBRARY_DIR}) set( LLVM_LINK_COMPONENTS ${LLVM_TARGETS_TO_BUILD} MC Option Support TargetParser ) add_flang_tool(flang driver.cpp fc1_main.cpp ) target_link_libraries(flang PRIVATE flangFrontend flangFrontendTool ) clang_target_link_libraries(flang PRIVATE clangDriver clangBasic ) # This creates the executable with a version appended # and creates a symlink to it without the version if(CYGWIN OR NOT WIN32) # but it doesn't work on Windows set_target_properties(flang PROPERTIES VERSION ${FLANG_EXECUTABLE_VERSION}) endif() option(FLANG_PLUGIN_SUPPORT "Build Flang with plugin support." ON) # Enable support for plugins, which need access to symbols from flang if(FLANG_PLUGIN_SUPPORT) set(LLVM_LIBRARY_OUTPUT_INTDIR ${LLVM_LIBRARY_DIR}) export_executable_symbols_for_plugins(flang) endif() install(TARGETS flang DESTINATION "${CMAKE_INSTALL_BINDIR}") # Keep "flang-new" as a symlink for backwards compatiblity. Remove once "flang" # is a widely adopted name. add_flang_symlink(flang-new flang)