Bootstrap

codeblocks 问题

 出现错误


||=== Build: Debug in test (compiler: GNU GCC Compiler) ===|
ld.exe||cannot open output file bin\Debug\test.exe Permission denied|
||error: ld returned 1 exit status|
 


test.exe不能打开,因为已经存在

解决方法:打开cmd窗口

taskkill /f /im test.exe

 

f是force的缩写,强制关闭。

im是imagefile 缩写,是要调试的映像名称。

 

;