About 846,000 results
Open links in new tab
  1. How to install gcc-14 on Ubuntu 22.04 and 24.04?

    May 7, 2024 · 14 GCC-14 (and G++-14) is available in the Universe repository for Ubuntu 24.04, as evident in the Ubuntu Package archive. It is equally evident that this package is not available for …

  2. How to choose the default gcc and g++ version? - Ask Ubuntu

    Feb 15, 2011 · So I have installed gcc-4.4 and gcc-4.3 (same for g++). Now as far as I remember there is a tool in Ubuntu which sets the symlinks for you if you just tell it which version you want. However …

  3. How to compile a C program that uses math.h? - Ask Ubuntu

    gcc xyz.c -o xyz -lm Here, gcc is compiler command (compiler name) xyz.c is a source file name. -o is an option to specify the output file. xyz is the name of the output file. -lm is an option to link againt the …

  4. How do I install the gcc-13 aarch64 cross compiler on Ubuntu 22.04?

    In the case of gcc-13 and gcc-13-aarch64-linux-gnu, which are also made available in Ubuntu 23.04/23.10 official repositories, one might ponder the possibility of installing them from 23.04/23.10 …

  5. Cmake can't find gcc compiler - Ask Ubuntu

    Oct 20, 2021 · Tell CMake where to find the compiler by setting either the environment variable "CXX" or the CMake cache entry CMAKE_CXX_COMPILER to the full path to the compiler, or to the compiler …

  6. GNU C Compiler (gcc) version 12.2.0, was not found vmware

    Nov 28, 2023 · GNU C Compiler (gcc) version 12.3.0, was not found. If you installed it in a non-default path you can specify the path below. Otherwise refer to your distribution's documentation for …

  7. Ubuntu 22.04 default GCC version does not match version that built ...

    Jan 14, 2024 · On Ubuntu 22.04, the default GNU C compiler version is gcc-11. However, it appears that the latest default kernel version (6.5.0-14-generic as of writing this question) is built using gcc-12.

  8. gcc compiler can't find include file stdio.h - Ask Ubuntu

    Jan 22, 2023 · Packages from the Ubuntu repositories normally don't install files in /usr/local - normally, gcc would resolve #include <stdio.h> as /usr/include/stdio.h for example. Have you manually …

  9. gcc - Can I use a C/C++ compiler? - Ask Ubuntu

    Jan 9, 2013 · 2 gcc(GNU Compiler Collection) is one of the most widely used C compilers. Ubuntu uses gcc and is installed by default when you install it on your system. Type gcc <filename> and g++ …

  10. How do I use the latest GCC on Ubuntu?

    May 16, 2014 · For GCC 5.X or 6, the packages (and correspondingly, the commands) are just called gcc-5, gcc-6, etc. This is due to the change in GCC's version scheme, where 5.1 is the first GCC 5 …