之前配置好了Sublime写cpp一直用的好好的,今天突然出现了蜜汁问题(如下图)
网上找了一波,发现这个是cpp运行时候会出现的问题,网上给出的解决方法是使用静态编译。
由于用的sublime之前写好的配置,于是只能改配置了。
原来的配置:
{ "cmd": ["g++", "${file}", "-o","${file_path}/${file_base_name}"], "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:?(.*)$", "working_dir": "${file_path}", "encoding":"cp936", "selector": "source.c, source.c++", "variants": [ { "name": "Run", "shell_cmd": "g++ -Wall -std=c++11 \"$file\" -o \"$file_base_name\" && start cmd /c \"${file_path}/${file_base_name} & pause\"" } ]}
更改方法:在g++的后面加上-static即可
如下:
{ "cmd": ["g++ -static ", "${file}", "-o","${file_path}/${file_base_name}"], "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:?(.*)$", "working_dir": "${file_path}", "encoding":"cp936", "selector": "source.c, source.c++", "variants": [ { "name": "Run", "shell_cmd": "g++ -static -Wall -std=c++11 \"$file\" -o \"$file_base_name\" && start cmd /c \"${file_path}/${file_base_name} & pause\"" } ]}