c++ - Problems with Sublime text system build and cygwin -
i downloaded 64 version windows of sublime text, whenever try compile c++ file using system build following message:
"the program or feature "\??\c:\users\windows\system.exe" cannot start or run due incompatibility 64-bit versions of windows. please contact software vendor ask if 64-bit windows compatible version available."
for build system used this->
{ "cmd" : ["c:\\cygwin\\bin\\g++ $file -o ${file_base_name}"], "selector" : "source.cpp", "shell" : true, "working_dir" : "$file_path" } i've modify path system variable...
any help?
"cmd" : ["c:\cygwin\bin\g++ $file -o ${file_base_name}"]
i think can append ".exe" after "g++".
Comments
Post a Comment