About 11,600,000 results
Open links in new tab
  1. What is the difference between g++ and gcc? - Stack Overflow

    Oct 5, 2008 · According to GCC's online documentation link options and how g++ is invoked, g++ is roughly equivalent to gcc -xc++ -lstdc++ -shared-libgcc (the 1st is a compiler option, the 2nd two are …

  2. c++ - Compiling .cpp files with 'g++' - Stack Overflow

    Jul 25, 2021 · g++ file.cpp -o file produces an executable file (which normally have no extensions on Linux). -o specifies the output file name. If you do just g++ file.cpp, the file will be named a.out.

  3. Compiling C++11 with g++ - Stack Overflow

    Apr 28, 2012 · 631 Flags (or compiler options) are nothing but ordinary command line arguments passed to the compiler executable. Assuming you are invoking g++ from the command line (terminal): $ g++ …

  4. How to use C++ 20 in g++ - Stack Overflow

    Apr 6, 2021 · g++-10 -std=c++20 main.cpp PS: if you want to go with v10 as default, then update links for gcc, g++ and other related ones, and use v9 (or whatever old you have) by full name.

  5. Which C++ standard is the default when compiling with g++?

    Jun 24, 2017 · 36 g++ man page actually tells what is the default standard for C++ code. Use following script to show the relevant part:

  6. Is optimisation level -O3 dangerous in g++? - Stack Overflow

    Jul 18, 2018 · I have heard from various sources (though mostly from a colleague of mine), that compiling with an optimisation level of -O3 in g++ is somehow 'dangerous', and should be avoided in …

  7. c++ - G++ version and std option - Stack Overflow

    Mar 20, 2018 · I see one of my makefile and see the below command. g++-5 -std=c++11 From what I understand, the std option represents this - GCC supports different dialects of C++, corresponding to …

  8. How do I include a path to libraries in g++ - Stack Overflow

    @Fred, yes, g++ understands a whole bunch of environment variables which can be used to control the include path, library path, etc.

  9. What's the difference between gcc and g++/gcc-c++?

    May 2, 2011 · As far as I know, g++ uses the correct C++ linker options whereas gcc uses the C linker options (so you may get undefined references, etc.).

  10. Compile options -g debug and -O optimization - Stack Overflow

    20 I am not quite familiar with g++ compilers, especially the options, e.g., -s, -g, and -O. Firstly, can I ask when do these options take effect? During compile or link phase? I normally put all the options I need …