6 Star 0 Fork 9

openEuler/elfin-parser

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
InstallStdcxx.cmake 512 Bytes
一键复制 编辑 原始数据 按行查看 历史
victorjin 提交于 2022-09-30 14:19 . init elfin-parser
cmake_minimum_required(VERSION 3.12)
include_guard(GLOBAL)
set(compiler "gcc")
if (NOT "${CMAKE_C_COMPILER}" STREQUAL "")
set(compiler "${CMAKE_C_COMPILER}")
endif()
find_file(compiler_full_path "${compiler}")
get_filename_component(compiler_dir "${compiler_full_path}" DIRECTORY)
file(GLOB cxx_libs "${compiler_dir}/../lib64/libstdc++.so*")
list(FILTER cxx_libs INCLUDE REGEX "libstdc..\.so(\.[0-9]+)?(\.[0-9]+)?(\.[0-9]+)?$")
install(PROGRAMS ${cxx_libs}
DESTINATION ${CMAKE_INSTALL_PREFIX}/lib64
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openeuler/elfin-parser.git
git@gitee.com:openeuler/elfin-parser.git
openeuler
elfin-parser
elfin-parser
master

搜索帮助