Using G++ to compile multiple .cpp and .h files

前端 未结 11 995
耶瑟儿~
耶瑟儿~ 2020-11-22 09:43

I\'ve just inherited some C++ code that was written poorly with one cpp file which contained the main and a bunch of other functions. There are also .h files th

11条回答
  •  生来不讨喜
    2020-11-22 10:28

    .h files will nothing to do with compiling ... you only care about cpp files... so type g++ filename1.cpp filename2.cpp main.cpp -o myprogram

    means you are compiling each cpp files and then linked them together into myprgram.

    then run your program ./myprogram

提交回复
热议问题