tdm gcc怎么运行c语言,gvim+tdm-gcc设置c语言编译环境

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼

_vimrc设置:

:autocmd BufEnter * cd %:p:h "让gVim在打开文件的时候自动改变工作目录为所打开文件的目录

if(has("win32") || has("win95") || has("win64") || has("win16"))

let g:iswindows=1

else

let g:iswindows=0

endif

"单个文件编译

map :call Do_OneFileMake()

function Do_OneFileMake()

if expand("%:p:h")!=getcwd()

echohl WarningMsg | echo "Fail to make! This file is not in the current dir! Press to redirect to the dir of this file." | echohl None

return

endif

let sourcefileename=expand("%:t")

if (sourcefileename=="" || (&filetype!="cpp" && &filetype!="c"))

echohl WarningMsg | echo "Fail to make! Please select the right file!" | echohl None

return

endif

let deletedspacefilename=substitute(sourcefileename,' ','','g')

if strlen(deletedspacefilename)!=strlen(sourcefileename)

echohl WarningMsg | echo "Fail to make! Please delete the spaces in the filename!" | echohl None

return

endif

if &filetype=="c"

if g:iswindows==1

set makeprg=gcc\ -o\ %<.exe>

else

set makeprg=gcc\ -o\ %

endif

elseif &filetype=="cpp"

if g:iswindows==1

set makeprg=g++\ -o\ %<.exe>

else

set makeprg=g++\ -o\ %

endif

"elseif &filetype=="cs"

"set makeprg=csc\ \/nologo\ \/out:%<.exe>

endif

if(g:iswindows==1)

let outfilename=substitute(sourcefileename,'\(\.[^.]*\)' ,'.exe','g')

let toexename=outfilename

else

let outfilename=substitute(sourcefileename,'\(\.[^.]*\)' ,'','g')

let toexename=outfilename

endif

if filereadable(outfilename)

if(g:iswindows==1)

let outdeletedsuccess=delete(getcwd()."\\".outfilename)

else

let outdeletedsuccess=delete("./".outfilename)

endif

if(outdeletedsuccess!=0)

set makeprg=make

echohl WarningMsg | echo "Fail to make! I cannot delete the ".outfilename | echohl None

return

endif

endif

execute "silent make"

set makeprg=make

execute "normal :"

if filereadable(outfilename)

if(g:iswindows==1)

execute "!".toexename

else

execute "!./".toexename

endif

endif

execute "copen"

endfunction

"进行make的设置

map :call Do_make()

map :silent make clean

function Do_make()

set makeprg=make

execute "silent make"

execute "copen"

endfunction

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值