码迷,mamicode.com
首页 > 其他好文 > 详细

CLion编译的exe文件离开IDE就不能运行

时间:2017-03-25 22:30:58      阅读:1865      评论:0      收藏:0      [点我收藏+]

标签:方法   art   链接   problem   try   cannot   修改   ati   .dll   

The program cannot start because libgcc_s_dw2-1.dll is missing from

your computer. Try reinstalling the program to fix this problem

技术分享

原因:使用CLion编译的程序是用cmake方法编译的,在windows上exe文件需要libgcc才能运行

解决方法

修改CMAKElist文件,添加让链接器静态链接libgcc和libstdc++的指令

set(CMAKE_EXE_LINKER_FLAGS "-static-libgcc -static-libstdc++")

程序便可以执行

CLion编译的exe文件离开IDE就不能运行

标签:方法   art   链接   problem   try   cannot   修改   ati   .dll   

原文地址:http://www.cnblogs.com/liutianchen/p/6618704.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!