🌐
RPMfind
rpmfind.net › linux › rpm2html › search.php
RPM resource gcc
The GNU Compiler Collection (GCC) provides a standard conforming and highly portable ISO C and ISO C++ compiler. http://gcc.gnu.org · https://gcc.gnu.org/ http://gcc.gnu.org/ Generated by rpm2html 1.6 ·
🌐
Pkgs.org
pkgs.org › download › gcc-c++
Gcc-c++ Download for Linux (rpm)
Download gcc-c++ linux packages for AlmaLinux, ALT Linux, Amazon Linux, CentOS, Fedora, Mageia, OpenMandriva, openSUSE, PCLinuxOS, Rocky Linux
🌐
RPMfind
rpmfind.net › linux › rpm2html › search.php
RPM resource gcc(x86-64)
The search service can find package by either name (apache), provides(webserver), absolute file names (/usr/bin/apache), binaries (gprof) or shared libraries (libXm.so.2) in standard path. It does not support multiple arguments yet · The System and Arch are optional added filters, for example ...
🌐
RPMfind
rpmfind.net › linux › rpm2html › search.php
RPM resource gcc-c (x86-64)
The search service can find package by either name (apache), provides(webserver), absolute file names (/usr/bin/apache), binaries (gprof) or shared libraries (libXm.so.2) in standard path. It does not support multiple arguments yet · The System and Arch are optional added filters, for example ...
🌐
RPMfind
rpmfind.net › linux › rpm2html › search.php
RPM resource gcc-c
The search service can find package by either name (apache), provides(webserver), absolute file names (/usr/bin/apache), binaries (gprof) or shared libraries (libXm.so.2) in standard path. It does not support multiple arguments yet · The System and Arch are optional added filters, for example ...
🌐
Red Hat
developers.redhat.com › articles › 2021 › 07 › 28 › write-toolchain-agnostic-rpm-spec-files-gcc-and-clang
Write toolchain-agnostic RPM spec files for GCC and Clang | Red Hat Developer
October 6, 2022 - This article looks at the necessary changes and best practices to allow a spec file to build with both GCC and Clang in a variety of cases. In the most basic case, nothing needs to be done. The specification file will automatically pick up whatever compiler the buildroot defines as the default. You can check the default by looking at the value of the %toolchain macro in the %build section: ... Similarly, rpm --eval "%toolchain" will print the value of the %toolchain macro.
🌐
nixCraft
cyberciti.biz › nixcraft › howto › centos › centos / rhel 7: install gcc (c and c++ compiler) and development tools
CentOS / RHEL 7: Install GCC (C and C++ Compiler) and Development Tools - nixCraft
April 5, 2024 - gcc-c++ (c++ compiler) gettext · libtool · make · patch · pkgconfig · redhat-rpm-config · rpm-build · rpm-sign · Open the Terminal app and type the following commands. Type the following yum command: # yum group list Sample outputs: Fig. 01: CentOS / RHEL 7: List Package Groups Command Another option: # yum group list ids Sample outputs: Loaded plugins: fastestmirror There is no installed groups file.
🌐
GNU
gcc.gnu.org
GCC, the GNU Compiler Collection - GNU Project
The GNU Compiler Collection includes front ends for C, C++, Objective-C, Objective-C++, Fortran, Ada, Go, D, Modula-2, COBOL, Rust, and Algol 68 as well as libraries for these languages (libstdc++,...). GCC was originally written as the compiler for the GNU operating system.
🌐
GitHub
github.com › CJLove › gcc-rpm
GitHub - CJLove/gcc-rpm: Build script/packaging for alternative gcc rpms on Fedora · GitHub
The rpm will install gcc into /opt/gccxyz. The motivation for this is to be able to have alternate gcc/g++ versions available in parallel with the "system" compiler, and to facilitate easy installation into Docker images
Author   CJLove
🌐
nixCraft
cyberciti.biz › nixcraft › howto › gnu c / c++ › where is my linux gnu c or gcc compilers are installed?
Where is My Linux GNU C or GCC Compilers Are Installed? - nixCraft
January 7, 2021 - when i giv the command “yum install gcc”, it says i need to be a root to perform this command… wht shld i do?? ... It means you need to google “you need to be a root to perform this command…”. ... I have centos installed, ls -l glibc-* -rw-r–r– 1 root root 4596084 Jul 25 15:31 glibc-2.5-34.i386.rpm -rw-r–r– 1 root root 5459594 Jul 25 15:31 glibc-2.5-34.i686.rpm -rw-r–r– 1 root root 17249412 Jul 25 15:31 glibc-common-2.5-34.i386.rpm
Find elsewhere
🌐
Experts Exchange
experts-exchange.com › questions › 29178462 › install-the-gcc-c-4-8-5-39-el7-x86-64-rpm-to-my-test-Centos-linux-box-make-it-to-emergency-mode-can't-start-GUI-anymore.html
Solved: install the gcc-c++4.8.5-39.el7.x86_64.rpm to my test Centos linux box make it to emergency mode, can't start GUI anymore. | Experts Exchange
April 11, 2020 - When we are executing at terminal output file descriptor => current terminal error file descriptor => current terminal sudo yum list gcc-c++ 2>&1 => redirect error to output file descriptor. after this grep gcc -E option => use regular expression search the line beginning with gcc => ^gcc Example: vi sample.txt => /^gcc => go to the line which is starting with gcc · $ sudo rpm -qa | grep -i gcc $ sudo rpm -qa | grep -i gcc [sudo] password for murugesandins: devtoolset-2-gcc-4.8.2-15.1.el5 libgcc-4.1.2-55.el5 devtoolset-1.1-gcc-c++-4.7.2-5.el5 gcc-c++-4.1.2-55.el5 gcc44-c++-4.4.7-11.el5_11 devtoolset-1.1-gcc-gfortran-4.7.2-5.el5 devtoolset-1.1-gcc-plugin-devel-4.7.2-5.el5 gcc-4.1.2-55.el5 devtoolset-1.1-gcc-4.7.2-5.el5 devtoolset-2-gcc-c++-4.8.2-15.1.el5 gcc44-4.4.7-11.el5_11 libgcc-4.1.2-55.el5
🌐
Rpm-packaging-guide
rpm-packaging-guide.github.io
RPM Packaging Guide
Name: cello Version: 1.0 Release: 1%{?dist} Summary: Hello World example implemented in C License: GPLv3+ URL: https://example.com/%{name} Source0: https://example.com/%{name}/release/%{name}-%{version}.tar.gz Patch0: cello-output-first-patch.patch · Next up we have BuildRequires and Requires, each of which define something that is required by the package. However, BuildRequires is to tell rpmbuild what is needed by your package at build time and Requires is what is needed by your package at run time. In this example we will need the gcc and make packages in order to perform the compilation build process.
🌐
Centos
git.centos.org › rpms › gcc › blob › c7 › f › SPECS › gcc.spec
Tree - rpms/gcc - CentOS Git server
The GCC plugin ABI is currently not stable, so plugins must be rebuilt any time GCC is updated. %if 0%{?_enable_debug_packages} �fine debug_package %{nil} %global __debug_package 1 %global __debug_install_post \ %{_rpmconfigdir}/find-debuginfo.sh %{?_missing_build_ids_terminate_build:--strict-build-id} %{?_find_debuginfo_opts} "%{_builddir}/gcc-%{version}-%{DATE}"\ %{_builddir}/gcc-%{version}-%{DATE}/split-debuginfo.sh\ %{nil} %package debuginfo Summary: Debug information for package %{name} Group: Development/Debug AutoReqProv: 0 Requires: gcc-base-debuginfo = %{version}-%{release} �scription debuginfo This package provides debug information for package %{name}. Debug information is useful when developing applications that use this package or when debugging this package.
🌐
RPMfind
rpmfind.net › linux › rpm2html › search.php
RPM resource gcc-cpp
The C preprocessor provides four separate facilities that you can use as you see fit: * Inclusion of header files. These are files of declarations that can be substituted into your program. * Macro expansion. You can define 'macros,' which are abbreviations for arbitrary fragments of C code, and then the C preprocessor will replace the macros with their definitions throughout the program.
🌐
Red Hat
developers.redhat.com › articles › 2025 › 04 › 16 › gcc-and-gcc-toolset-versions-rhel-explainer
GCC and gcc-toolset versions in RHEL: An explainer | Red Hat Developer
April 16, 2025 - This article breaks down how these work and explains the rationale behind Red Hat's approach. The system version of GCC (packaged as the gcc RPM) is the compiler that ships with RHEL at General Availability (GA) of a major release (e.g.
🌐
Stack Exchange
unix.stackexchange.com › questions › 469462 › how-to-build-compiled-rpm-of-gcc-8-2
rpmbuild - how to build compiled rpm of gcc 8.2 - Unix & Linux Stack Exchange
I use this process to build gcc, and I want the packaged rpm to do exactly like this, precompiled. ./configure --with-system-zlib --disable-multilib --enable-languages=c,c++ --prefix=/opt/gcc-8.2.0 make -j 12 make install
🌐
Fedora Project
src.fedoraproject.org › rpms › gcc › blob › rawhide › f › gcc.spec
Tree - rpms/gcc - src.fedoraproject.org
April 5, 2023 - OpenMP and OpenACC programs linked with -fopenmp will by default add GCN code into the binaries, which can be offloaded to AMD ROCm capable devices if available. %package plugin-annobin Summary: The annobin plugin for gcc, built by the installed version of gcc Requires: gcc = %{version}-%{release} %if %{build_annobin_plugin} BuildRequires: annobin-plugin-gcc >= 10.62, rpm-devel, binutils-devel, xz %endif �scription plugin-annobin This package adds a version of the annobin plugin for gcc.