Sublime Text 2 : Having trouble making an OpenGL sublime-build

636 Views Asked by At

Just trying to set up a sublime-build for my OpenGL coding on Windows 8.1.

This is what I have:

{
"cmd": [ "gcc -o \"$file\" \"$file_base_name\" -lGLU -lGL -lglut && ./\"$file_base_name\""],
"working_dir": "${project_path:${folder}}",
"selector": ["source.c"],
"shell": true  
}

The error that I'm getting is gcc: error: "tute2": Invalid argument when trying to compile tute2.c.

What am I doing wrong?

1

There are 1 best solutions below

8
On BEST ANSWER

Please replace

"cmd": [ "gcc -o \"$file\" \"$file_base_name\" -lGLU -lGL -lglut && ./\"$file_base_name\""],

with

"cmd": [ "gcc -o $file_base_name $file -lGLU -lGL -lglut && ./$file_base_name"],

and try again.