repo/core/gcc
Owen Rafferty f1416d356f
gcc: 13.2.0
2023-07-28 15:51:28 -05:00
..
files gcc: mark c99 as executable 2021-07-02 12:12:00 +00:00
README repo: check-in readmes 2021-08-26 07:22:10 +03:00
build *: explicit DESTDIR 2023-03-05 17:34:06 -06:00
checksums gcc: 13.2.0 2023-07-28 15:51:28 -05:00
depends gcc: unbundle gmp, libmpc, mpfr 2022-10-17 14:16:16 +05:30
sources gcc: 13.2.0 2023-07-28 15:51:28 -05:00
version gcc: 13.2.0 2023-07-28 15:51:28 -05:00

README

gcc
________________________________________________________________________________

The GNU Compiler Collection (GCC) is an optimizing compiler produced by the GNU
Project supporting various programming languages, hardware architectures and
operating systems. The Free Software Foundation (FSF) distributes GCC as free
software under the GNU General Public License (GNU GPL). GCC is a key component
of the GNU toolchain and the standard compiler for most projects related to GNU
and the Linux kernel. With roughly 15 million lines of code in 2019, GCC is one
of the biggest open source programs in existence. It has played an important
role in the growth of free software, as both a tool and an example. [0]

Upstream: https://gcc.gnu.org/


[000] Index
________________________________________________________________________________

* Installation ........................................................... [001]
* Setup .................................................................. [002]
* Usage .................................................................. [003]
* Troubleshooting ........................................................ [004]
  * C/CXX Compiler Cannot Create Executables ............................. [005]
* References ............................................................. [006]


[001] Installation
________________________________________________________________________________

+------------------------------------------------------------------------------+
|                                                                              |
|  $ kiss b gcc                                                                |
|                                                                              |
+------------------------------------------------------------------------------+


[002] Setup
________________________________________________________________________________

GCC is the default compiler and is installed by default. No further setup should
be necessary short of compilation flags.


[003] Usage
________________________________________________________________________________

Refer to the manual pages and command help output.


[004] Troubleshooting
________________________________________________________________________________


--[005] C/CXX Compiler Cannot Create Executables -------------------------------

  This is almost always an error in your CFLAGS/CXXFLAGS. Ensure that you have
  used -ONUM (CAPITAL O) and not (lowercase o) or (zero 0). If this does not fix
  the issue, try building the package with a cleaner environment.

  +----------------------------------------------------------------------------+
  |                                                                            |
  |  $ CFLAGS= CXXFLAGS= LDFLAGS= kiss b pkg                                   |
  |                                                                            |
  +----------------------------------------------------------------------------+

  If the issue still persists, open a bug at $/kisslinux/repo


[006] References
________________________________________________________________________________

[0] https://en.wikipedia.org/wiki/GNU_Compiler_Collection