Sublime Forum

Build System Help

#1

How could I make a c++ build system or what do I do to get this working? I tried with make but never got it working.

Thanks

0 Likes

#2

No one has some help or pointers for this?

Thanks

0 Likes

#3

It very much depends on what OS you’re running, and what build tool (make, jam, msbuild, etc) you want to use. I’d recommend first getting something up and running from the command line, and then thinking about how to integrate it into Sublime Text 2 after that.

0 Likes

#4

I do use the command line now. I am running Arch Linux x86_64 and I use g++ with this command. I am not doing anything major with c++ just learning and doing terminal apps.

g++ -Wall -W -pedantic file.cpp -o file

Thanks

0 Likes