About 9,590,000 results
Open links in new tab
  1. What is the difference between GNU, GCC, and MinGW?

    Jul 7, 2016 · MinGW stands for "Minimalist GNU for Windows" It is essentially a tool set that includes some GNU software, including a port of GCC. In summary, MinGW contains GCC …

  2. gcc - I don't understand -Wl,-rpath -Wl, - Stack Overflow

    Jul 3, 2011 · man gcc: -Wl,option Pass option as an option to the linker. If option contains commas, it is split into multiple options at the commas. You can use this syntax to pass an …

  3. 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 …

  4. gcc: error: unrecognized command line option - Stack Overflow

    Jun 17, 2020 · Thanks. i did install gcc-8,2 but i need change gcc path, i guess. Do u know how can i change gcc path ?

  5. c++ - import std module with gcc-15 - Stack Overflow

    Nov 30, 2024 · As mention in this gcc patches, the std module is built in gcc development branch. I build from source and try to use it in cmake project but it show std module not found. This is …

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

    Apr 6, 2021 · I am trying to access std::popcount, but it seems like it's only there in C++ 20. When I try compiling with g++ -std=c++20 main.cpp, it says g++: error: unrecognized command line …

  7. gcc - What are my available march/mtune options? - Stack Overflow

    Nov 5, 2018 · Is there a way to get gcc to output the available -march=arch options? I'm getting build errors (tried -march=x86_64) and I don't know what my options are. The compiler I'm …

  8. Difference between CC, gcc and g++? - Stack Overflow

    Oct 4, 2009 · What are the difference between the 3 compilers CC, gcc, g++ when compiling C and C++ code in terms of assembly code generation, available libraries, language features, etc.?

  9. How do you get assembler output from C/C++ source in GCC?

    Sep 26, 2008 · Use the -S option to gcc (or g++), optionally with -fverbose-asm which works well at the default -O0 to attach C names to asm operands as comments. It works less well at any …

  10. c++ - gcc -g :what will happen - Stack Overflow

    The gcc -g flag tells gcc to generate and embed debug information. ulimit -c is used to enable core file generation. You can have either of these without the other.