gcc

Description:The GNU Compiler Collection
Homepage:https://gcc.gnu.org/
Location:Portage
Legend:
  • + - stable
  • ~ - unstable
  • M - hardmask
alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86
14.0.0_pre20231001 diff - - - - - - - - - - - - -
14.0.0_pre20230924 diff - - - - - - - - - - - - -
14.0.0_pre20230917 diff - - - - - - - - - - - - -
14.0.0.9999 diff - - - - - - - - - - - - -
13.3.9999 diff - - - - - - - - - - - - -
13.2.1_p20230930 diff - - - - - - - - - - - - -
13.2.1_p20230923 diff - - - - - - - - - - - - -
13.2.1_p20230826 diff ~ + + + ~ ~ ~ ~ + ~ - + +
12.4.9999 diff - - - - - - - - - - - - -
12.3.1_p20230929 diff - - - - - - - - - - - - -
12.3.1_p20230922 diff - - - - - - - - - - - - -
12.3.1_p20230825 diff ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ - ~ ~
12.3.1_p20230526 diff ~ + + + ~ ~ ~ ~ + ~ - + +
11.5.9999 diff - - - - - - - - - - - - -
11.4.1_p20231005 diff - - - - - - - - - - - - -
11.4.1_p20230928 diff - - - - - - - - - - - - -
11.4.1_p20230921 diff - - - - - - - - - - - - -
11.4.1_p20230824 diff ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ - ~ ~
11.4.1_p20230622 diff ~ ~ ~ + ~ ~ ~ ~ ~ ~ - ~ +
11.3.1_p20230427 diff ~ + + + ~ ~ ~ + + ~ - + +
10.5.0 diff ~ ~ + ~ ~ ~ ~ ~ ~ ~ - ~ +
10.4.1_p20230426-r1 diff ~ + + + ~ ~ ~ + + ~ - + +
9.5.0 diff ~ + + + ~ ~ ~ + + ~ - + +
8.5.0-r1 ~ + + + ~ ~ ~ + + ~ - + +

USE flags

  • ada - Build the ADA language (GNAT) frontend
  • cet - Enable support for Intel Control Flow Enforcement Technology (CET). Only effective on amd64/x86. Only provides benefits on newer CPUs. For Intel, the CPU must be at least as new as Tiger Lake. For AMD, it must be at least as new as Zen 3. This is harmless on older CPUs, but provides no benefit either. When combined with USE=hardened, GCC will set -fcf-protection by default when building software. The effect is minimal on systems which do not support it, other than a possible small increase in codesize for the NOPs. The generated code is therefore compatible with i686 at the earliest.
  • custom-cflags - Build with user-specified CFLAGS (unsupported)
  • cxx - Build support for C++ (bindings, extra libraries, code generation, ...)
  • d - Enable support for the D programming language
  • debug - Enables GCC's 'checking' facility via --enable-checking=yes,extra,rtl. This adds checks to various compiler passes for integrity and input validation. This can help catch possible miscompilations early as well as latent bugs which could become real problems in future, but at the cost of slower compile times when using GCC. Unrelated to backtraces.
  • default-stack-clash-protection - Build packages with stack clash protection on by default as a hardening measure. This enables -fstack-clash-protection by default which protects against large memory allocations allowing stack smashing. May cause slightly increased codesize, but modern compilers have been adapted to optimize well for this case, as this mitigation is now quite common. See https://developers.redhat.com/blog/2020/05/22/stack-clash-mitigation-in-gcc-part-3 and https://www.qualys.com/2017/06/19/stack-clash/stack-clash.txt.
  • default-znow - Request full relocation on start from ld.so by default. This sets the -z,now (BIND_NOW) flag by default on all linker invocations. By resolving all dynamic symbols at application startup, parts of the program can be made read-only as a hardening measure. This is closely related to RELRO which is also separately enabled by default. In some applications with many unresolved symbols (heavily plugin based, for example), startup time may be impacted.
  • doc - Add extra documentation (API, Javadoc, etc). It is recommended to enable per package instead of globally
  • fixed-point - Enable fixed-point arithmetic support for MIPS targets in gcc (Warning: significantly increases compile time!)
  • fortran - Add support for fortran
  • go - Build the GCC Go language frontend.
  • graphite - Add support for the framework for loop optimizations based on a polyhedral intermediate representation
  • hardened - Activate default security enhancements for toolchain (gcc, glibc, binutils)
  • ieee-long-double - Use accelerated 128-bit IEEE long double ABI (ppc64le only)
  • jit - Enable libgccjit so other applications can embed gcc for Just-In-Time compilation.
  • libssp - Build SSP support into a dedicated library rather than use the code in the C library (DO NOT ENABLE THIS IF YOU DON'T KNOW WHAT IT DOES)
  • lto - Build using Link Time Optimizations (LTO). Note that GCC is always built with support for building other programs with LTO. This USE flag is for whether GCC itself is built and optimized with LTO.
  • modula2 - Build the GCC Modula-2 language frontend.
  • mpx - Enable support for Intel Memory Protection Extensions (MPX)
  • multilib - On 64bit systems, if you want to be able to compile 32bit and 64bit binaries
  • nls - Add Native Language Support (using gettext - GNU locale utilities)
  • nptl - Enable support for Native POSIX Threads Library, the new threading module (requires linux-2.6 or better usually)
  • objc - Build support for the Objective C code language
  • objc++ - Build support for the Objective C++ language
  • objc-gc - Build support for the Objective C code language Garbage Collector
  • openmp - Build support for the OpenMP (support parallel computing), requires >=sys-devel/gcc-4.2 built with USE="openmp"
  • pch - Enable precompiled header support for faster compilation at the expense of disk space and memory (>=sys-devel/gcc-3.4 only)
  • pgo - Build GCC using Profile Guided Optimization (PGO). GCC will build itself and then analyze the just-built binary and then rebuild itself using the data obtained from analysis of codepaths taken. It does not affect whether GCC itself supports PGO when building other software. This substantially increases the build time needed for building GCC itself.
  • pie - Build programs as Position Independent Executables (a security hardening technique)
  • rust - Build support for the Rust language, installs gccrs.
  • sanitize - Build support for various sanitizer functions (ASAN/TSAN/etc...) to find runtime problems in applications.
  • ssp - Build packages with stack smashing protection on by default
  • systemtap - enable systemtap static probe points
  • test - Enable dependencies and/or preparations necessary to run tests (usually controlled by FEATURES=test but can be toggled independently)
  • valgrind - Enable annotations for accuracy. May slow down runtime slightly. Safe to use even if not currently using dev-util/valgrind
  • vanilla - Do not add extra patches which change default behaviour; DO NOT USE THIS ON A GLOBAL SCALE as the severity of the meaning changes drastically
  • vtv - Build support for virtual table verification (a C++ hardening feature). This does not control whether GCC defaults to using VTV> Note that actually using VTV breaks ABI and hence the whole system must be built with -fvtable-verify.
  • zstd - Enable support for ZSTD compression

Also available in: Atom

Thank you!