Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

4949 lines
211KB

  1. This is gccinstall.info, produced by makeinfo version 6.5 from
  2. install.texi.
  3. Copyright (C) 1988-2020 Free Software Foundation, Inc.
  4. Permission is granted to copy, distribute and/or modify this document
  5. under the terms of the GNU Free Documentation License, Version 1.3 or
  6. any later version published by the Free Software Foundation; with no
  7. Invariant Sections, the Front-Cover texts being (a) (see below), and
  8. with the Back-Cover Texts being (b) (see below). A copy of the license
  9. is included in the section entitled "GNU Free Documentation License".
  10. (a) The FSF's Front-Cover Text is:
  11. A GNU Manual
  12. (b) The FSF's Back-Cover Text is:
  13. You have freedom to copy and modify this GNU Manual, like GNU
  14. software. Copies published by the Free Software Foundation raise funds
  15. for GNU development.
  16. INFO-DIR-SECTION Software development
  17. START-INFO-DIR-ENTRY
  18. * gccinstall: (gccinstall). Installing the GNU Compiler Collection.
  19. END-INFO-DIR-ENTRY
  20. Copyright (C) 1988-2020 Free Software Foundation, Inc.
  21. Permission is granted to copy, distribute and/or modify this document
  22. under the terms of the GNU Free Documentation License, Version 1.3 or
  23. any later version published by the Free Software Foundation; with no
  24. Invariant Sections, the Front-Cover texts being (a) (see below), and
  25. with the Back-Cover Texts being (b) (see below). A copy of the license
  26. is included in the section entitled "GNU Free Documentation License".
  27. (a) The FSF's Front-Cover Text is:
  28. A GNU Manual
  29. (b) The FSF's Back-Cover Text is:
  30. You have freedom to copy and modify this GNU Manual, like GNU
  31. software. Copies published by the Free Software Foundation raise funds
  32. for GNU development.
  33. 
  34. File: gccinstall.info, Node: Top, Up: (dir)
  35. * Menu:
  36. * Installing GCC:: This document describes the generic installation
  37. procedure for GCC as well as detailing some target
  38. specific installation instructions.
  39. * Specific:: Host/target specific installation notes for GCC.
  40. * Binaries:: Where to get pre-compiled binaries.
  41. * Old:: Old installation documentation.
  42. * GNU Free Documentation License:: How you can copy and share this manual.
  43. * Concept Index:: This index has two entries.
  44. 
  45. File: gccinstall.info, Node: Installing GCC, Next: Binaries, Up: Top
  46. 1 Installing GCC
  47. ****************
  48. The latest version of this document is always available at
  49. http://gcc.gnu.org/install/. It refers to the current development
  50. sources, instructions for specific released versions are included with
  51. the sources.
  52. This document describes the generic installation procedure for GCC as
  53. well as detailing some target specific installation instructions.
  54. GCC includes several components that previously were separate
  55. distributions with their own installation instructions. This document
  56. supersedes all package-specific installation instructions.
  57. _Before_ starting the build/install procedure please check the *note
  58. host/target specific installation notes: Specific. We recommend you
  59. browse the entire generic installation instructions before you proceed.
  60. Lists of successful builds for released versions of GCC are available
  61. at <http://gcc.gnu.org/buildstat.html>. These lists are updated as new
  62. information becomes available.
  63. The installation procedure itself is broken into five steps.
  64. * Menu:
  65. * Prerequisites::
  66. * Downloading the source::
  67. * Configuration::
  68. * Building::
  69. * Testing:: (optional)
  70. * Final install::
  71. Please note that GCC does not support 'make uninstall' and probably
  72. won't do so in the near future as this would open a can of worms.
  73. Instead, we suggest that you install GCC into a directory of its own and
  74. simply remove that directory when you do not need that specific version
  75. of GCC any longer, and, if shared libraries are installed there as well,
  76. no more binaries exist that use them.
  77. 
  78. File: gccinstall.info, Node: Prerequisites, Next: Downloading the source, Up: Installing GCC
  79. 2 Prerequisites
  80. ***************
  81. GCC requires that various tools and packages be available for use in the
  82. build procedure. Modifying GCC sources requires additional tools
  83. described below.
  84. Tools/packages necessary for building GCC
  85. =========================================
  86. ISO C++98 compiler
  87. Necessary to bootstrap GCC, although versions of GCC prior to 4.8
  88. also allow bootstrapping with a ISO C89 compiler and versions of
  89. GCC prior to 3.4 also allow bootstrapping with a traditional (K&R)
  90. C compiler.
  91. To build all languages in a cross-compiler or other configuration
  92. where 3-stage bootstrap is not performed, you need to start with an
  93. existing GCC binary (version 3.4 or later) because source code for
  94. language frontends other than C might use GCC extensions.
  95. Note that to bootstrap GCC with versions of GCC earlier than 3.4,
  96. you may need to use '--disable-stage1-checking', though
  97. bootstrapping the compiler with such earlier compilers is strongly
  98. discouraged.
  99. C standard library and headers
  100. In order to build GCC, the C standard library and headers must be
  101. present for all target variants for which target libraries will be
  102. built (and not only the variant of the host C++ compiler).
  103. This affects the popular 'x86_64-pc-linux-gnu' platform (among
  104. other multilib targets), for which 64-bit ('x86_64') and 32-bit
  105. ('i386') libc headers are usually packaged separately. If you do a
  106. build of a native compiler on 'x86_64-pc-linux-gnu', make sure you
  107. either have the 32-bit libc developer package properly installed
  108. (the exact name of the package depends on your distro) or you must
  109. build GCC as a 64-bit only compiler by configuring with the option
  110. '--disable-multilib'. Otherwise, you may encounter an error such
  111. as 'fatal error: gnu/stubs-32.h: No such file'
  112. GNAT
  113. In order to build GNAT, the Ada compiler, you need a working GNAT
  114. compiler (GCC version 4.7 or later).
  115. This includes GNAT tools such as 'gnatmake' and 'gnatlink', since
  116. the Ada front end is written in Ada and uses some GNAT-specific
  117. extensions.
  118. In order to build a cross compiler, it is strongly recommended to
  119. install the new compiler as native first, and then use it to build
  120. the cross compiler. Other native compiler versions may work but
  121. this is not guaranteed and will typically fail with hard to
  122. understand compilation errors during the build.
  123. Similarly, it is strongly recommended to use an older version of
  124. GNAT to build GNAT. More recent versions of GNAT than the version
  125. built are not guaranteed to work and will often fail during the
  126. build with compilation errors.
  127. Note that 'configure' does not test whether the GNAT installation
  128. works and has a sufficiently recent version; if too old a GNAT
  129. version is installed and '--enable-languages=ada' is used, the
  130. build will fail.
  131. 'ADA_INCLUDE_PATH' and 'ADA_OBJECT_PATH' environment variables must
  132. not be set when building the Ada compiler, the Ada tools, or the
  133. Ada runtime libraries. You can check that your build environment
  134. is clean by verifying that 'gnatls -v' lists only one explicit path
  135. in each section.
  136. A "working" POSIX compatible shell, or GNU bash
  137. Necessary when running 'configure' because some '/bin/sh' shells
  138. have bugs and may crash when configuring the target libraries. In
  139. other cases, '/bin/sh' or 'ksh' have disastrous corner-case
  140. performance problems. This can cause target 'configure' runs to
  141. literally take days to complete in some cases.
  142. So on some platforms '/bin/ksh' is sufficient, on others it isn't.
  143. See the host/target specific instructions for your platform, or use
  144. 'bash' to be sure. Then set 'CONFIG_SHELL' in your environment to
  145. your "good" shell prior to running 'configure'/'make'.
  146. 'zsh' is not a fully compliant POSIX shell and will not work when
  147. configuring GCC.
  148. A POSIX or SVR4 awk
  149. Necessary for creating some of the generated source files for GCC.
  150. If in doubt, use a recent GNU awk version, as some of the older
  151. ones are broken. GNU awk version 3.1.5 is known to work.
  152. GNU binutils
  153. Necessary in some circumstances, optional in others. See the
  154. host/target specific instructions for your platform for the exact
  155. requirements.
  156. gzip version 1.2.4 (or later) or
  157. bzip2 version 1.0.2 (or later)
  158. Necessary to uncompress GCC 'tar' files when source code is
  159. obtained via HTTPS mirror sites.
  160. GNU make version 3.80 (or later)
  161. You must have GNU make installed to build GCC.
  162. GNU tar version 1.14 (or later)
  163. Necessary (only on some platforms) to untar the source code. Many
  164. systems' 'tar' programs will also work, only try GNU 'tar' if you
  165. have problems.
  166. Perl version between 5.6.1 and 5.6.24
  167. Necessary when targeting Darwin, building 'libstdc++', and not
  168. using '--disable-symvers'. Necessary when targeting Solaris 2 with
  169. Solaris 'ld' and not using '--disable-symvers'.
  170. Necessary when regenerating 'Makefile' dependencies in libiberty.
  171. Necessary when regenerating 'libiberty/functions.texi'. Necessary
  172. when generating manpages from Texinfo manuals. Used by various
  173. scripts to generate some files included in the source repository
  174. (mainly Unicode-related and rarely changing) from source tables.
  175. Used by 'automake'.
  176. Several support libraries are necessary to build GCC, some are
  177. required, others optional. While any sufficiently new version of
  178. required tools usually work, library requirements are generally
  179. stricter. Newer versions may work in some cases, but it's safer to use
  180. the exact versions documented. We appreciate bug reports about problems
  181. with newer versions, though. If your OS vendor provides packages for
  182. the support libraries then using those packages may be the simplest way
  183. to install the libraries.
  184. GNU Multiple Precision Library (GMP) version 4.3.2 (or later)
  185. Necessary to build GCC. If a GMP source distribution is found in a
  186. subdirectory of your GCC sources named 'gmp', it will be built
  187. together with GCC. Alternatively, if GMP is already installed but
  188. it is not in your library search path, you will have to configure
  189. with the '--with-gmp' configure option. See also '--with-gmp-lib'
  190. and '--with-gmp-include'. The in-tree build is only supported with
  191. the GMP version that download_prerequisites installs.
  192. MPFR Library version 3.1.0 (or later)
  193. Necessary to build GCC. It can be downloaded from
  194. <https://www.mpfr.org>. If an MPFR source distribution is found in
  195. a subdirectory of your GCC sources named 'mpfr', it will be built
  196. together with GCC. Alternatively, if MPFR is already installed but
  197. it is not in your default library search path, the '--with-mpfr'
  198. configure option should be used. See also '--with-mpfr-lib' and
  199. '--with-mpfr-include'. The in-tree build is only supported with
  200. the MPFR version that download_prerequisites installs.
  201. MPC Library version 1.0.1 (or later)
  202. Necessary to build GCC. It can be downloaded from
  203. <http://www.multiprecision.org/mpc/>. If an MPC source
  204. distribution is found in a subdirectory of your GCC sources named
  205. 'mpc', it will be built together with GCC. Alternatively, if MPC is
  206. already installed but it is not in your default library search
  207. path, the '--with-mpc' configure option should be used. See also
  208. '--with-mpc-lib' and '--with-mpc-include'. The in-tree build is
  209. only supported with the MPC version that download_prerequisites
  210. installs.
  211. isl Library version 0.15 or later.
  212. Necessary to build GCC with the Graphite loop optimizations. It
  213. can be downloaded from
  214. <https://gcc.gnu.org/pub/gcc/infrastructure/>. If an isl source
  215. distribution is found in a subdirectory of your GCC sources named
  216. 'isl', it will be built together with GCC. Alternatively, the
  217. '--with-isl' configure option should be used if isl is not
  218. installed in your default library search path.
  219. zstd Library.
  220. Necessary to build GCC with zstd compression used for LTO bytecode.
  221. The library is searched in your default library patch search.
  222. Alternatively, the '--with-zstd' configure option should be used.
  223. Tools/packages necessary for modifying GCC
  224. ==========================================
  225. autoconf version 2.69
  226. GNU m4 version 1.4.6 (or later)
  227. Necessary when modifying 'configure.ac', 'aclocal.m4', etc. to
  228. regenerate 'configure' and 'config.in' files.
  229. automake version 1.15.1
  230. Necessary when modifying a 'Makefile.am' file to regenerate its
  231. associated 'Makefile.in'.
  232. Much of GCC does not use automake, so directly edit the
  233. 'Makefile.in' file. Specifically this applies to the 'gcc',
  234. 'intl', 'libcpp', 'libiberty', 'libobjc' directories as well as any
  235. of their subdirectories.
  236. For directories that use automake, GCC requires the latest release
  237. in the 1.15 series, which is currently 1.15.1. When regenerating a
  238. directory to a newer version, please update all the directories
  239. using an older 1.15 to the latest released version.
  240. gettext version 0.14.5 (or later)
  241. Needed to regenerate 'gcc.pot'.
  242. gperf version 2.7.2 (or later)
  243. Necessary when modifying 'gperf' input files, e.g.
  244. 'gcc/cp/cfns.gperf' to regenerate its associated header file, e.g.
  245. 'gcc/cp/cfns.h'.
  246. DejaGnu 1.4.4
  247. Expect
  248. Tcl
  249. Necessary to run the GCC testsuite; see the section on testing for
  250. details.
  251. autogen version 5.5.4 (or later) and
  252. guile version 1.4.1 (or later)
  253. Necessary to regenerate 'fixinc/fixincl.x' from
  254. 'fixinc/inclhack.def' and 'fixinc/*.tpl'.
  255. Necessary to run 'make check' for 'fixinc'.
  256. Necessary to regenerate the top level 'Makefile.in' file from
  257. 'Makefile.tpl' and 'Makefile.def'.
  258. Flex version 2.5.4 (or later)
  259. Necessary when modifying '*.l' files.
  260. Necessary to build GCC during development because the generated
  261. output files are not included in the version-controlled source
  262. repository. They are included in releases.
  263. Texinfo version 4.7 (or later)
  264. Necessary for running 'makeinfo' when modifying '*.texi' files to
  265. test your changes.
  266. Necessary for running 'make dvi' or 'make pdf' to create printable
  267. documentation in DVI or PDF format. Texinfo version 4.8 or later
  268. is required for 'make pdf'.
  269. Necessary to build GCC documentation during development because the
  270. generated output files are not included in the repository. They
  271. are included in releases.
  272. TeX (any working version)
  273. Necessary for running 'texi2dvi' and 'texi2pdf', which are used
  274. when running 'make dvi' or 'make pdf' to create DVI or PDF files,
  275. respectively.
  276. Sphinx version 1.0 (or later)
  277. Necessary to regenerate 'jit/docs/_build/texinfo' from the '.rst'
  278. files in the directories below 'jit/docs'.
  279. git (any version)
  280. SSH (any version)
  281. Necessary to access the source repository. Public releases and
  282. weekly snapshots of the development sources are also available via
  283. HTTPS.
  284. GNU diffutils version 2.7 (or later)
  285. Useful when submitting patches for the GCC source code.
  286. patch version 2.5.4 (or later)
  287. Necessary when applying patches, created with 'diff', to one's own
  288. sources.
  289. 
  290. File: gccinstall.info, Node: Downloading the source, Next: Configuration, Prev: Prerequisites, Up: Installing GCC
  291. 3 Downloading GCC
  292. *****************
  293. GCC is distributed via git and via HTTPS as tarballs compressed with
  294. 'gzip' or 'bzip2'.
  295. Please refer to the releases web page for information on how to
  296. obtain GCC.
  297. The source distribution includes the C, C++, Objective-C, Fortran,
  298. and Ada (in the case of GCC 3.1 and later) compilers, as well as runtime
  299. libraries for C++, Objective-C, and Fortran. For previous versions
  300. these were downloadable as separate components such as the core GCC
  301. distribution, which included the C language front end and shared
  302. components, and language-specific distributions including the language
  303. front end and the language runtime (where appropriate).
  304. If you also intend to build binutils (either to upgrade an existing
  305. installation or for use in place of the corresponding tools of your OS),
  306. unpack the binutils distribution either in the same directory or a
  307. separate one. In the latter case, add symbolic links to any components
  308. of the binutils you intend to build alongside the compiler ('bfd',
  309. 'binutils', 'gas', 'gprof', 'ld', 'opcodes', ...) to the directory
  310. containing the GCC sources.
  311. Likewise the GMP, MPFR and MPC libraries can be automatically built
  312. together with GCC. You may simply run the
  313. 'contrib/download_prerequisites' script in the GCC source directory to
  314. set up everything. Otherwise unpack the GMP, MPFR and/or MPC source
  315. distributions in the directory containing the GCC sources and rename
  316. their directories to 'gmp', 'mpfr' and 'mpc', respectively (or use
  317. symbolic links with the same name).
  318. 
  319. File: gccinstall.info, Node: Configuration, Next: Building, Prev: Downloading the source, Up: Installing GCC
  320. 4 Installing GCC: Configuration
  321. *******************************
  322. Like most GNU software, GCC must be configured before it can be built.
  323. This document describes the recommended configuration procedure for both
  324. native and cross targets.
  325. We use SRCDIR to refer to the toplevel source directory for GCC; we
  326. use OBJDIR to refer to the toplevel build/object directory.
  327. If you obtained the sources by cloning the repository, SRCDIR must
  328. refer to the top 'gcc' directory, the one where the 'MAINTAINERS' file
  329. can be found, and not its 'gcc' subdirectory, otherwise the build will
  330. fail.
  331. If either SRCDIR or OBJDIR is located on an automounted NFS file
  332. system, the shell's built-in 'pwd' command will return temporary
  333. pathnames. Using these can lead to various sorts of build problems. To
  334. avoid this issue, set the 'PWDCMD' environment variable to an
  335. automounter-aware 'pwd' command, e.g., 'pawd' or 'amq -w', during the
  336. configuration and build phases.
  337. First, we *highly* recommend that GCC be built into a separate
  338. directory from the sources which does *not* reside within the source
  339. tree. This is how we generally build GCC; building where SRCDIR ==
  340. OBJDIR should still work, but doesn't get extensive testing; building
  341. where OBJDIR is a subdirectory of SRCDIR is unsupported.
  342. If you have previously built GCC in the same directory for a
  343. different target machine, do 'make distclean' to delete all files that
  344. might be invalid. One of the files this deletes is 'Makefile'; if 'make
  345. distclean' complains that 'Makefile' does not exist or issues a message
  346. like "don't know how to make distclean" it probably means that the
  347. directory is already suitably clean. However, with the recommended
  348. method of building in a separate OBJDIR, you should simply use a
  349. different OBJDIR for each target.
  350. Second, when configuring a native system, either 'cc' or 'gcc' must
  351. be in your path or you must set 'CC' in your environment before running
  352. configure. Otherwise the configuration scripts may fail.
  353. To configure GCC:
  354. % mkdir OBJDIR
  355. % cd OBJDIR
  356. % SRCDIR/configure [OPTIONS] [TARGET]
  357. Distributor options
  358. ===================
  359. If you will be distributing binary versions of GCC, with modifications
  360. to the source code, you should use the options described in this section
  361. to make clear that your version contains modifications.
  362. '--with-pkgversion=VERSION'
  363. Specify a string that identifies your package. You may wish to
  364. include a build number or build date. This version string will be
  365. included in the output of 'gcc --version'. This suffix does not
  366. replace the default version string, only the 'GCC' part.
  367. The default value is 'GCC'.
  368. '--with-bugurl=URL'
  369. Specify the URL that users should visit if they wish to report a
  370. bug. You are of course welcome to forward bugs reported to you to
  371. the FSF, if you determine that they are not bugs in your
  372. modifications.
  373. The default value refers to the FSF's GCC bug tracker.
  374. '--with-documentation-root-url=URL'
  375. Specify the URL root that contains GCC option documentation. The
  376. URL should end with a '/' character.
  377. The default value is https://gcc.gnu.org/onlinedocs/.
  378. '--with-changes-root-url=URL'
  379. Specify the URL root that contains information about changes in GCC
  380. releases like 'gcc-VERSION/changes.html'. The URL should end with
  381. a '/' character.
  382. The default value is https://gcc.gnu.org/.
  383. Target specification
  384. ====================
  385. * GCC has code to correctly determine the correct value for TARGET
  386. for nearly all native systems. Therefore, we highly recommend you
  387. do not provide a configure target when configuring a native
  388. compiler.
  389. * TARGET must be specified as '--target=TARGET' when configuring a
  390. cross compiler; examples of valid targets would be m68k-elf,
  391. sh-elf, etc.
  392. * Specifying just TARGET instead of '--target=TARGET' implies that
  393. the host defaults to TARGET.
  394. Options specification
  395. =====================
  396. Use OPTIONS to override several configure time options for GCC. A list
  397. of supported OPTIONS follows; 'configure --help' may list other options,
  398. but those not listed below may not work and should not normally be used.
  399. Note that each '--enable' option has a corresponding '--disable'
  400. option and that each '--with' option has a corresponding '--without'
  401. option.
  402. '--prefix=DIRNAME'
  403. Specify the toplevel installation directory. This is the
  404. recommended way to install the tools into a directory other than
  405. the default. The toplevel installation directory defaults to
  406. '/usr/local'.
  407. We *highly* recommend against DIRNAME being the same or a
  408. subdirectory of OBJDIR or vice versa. If specifying a directory
  409. beneath a user's home directory tree, some shells will not expand
  410. DIRNAME correctly if it contains the '~' metacharacter; use '$HOME'
  411. instead.
  412. The following standard 'autoconf' options are supported. Normally
  413. you should not need to use these options.
  414. '--exec-prefix=DIRNAME'
  415. Specify the toplevel installation directory for
  416. architecture-dependent files. The default is 'PREFIX'.
  417. '--bindir=DIRNAME'
  418. Specify the installation directory for the executables called
  419. by users (such as 'gcc' and 'g++'). The default is
  420. 'EXEC-PREFIX/bin'.
  421. '--libdir=DIRNAME'
  422. Specify the installation directory for object code libraries
  423. and internal data files of GCC. The default is
  424. 'EXEC-PREFIX/lib'.
  425. '--libexecdir=DIRNAME'
  426. Specify the installation directory for internal executables of
  427. GCC. The default is 'EXEC-PREFIX/libexec'.
  428. '--with-slibdir=DIRNAME'
  429. Specify the installation directory for the shared libgcc
  430. library. The default is 'LIBDIR'.
  431. '--datarootdir=DIRNAME'
  432. Specify the root of the directory tree for read-only
  433. architecture-independent data files referenced by GCC. The
  434. default is 'PREFIX/share'.
  435. '--infodir=DIRNAME'
  436. Specify the installation directory for documentation in info
  437. format. The default is 'DATAROOTDIR/info'.
  438. '--datadir=DIRNAME'
  439. Specify the installation directory for some
  440. architecture-independent data files referenced by GCC. The
  441. default is 'DATAROOTDIR'.
  442. '--docdir=DIRNAME'
  443. Specify the installation directory for documentation files
  444. (other than Info) for GCC. The default is 'DATAROOTDIR/doc'.
  445. '--htmldir=DIRNAME'
  446. Specify the installation directory for HTML documentation
  447. files. The default is 'DOCDIR'.
  448. '--pdfdir=DIRNAME'
  449. Specify the installation directory for PDF documentation
  450. files. The default is 'DOCDIR'.
  451. '--mandir=DIRNAME'
  452. Specify the installation directory for manual pages. The
  453. default is 'DATAROOTDIR/man'. (Note that the manual pages are
  454. only extracts from the full GCC manuals, which are provided in
  455. Texinfo format. The manpages are derived by an automatic
  456. conversion process from parts of the full manual.)
  457. '--with-gxx-include-dir=DIRNAME'
  458. Specify the installation directory for G++ header files. The
  459. default depends on other configuration options, and differs
  460. between cross and native configurations.
  461. '--with-specs=SPECS'
  462. Specify additional command line driver SPECS. This can be
  463. useful if you need to turn on a non-standard feature by
  464. default without modifying the compiler's source code, for
  465. instance
  466. '--with-specs=%{!fcommon:%{!fno-common:-fno-common}}'. *Note
  467. Specifying subprocesses and the switches to pass to them:
  468. (gcc)Spec Files,
  469. '--program-prefix=PREFIX'
  470. GCC supports some transformations of the names of its programs when
  471. installing them. This option prepends PREFIX to the names of
  472. programs to install in BINDIR (see above). For example, specifying
  473. '--program-prefix=foo-' would result in 'gcc' being installed as
  474. '/usr/local/bin/foo-gcc'.
  475. '--program-suffix=SUFFIX'
  476. Appends SUFFIX to the names of programs to install in BINDIR (see
  477. above). For example, specifying '--program-suffix=-3.1' would
  478. result in 'gcc' being installed as '/usr/local/bin/gcc-3.1'.
  479. '--program-transform-name=PATTERN'
  480. Applies the 'sed' script PATTERN to be applied to the names of
  481. programs to install in BINDIR (see above). PATTERN has to consist
  482. of one or more basic 'sed' editing commands, separated by
  483. semicolons. For example, if you want the 'gcc' program name to be
  484. transformed to the installed program '/usr/local/bin/myowngcc' and
  485. the 'g++' program name to be transformed to
  486. '/usr/local/bin/gspecial++' without changing other program names,
  487. you could use the pattern
  488. '--program-transform-name='s/^gcc$/myowngcc/; s/^g++$/gspecial++/''
  489. to achieve this effect.
  490. All three options can be combined and used together, resulting in
  491. more complex conversion patterns. As a basic rule, PREFIX (and
  492. SUFFIX) are prepended (appended) before further transformations can
  493. happen with a special transformation script PATTERN.
  494. As currently implemented, this option only takes effect for native
  495. builds; cross compiler binaries' names are not transformed even
  496. when a transformation is explicitly asked for by one of these
  497. options.
  498. For native builds, some of the installed programs are also
  499. installed with the target alias in front of their name, as in
  500. 'i686-pc-linux-gnu-gcc'. All of the above transformations happen
  501. before the target alias is prepended to the name--so, specifying
  502. '--program-prefix=foo-' and 'program-suffix=-3.1', the resulting
  503. binary would be installed as
  504. '/usr/local/bin/i686-pc-linux-gnu-foo-gcc-3.1'.
  505. As a last shortcoming, none of the installed Ada programs are
  506. transformed yet, which will be fixed in some time.
  507. '--with-local-prefix=DIRNAME'
  508. Specify the installation directory for local include files. The
  509. default is '/usr/local'. Specify this option if you want the
  510. compiler to search directory 'DIRNAME/include' for locally
  511. installed header files _instead_ of '/usr/local/include'.
  512. You should specify '--with-local-prefix' *only* if your site has a
  513. different convention (not '/usr/local') for where to put
  514. site-specific files.
  515. The default value for '--with-local-prefix' is '/usr/local'
  516. regardless of the value of '--prefix'. Specifying '--prefix' has
  517. no effect on which directory GCC searches for local header files.
  518. This may seem counterintuitive, but actually it is logical.
  519. The purpose of '--prefix' is to specify where to _install GCC_. The
  520. local header files in '/usr/local/include'--if you put any in that
  521. directory--are not part of GCC. They are part of other
  522. programs--perhaps many others. (GCC installs its own header files
  523. in another directory which is based on the '--prefix' value.)
  524. Both the local-prefix include directory and the GCC-prefix include
  525. directory are part of GCC's "system include" directories. Although
  526. these two directories are not fixed, they need to be searched in
  527. the proper order for the correct processing of the include_next
  528. directive. The local-prefix include directory is searched before
  529. the GCC-prefix include directory. Another characteristic of system
  530. include directories is that pedantic warnings are turned off for
  531. headers in these directories.
  532. Some autoconf macros add '-I DIRECTORY' options to the compiler
  533. command line, to ensure that directories containing installed
  534. packages' headers are searched. When DIRECTORY is one of GCC's
  535. system include directories, GCC will ignore the option so that
  536. system directories continue to be processed in the correct order.
  537. This may result in a search order different from what was specified
  538. but the directory will still be searched.
  539. GCC automatically searches for ordinary libraries using
  540. 'GCC_EXEC_PREFIX'. Thus, when the same installation prefix is used
  541. for both GCC and packages, GCC will automatically search for both
  542. headers and libraries. This provides a configuration that is easy
  543. to use. GCC behaves in a manner similar to that when it is
  544. installed as a system compiler in '/usr'.
  545. Sites that need to install multiple versions of GCC may not want to
  546. use the above simple configuration. It is possible to use the
  547. '--program-prefix', '--program-suffix' and
  548. '--program-transform-name' options to install multiple versions
  549. into a single directory, but it may be simpler to use different
  550. prefixes and the '--with-local-prefix' option to specify the
  551. location of the site-specific files for each version. It will then
  552. be necessary for users to specify explicitly the location of local
  553. site libraries (e.g., with 'LIBRARY_PATH').
  554. The same value can be used for both '--with-local-prefix' and
  555. '--prefix' provided it is not '/usr'. This can be used to avoid
  556. the default search of '/usr/local/include'.
  557. *Do not* specify '/usr' as the '--with-local-prefix'! The
  558. directory you use for '--with-local-prefix' *must not* contain any
  559. of the system's standard header files. If it did contain them,
  560. certain programs would be miscompiled (including GNU Emacs, on
  561. certain targets), because this would override and nullify the
  562. header file corrections made by the 'fixincludes' script.
  563. Indications are that people who use this option use it based on
  564. mistaken ideas of what it is for. People use it as if it specified
  565. where to install part of GCC. Perhaps they make this assumption
  566. because installing GCC creates the directory.
  567. '--with-gcc-major-version-only'
  568. Specifies that GCC should use only the major number rather than
  569. MAJOR.MINOR.PATCHLEVEL in filesystem paths.
  570. '--with-native-system-header-dir=DIRNAME'
  571. Specifies that DIRNAME is the directory that contains native system
  572. header files, rather than '/usr/include'. This option is most
  573. useful if you are creating a compiler that should be isolated from
  574. the system as much as possible. It is most commonly used with the
  575. '--with-sysroot' option and will cause GCC to search DIRNAME inside
  576. the system root specified by that option.
  577. '--enable-shared[=PACKAGE[,...]]'
  578. Build shared versions of libraries, if shared libraries are
  579. supported on the target platform. Unlike GCC 2.95.x and earlier,
  580. shared libraries are enabled by default on all platforms that
  581. support shared libraries.
  582. If a list of packages is given as an argument, build shared
  583. libraries only for the listed packages. For other packages, only
  584. static libraries will be built. Package names currently recognized
  585. in the GCC tree are 'libgcc' (also known as 'gcc'), 'libstdc++'
  586. (not 'libstdc++-v3'), 'libffi', 'zlib', 'boehm-gc', 'ada',
  587. 'libada', 'libgo', 'libobjc', and 'libphobos'. Note 'libiberty'
  588. does not support shared libraries at all.
  589. Use '--disable-shared' to build only static libraries. Note that
  590. '--disable-shared' does not accept a list of package names as
  591. argument, only '--enable-shared' does.
  592. Contrast with '--enable-host-shared', which affects _host_ code.
  593. '--enable-host-shared'
  594. Specify that the _host_ code should be built into
  595. position-independent machine code (with -fPIC), allowing it to be
  596. used within shared libraries, but yielding a slightly slower
  597. compiler.
  598. This option is required when building the libgccjit.so library.
  599. Contrast with '--enable-shared', which affects _target_ libraries.
  600. '--with-gnu-as'
  601. Specify that the compiler should assume that the assembler it finds
  602. is the GNU assembler. However, this does not modify the rules to
  603. find an assembler and will result in confusion if the assembler
  604. found is not actually the GNU assembler. (Confusion may also
  605. result if the compiler finds the GNU assembler but has not been
  606. configured with '--with-gnu-as'.) If you have more than one
  607. assembler installed on your system, you may want to use this option
  608. in connection with '--with-as=PATHNAME' or
  609. '--with-build-time-tools=PATHNAME'.
  610. The following systems are the only ones where it makes a difference
  611. whether you use the GNU assembler. On any other system,
  612. '--with-gnu-as' has no effect.
  613. * 'hppa1.0-ANY-ANY'
  614. * 'hppa1.1-ANY-ANY'
  615. * 'sparc-sun-solaris2.ANY'
  616. * 'sparc64-ANY-solaris2.ANY'
  617. '--with-as=PATHNAME'
  618. Specify that the compiler should use the assembler pointed to by
  619. PATHNAME, rather than the one found by the standard rules to find
  620. an assembler, which are:
  621. * Unless GCC is being built with a cross compiler, check the
  622. 'LIBEXEC/gcc/TARGET/VERSION' directory. LIBEXEC defaults to
  623. 'EXEC-PREFIX/libexec'; EXEC-PREFIX defaults to PREFIX, which
  624. defaults to '/usr/local' unless overridden by the
  625. '--prefix=PATHNAME' switch described above. TARGET is the
  626. target system triple, such as 'sparc-sun-solaris2.7', and
  627. VERSION denotes the GCC version, such as 3.0.
  628. * If the target system is the same that you are building on,
  629. check operating system specific directories (e.g.
  630. '/usr/ccs/bin' on Solaris 2).
  631. * Check in the 'PATH' for a tool whose name is prefixed by the
  632. target system triple.
  633. * Check in the 'PATH' for a tool whose name is not prefixed by
  634. the target system triple, if the host and target system triple
  635. are the same (in other words, we use a host tool if it can be
  636. used for the target as well).
  637. You may want to use '--with-as' if no assembler is installed in the
  638. directories listed above, or if you have multiple assemblers
  639. installed and want to choose one that is not found by the above
  640. rules.
  641. '--with-gnu-ld'
  642. Same as '--with-gnu-as' but for the linker.
  643. '--with-ld=PATHNAME'
  644. Same as '--with-as' but for the linker.
  645. '--with-stabs'
  646. Specify that stabs debugging information should be used instead of
  647. whatever format the host normally uses. Normally GCC uses the same
  648. debug format as the host system.
  649. '--with-tls=DIALECT'
  650. Specify the default TLS dialect, for systems were there is a
  651. choice. For ARM targets, possible values for DIALECT are 'gnu' or
  652. 'gnu2', which select between the original GNU dialect and the GNU
  653. TLS descriptor-based dialect.
  654. '--enable-multiarch'
  655. Specify whether to enable or disable multiarch support. The
  656. default is to check for glibc start files in a multiarch location,
  657. and enable it if the files are found. The auto detection is
  658. enabled for native builds, and for cross builds configured with
  659. '--with-sysroot', and without '--with-native-system-header-dir'.
  660. More documentation about multiarch can be found at
  661. <https://wiki.debian.org/Multiarch>.
  662. '--enable-sjlj-exceptions'
  663. Force use of the 'setjmp'/'longjmp'-based scheme for exceptions.
  664. 'configure' ordinarily picks the correct value based on the
  665. platform. Only use this option if you are sure you need a
  666. different setting.
  667. '--enable-vtable-verify'
  668. Specify whether to enable or disable the vtable verification
  669. feature. Enabling this feature causes libstdc++ to be built with
  670. its virtual calls in verifiable mode. This means that, when linked
  671. with libvtv, every virtual call in libstdc++ will verify the vtable
  672. pointer through which the call will be made before actually making
  673. the call. If not linked with libvtv, the verifier will call stub
  674. functions (in libstdc++ itself) and do nothing. If vtable
  675. verification is disabled, then libstdc++ is not built with its
  676. virtual calls in verifiable mode at all. However the libvtv
  677. library will still be built (see '--disable-libvtv' to turn off
  678. building libvtv). '--disable-vtable-verify' is the default.
  679. '--disable-gcov'
  680. Specify that the run-time library used for coverage analysis and
  681. associated host tools should not be built.
  682. '--disable-multilib'
  683. Specify that multiple target libraries to support different target
  684. variants, calling conventions, etc. should not be built. The
  685. default is to build a predefined set of them.
  686. Some targets provide finer-grained control over which multilibs are
  687. built (e.g., '--disable-softfloat'):
  688. 'arm-*-*'
  689. fpu, 26bit, underscore, interwork, biendian, nofmult.
  690. 'm68*-*-*'
  691. softfloat, m68881, m68000, m68020.
  692. 'mips*-*-*'
  693. single-float, biendian, softfloat.
  694. 'msp430-*-*'
  695. no-exceptions
  696. 'powerpc*-*-*, rs6000*-*-*'
  697. aix64, pthread, softfloat, powercpu, powerpccpu, powerpcos,
  698. biendian, sysv, aix.
  699. '--with-multilib-list=LIST'
  700. '--without-multilib-list'
  701. Specify what multilibs to build. LIST is a comma separated list of
  702. values, possibly consisting of a single value. Currently only
  703. implemented for aarch64*-*-*, arm*-*-*, riscv*-*-*, sh*-*-* and
  704. x86-64-*-linux*. The accepted values and meaning for each target
  705. is given below.
  706. 'aarch64*-*-*'
  707. LIST is a comma separated list of 'ilp32', and 'lp64' to
  708. enable ILP32 and LP64 run-time libraries, respectively. If
  709. LIST is empty, then there will be no multilibs and only the
  710. default run-time library will be built. If LIST is 'default'
  711. or -with-multilib-list= is not specified, then the default set
  712. of libraries is selected based on the value of '--target'.
  713. 'arm*-*-*'
  714. LIST is a comma separated list of 'aprofile' and 'rmprofile'
  715. to build multilibs for A or R and M architecture profiles
  716. respectively. Note that, due to some limitation of the
  717. current multilib framework, using the combined
  718. 'aprofile,rmprofile' multilibs selects in some cases a less
  719. optimal multilib than when using the multilib profile for the
  720. architecture targetted. The special value 'default' is also
  721. accepted and is equivalent to omitting the option, i.e., only
  722. the default run-time library will be enabled.
  723. LIST may instead contain '@name', to use the multilib
  724. configuration Makefile fragment 'name' in 'gcc/config/arm' in
  725. the source tree (it is part of the corresponding sources,
  726. after all). It is recommended, but not required, that files
  727. used for this purpose to be named starting with 't-ml-', to
  728. make their intended purpose self-evident, in line with GCC
  729. conventions. Such files enable custom, user-chosen multilib
  730. lists to be configured. Whether multiple such files can be
  731. used together depends on the contents of the supplied files.
  732. See 'gcc/config/arm/t-multilib' and its supplementary
  733. 'gcc/config/arm/t-*profile' files for an example of what such
  734. Makefile fragments might look like for this version of GCC.
  735. The macros expected to be defined in these fragments are not
  736. stable across GCC releases, so make sure they define the
  737. 'MULTILIB'-related macros expected by the version of GCC you
  738. are building. *Note Target Makefile Fragments: (gccint)Target
  739. Fragment.
  740. The table below gives the combination of ISAs, architectures,
  741. FPUs and floating-point ABIs for which multilibs are built for
  742. each predefined profile. The union of these options is
  743. considered when specifying both 'aprofile' and 'rmprofile'.
  744. Option aprofile rmprofile
  745. ISAs '-marm' and '-mthumb'
  746. '-mthumb'
  747. Architecturesdefault default architecture
  748. architecture '-march=armv6s-m'
  749. '-march=armv7-a' '-march=armv7-m'
  750. '-march=armv7ve' '-march=armv7e-m'
  751. '-march=armv8-a' '-march=armv8-m.base'
  752. '-march=armv8-m.main'
  753. '-march=armv7'
  754. FPUs none none
  755. '-mfpu=vfpv3-d16' '-mfpu=vfpv3-d16'
  756. '-mfpu=neon' '-mfpu=fpv4-sp-d16'
  757. '-mfpu=vfpv4-d16' '-mfpu=fpv5-sp-d16'
  758. '-mfpu=neon-vfpv4' '-mfpu=fpv5-d16'
  759. '-mfpu=neon-fp-armv8'
  760. floating-point'-mfloat-abi=soft' '-mfloat-abi=soft'
  761. ABIs '-mfloat-abi=softfp' '-mfloat-abi=softfp'
  762. '-mfloat-abi=hard' '-mfloat-abi=hard'
  763. 'riscv*-*-*'
  764. LIST is a single ABI name. The target architecture must be
  765. either 'rv32gc' or 'rv64gc'. This will build a single
  766. multilib for the specified architecture and ABI pair. If
  767. '--with-multilib-list' is not given, then a default set of
  768. multilibs is selected based on the value of '--target'. This
  769. is usually a large set of multilibs.
  770. 'sh*-*-*'
  771. LIST is a comma separated list of CPU names. These must be of
  772. the form 'sh*' or 'm*' (in which case they match the compiler
  773. option for that processor). The list should not contain any
  774. endian options - these are handled by '--with-endian'.
  775. If LIST is empty, then there will be no multilibs for extra
  776. processors. The multilib for the secondary endian remains
  777. enabled.
  778. As a special case, if an entry in the list starts with a '!'
  779. (exclamation point), then it is added to the list of excluded
  780. multilibs. Entries of this sort should be compatible with
  781. 'MULTILIB_EXCLUDES' (once the leading '!' has been stripped).
  782. If '--with-multilib-list' is not given, then a default set of
  783. multilibs is selected based on the value of '--target'. This
  784. is usually the complete set of libraries, but some targets
  785. imply a more specialized subset.
  786. Example 1: to configure a compiler for SH4A only, but
  787. supporting both endians, with little endian being the default:
  788. --with-cpu=sh4a --with-endian=little,big --with-multilib-list=
  789. Example 2: to configure a compiler for both SH4A and
  790. SH4AL-DSP, but with only little endian SH4AL:
  791. --with-cpu=sh4a --with-endian=little,big \
  792. --with-multilib-list=sh4al,!mb/m4al
  793. 'x86-64-*-linux*'
  794. LIST is a comma separated list of 'm32', 'm64' and 'mx32' to
  795. enable 32-bit, 64-bit and x32 run-time libraries,
  796. respectively. If LIST is empty, then there will be no
  797. multilibs and only the default run-time library will be
  798. enabled.
  799. If '--with-multilib-list' is not given, then only 32-bit and
  800. 64-bit run-time libraries will be enabled.
  801. '--with-endian=ENDIANS'
  802. Specify what endians to use. Currently only implemented for
  803. sh*-*-*.
  804. ENDIANS may be one of the following:
  805. 'big'
  806. Use big endian exclusively.
  807. 'little'
  808. Use little endian exclusively.
  809. 'big,little'
  810. Use big endian by default. Provide a multilib for little
  811. endian.
  812. 'little,big'
  813. Use little endian by default. Provide a multilib for big
  814. endian.
  815. '--enable-threads'
  816. Specify that the target supports threads. This affects the
  817. Objective-C compiler and runtime library, and exception handling
  818. for other languages like C++. On some systems, this is the
  819. default.
  820. In general, the best (and, in many cases, the only known) threading
  821. model available will be configured for use. Beware that on some
  822. systems, GCC has not been taught what threading models are
  823. generally available for the system. In this case,
  824. '--enable-threads' is an alias for '--enable-threads=single'.
  825. '--disable-threads'
  826. Specify that threading support should be disabled for the system.
  827. This is an alias for '--enable-threads=single'.
  828. '--enable-threads=LIB'
  829. Specify that LIB is the thread support library. This affects the
  830. Objective-C compiler and runtime library, and exception handling
  831. for other languages like C++. The possibilities for LIB are:
  832. 'aix'
  833. AIX thread support.
  834. 'dce'
  835. DCE thread support.
  836. 'lynx'
  837. LynxOS thread support.
  838. 'mipssde'
  839. MIPS SDE thread support.
  840. 'no'
  841. This is an alias for 'single'.
  842. 'posix'
  843. Generic POSIX/Unix98 thread support.
  844. 'rtems'
  845. RTEMS thread support.
  846. 'single'
  847. Disable thread support, should work for all platforms.
  848. 'tpf'
  849. TPF thread support.
  850. 'vxworks'
  851. VxWorks thread support.
  852. 'win32'
  853. Microsoft Win32 API thread support.
  854. '--enable-tls'
  855. Specify that the target supports TLS (Thread Local Storage).
  856. Usually configure can correctly determine if TLS is supported. In
  857. cases where it guesses incorrectly, TLS can be explicitly enabled
  858. or disabled with '--enable-tls' or '--disable-tls'. This can
  859. happen if the assembler supports TLS but the C library does not, or
  860. if the assumptions made by the configure test are incorrect.
  861. '--disable-tls'
  862. Specify that the target does not support TLS. This is an alias for
  863. '--enable-tls=no'.
  864. '--disable-tm-clone-registry'
  865. Disable TM clone registry in libgcc. It is enabled in libgcc by
  866. default. This option helps to reduce code size for embedded
  867. targets which do not use transactional memory.
  868. '--with-cpu=CPU'
  869. '--with-cpu-32=CPU'
  870. '--with-cpu-64=CPU'
  871. Specify which cpu variant the compiler should generate code for by
  872. default. CPU will be used as the default value of the '-mcpu='
  873. switch. This option is only supported on some targets, including
  874. ARC, ARM, i386, M68k, PowerPC, and SPARC. It is mandatory for ARC.
  875. The '--with-cpu-32' and '--with-cpu-64' options specify separate
  876. default CPUs for 32-bit and 64-bit modes; these options are only
  877. supported for i386, x86-64, PowerPC, and SPARC.
  878. '--with-schedule=CPU'
  879. '--with-arch=CPU'
  880. '--with-arch-32=CPU'
  881. '--with-arch-64=CPU'
  882. '--with-tune=CPU'
  883. '--with-tune-32=CPU'
  884. '--with-tune-64=CPU'
  885. '--with-abi=ABI'
  886. '--with-fpu=TYPE'
  887. '--with-float=TYPE'
  888. These configure options provide default values for the
  889. '-mschedule=', '-march=', '-mtune=', '-mabi=', and '-mfpu=' options
  890. and for '-mhard-float' or '-msoft-float'. As with '--with-cpu',
  891. which switches will be accepted and acceptable values of the
  892. arguments depend on the target.
  893. '--with-mode=MODE'
  894. Specify if the compiler should default to '-marm' or '-mthumb'.
  895. This option is only supported on ARM targets.
  896. '--with-stack-offset=NUM'
  897. This option sets the default for the -mstack-offset=NUM option, and
  898. will thus generally also control the setting of this option for
  899. libraries. This option is only supported on Epiphany targets.
  900. '--with-fpmath=ISA'
  901. This options sets '-mfpmath=sse' by default and specifies the
  902. default ISA for floating-point arithmetics. You can select either
  903. 'sse' which enables '-msse2' or 'avx' which enables '-mavx' by
  904. default. This option is only supported on i386 and x86-64 targets.
  905. '--with-fp-32=MODE'
  906. On MIPS targets, set the default value for the '-mfp' option when
  907. using the o32 ABI. The possibilities for MODE are:
  908. '32'
  909. Use the o32 FP32 ABI extension, as with the '-mfp32'
  910. command-line option.
  911. 'xx'
  912. Use the o32 FPXX ABI extension, as with the '-mfpxx'
  913. command-line option.
  914. '64'
  915. Use the o32 FP64 ABI extension, as with the '-mfp64'
  916. command-line option.
  917. In the absence of this configuration option the default is to use
  918. the o32 FP32 ABI extension.
  919. '--with-odd-spreg-32'
  920. On MIPS targets, set the '-modd-spreg' option by default when using
  921. the o32 ABI.
  922. '--without-odd-spreg-32'
  923. On MIPS targets, set the '-mno-odd-spreg' option by default when
  924. using the o32 ABI. This is normally used in conjunction with
  925. '--with-fp-32=64' in order to target the o32 FP64A ABI extension.
  926. '--with-nan=ENCODING'
  927. On MIPS targets, set the default encoding convention to use for the
  928. special not-a-number (NaN) IEEE 754 floating-point data. The
  929. possibilities for ENCODING are:
  930. 'legacy'
  931. Use the legacy encoding, as with the '-mnan=legacy'
  932. command-line option.
  933. '2008'
  934. Use the 754-2008 encoding, as with the '-mnan=2008'
  935. command-line option.
  936. To use this configuration option you must have an assembler version
  937. installed that supports the '-mnan=' command-line option too. In
  938. the absence of this configuration option the default convention is
  939. the legacy encoding, as when neither of the '-mnan=2008' and
  940. '-mnan=legacy' command-line options has been used.
  941. '--with-divide=TYPE'
  942. Specify how the compiler should generate code for checking for
  943. division by zero. This option is only supported on the MIPS
  944. target. The possibilities for TYPE are:
  945. 'traps'
  946. Division by zero checks use conditional traps (this is the
  947. default on systems that support conditional traps).
  948. 'breaks'
  949. Division by zero checks use the break instruction.
  950. '--with-llsc'
  951. On MIPS targets, make '-mllsc' the default when no '-mno-llsc'
  952. option is passed. This is the default for Linux-based targets, as
  953. the kernel will emulate them if the ISA does not provide them.
  954. '--without-llsc'
  955. On MIPS targets, make '-mno-llsc' the default when no '-mllsc'
  956. option is passed.
  957. '--with-synci'
  958. On MIPS targets, make '-msynci' the default when no '-mno-synci'
  959. option is passed.
  960. '--without-synci'
  961. On MIPS targets, make '-mno-synci' the default when no '-msynci'
  962. option is passed. This is the default.
  963. '--with-lxc1-sxc1'
  964. On MIPS targets, make '-mlxc1-sxc1' the default when no
  965. '-mno-lxc1-sxc1' option is passed. This is the default.
  966. '--without-lxc1-sxc1'
  967. On MIPS targets, make '-mno-lxc1-sxc1' the default when no
  968. '-mlxc1-sxc1' option is passed. The indexed load/store
  969. instructions are not directly a problem but can lead to unexpected
  970. behaviour when deployed in an application intended for a 32-bit
  971. address space but run on a 64-bit processor. The issue is seen
  972. because all known MIPS 64-bit Linux kernels execute o32 and n32
  973. applications with 64-bit addressing enabled which affects the
  974. overflow behaviour of the indexed addressing mode. GCC will assume
  975. that ordinary 32-bit arithmetic overflow behaviour is the same
  976. whether performed as an 'addu' instruction or as part of the
  977. address calculation in 'lwxc1' type instructions. This assumption
  978. holds true in a pure 32-bit environment and can hold true in a
  979. 64-bit environment if the address space is accurately set to be
  980. 32-bit for o32 and n32.
  981. '--with-madd4'
  982. On MIPS targets, make '-mmadd4' the default when no '-mno-madd4'
  983. option is passed. This is the default.
  984. '--without-madd4'
  985. On MIPS targets, make '-mno-madd4' the default when no '-mmadd4'
  986. option is passed. The 'madd4' instruction family can be
  987. problematic when targeting a combination of cores that implement
  988. these instructions differently. There are two known cores that
  989. implement these as fused operations instead of unfused (where
  990. unfused is normally expected). Disabling these instructions is the
  991. only way to ensure compatible code is generated; this will incur a
  992. performance penalty.
  993. '--with-mips-plt'
  994. On MIPS targets, make use of copy relocations and PLTs. These
  995. features are extensions to the traditional SVR4-based MIPS ABIs and
  996. require support from GNU binutils and the runtime C library.
  997. '--with-stack-clash-protection-guard-size=SIZE'
  998. On certain targets this option sets the default stack clash
  999. protection guard size as a power of two in bytes. On AArch64 SIZE
  1000. is required to be either 12 (4KB) or 16 (64KB).
  1001. '--enable-__cxa_atexit'
  1002. Define if you want to use __cxa_atexit, rather than atexit, to
  1003. register C++ destructors for local statics and global objects.
  1004. This is essential for fully standards-compliant handling of
  1005. destructors, but requires __cxa_atexit in libc. This option is
  1006. currently only available on systems with GNU libc. When enabled,
  1007. this will cause '-fuse-cxa-atexit' to be passed by default.
  1008. '--enable-gnu-indirect-function'
  1009. Define if you want to enable the 'ifunc' attribute. This option is
  1010. currently only available on systems with GNU libc on certain
  1011. targets.
  1012. '--enable-target-optspace'
  1013. Specify that target libraries should be optimized for code space
  1014. instead of code speed. This is the default for the m32r platform.
  1015. '--with-cpp-install-dir=DIRNAME'
  1016. Specify that the user visible 'cpp' program should be installed in
  1017. 'PREFIX/DIRNAME/cpp', in addition to BINDIR.
  1018. '--enable-comdat'
  1019. Enable COMDAT group support. This is primarily used to override
  1020. the automatically detected value.
  1021. '--enable-initfini-array'
  1022. Force the use of sections '.init_array' and '.fini_array' (instead
  1023. of '.init' and '.fini') for constructors and destructors. Option
  1024. '--disable-initfini-array' has the opposite effect. If neither
  1025. option is specified, the configure script will try to guess whether
  1026. the '.init_array' and '.fini_array' sections are supported and, if
  1027. they are, use them.
  1028. '--enable-link-mutex'
  1029. When building GCC, use a mutex to avoid linking the compilers for
  1030. multiple languages at the same time, to avoid thrashing on build
  1031. systems with limited free memory. The default is not to use such a
  1032. mutex.
  1033. '--enable-maintainer-mode'
  1034. The build rules that regenerate the Autoconf and Automake output
  1035. files as well as the GCC master message catalog 'gcc.pot' are
  1036. normally disabled. This is because it can only be rebuilt if the
  1037. complete source tree is present. If you have changed the sources
  1038. and want to rebuild the catalog, configuring with
  1039. '--enable-maintainer-mode' will enable this. Note that you need a
  1040. recent version of the 'gettext' tools to do so.
  1041. '--disable-bootstrap'
  1042. For a native build, the default configuration is to perform a
  1043. 3-stage bootstrap of the compiler when 'make' is invoked, testing
  1044. that GCC can compile itself correctly. If you want to disable this
  1045. process, you can configure with '--disable-bootstrap'.
  1046. '--enable-bootstrap'
  1047. In special cases, you may want to perform a 3-stage build even if
  1048. the target and host triplets are different. This is possible when
  1049. the host can run code compiled for the target (e.g. host is
  1050. i686-linux, target is i486-linux). Starting from GCC 4.2, to do
  1051. this you have to configure explicitly with '--enable-bootstrap'.
  1052. '--enable-generated-files-in-srcdir'
  1053. Neither the .c and .h files that are generated from Bison and flex
  1054. nor the info manuals and man pages that are built from the .texi
  1055. files are present in the repository development tree. When
  1056. building GCC from that development tree, or from one of our
  1057. snapshots, those generated files are placed in your build
  1058. directory, which allows for the source to be in a readonly
  1059. directory.
  1060. If you configure with '--enable-generated-files-in-srcdir' then
  1061. those generated files will go into the source directory. This is
  1062. mainly intended for generating release or prerelease tarballs of
  1063. the GCC sources, since it is not a requirement that the users of
  1064. source releases to have flex, Bison, or makeinfo.
  1065. '--enable-version-specific-runtime-libs'
  1066. Specify that runtime libraries should be installed in the compiler
  1067. specific subdirectory ('LIBDIR/gcc') rather than the usual places.
  1068. In addition, 'libstdc++''s include files will be installed into
  1069. 'LIBDIR' unless you overruled it by using
  1070. '--with-gxx-include-dir=DIRNAME'. Using this option is
  1071. particularly useful if you intend to use several versions of GCC in
  1072. parallel. The default is 'yes' for 'libada', and 'no' for the
  1073. remaining libraries.
  1074. '--with-aix-soname='aix', 'svr4' or 'both''
  1075. Traditional AIX shared library versioning (versioned 'Shared
  1076. Object' files as members of unversioned 'Archive Library' files
  1077. named 'lib.a') causes numerous headaches for package managers.
  1078. However, 'Import Files' as members of 'Archive Library' files allow
  1079. for *filename-based versioning* of shared libraries as seen on
  1080. Linux/SVR4, where this is called the "SONAME". But as they prevent
  1081. static linking, 'Import Files' may be used with 'Runtime Linking'
  1082. only, where the linker does search for 'libNAME.so' before
  1083. 'libNAME.a' library filenames with the '-lNAME' linker flag.
  1084. For detailed information please refer to the AIX ld Command
  1085. reference.
  1086. As long as shared library creation is enabled, upon:
  1087. '--with-aix-soname=aix'
  1088. '--with-aix-soname=both'
  1089. A (traditional AIX) 'Shared Archive Library' file is created:
  1090. * using the 'libNAME.a' filename scheme
  1091. * with the 'Shared Object' file as archive member named
  1092. 'libNAME.so.V' (except for 'libgcc_s', where the 'Shared
  1093. Object' file is named 'shr.o' for backwards
  1094. compatibility), which
  1095. - is used for runtime loading from inside the
  1096. 'libNAME.a' file
  1097. - is used for dynamic loading via
  1098. 'dlopen("libNAME.a(libNAME.so.V)", RTLD_MEMBER)'
  1099. - is used for shared linking
  1100. - is used for static linking, so no separate 'Static
  1101. Archive Library' file is needed
  1102. '--with-aix-soname=both'
  1103. '--with-aix-soname=svr4'
  1104. A (second) 'Shared Archive Library' file is created:
  1105. * using the 'libNAME.so.V' filename scheme
  1106. * with the 'Shared Object' file as archive member named
  1107. 'shr.o', which
  1108. - is created with the '-G linker flag'
  1109. - has the 'F_LOADONLY' flag set
  1110. - is used for runtime loading from inside the
  1111. 'libNAME.so.V' file
  1112. - is used for dynamic loading via
  1113. 'dlopen("libNAME.so.V(shr.o)", RTLD_MEMBER)'
  1114. * with the 'Import File' as archive member named 'shr.imp',
  1115. which
  1116. - refers to 'libNAME.so.V(shr.o)' as the "SONAME", to
  1117. be recorded in the 'Loader Section' of subsequent
  1118. binaries
  1119. - indicates whether 'libNAME.so.V(shr.o)' is 32 or 64
  1120. bit
  1121. - lists all the public symbols exported by
  1122. 'lib.so.V(shr.o)', eventually decorated with the
  1123. ''weak' Keyword'
  1124. - is necessary for shared linking against
  1125. 'lib.so.V(shr.o)'
  1126. A symbolic link using the 'libNAME.so' filename scheme is
  1127. created:
  1128. * pointing to the 'libNAME.so.V' 'Shared Archive Library'
  1129. file
  1130. * to permit the 'ld Command' to find 'lib.so.V(shr.imp)'
  1131. via the '-lNAME' argument (requires 'Runtime Linking' to
  1132. be enabled)
  1133. * to permit dynamic loading of 'lib.so.V(shr.o)' without
  1134. the need to specify the version number via
  1135. 'dlopen("libNAME.so(shr.o)", RTLD_MEMBER)'
  1136. As long as static library creation is enabled, upon:
  1137. '--with-aix-soname=svr4'
  1138. A 'Static Archive Library' is created:
  1139. * using the 'libNAME.a' filename scheme
  1140. * with all the 'Static Object' files as archive members,
  1141. which
  1142. - are used for static linking
  1143. While the aix-soname='svr4' option does not create 'Shared Object'
  1144. files as members of unversioned 'Archive Library' files any more,
  1145. package managers still are responsible to transfer 'Shared Object'
  1146. files found as member of a previously installed unversioned
  1147. 'Archive Library' file into the newly installed 'Archive Library'
  1148. file with the same filename.
  1149. _WARNING:_ Creating 'Shared Object' files with 'Runtime Linking'
  1150. enabled may bloat the TOC, eventually leading to 'TOC overflow'
  1151. errors, requiring the use of either the '-Wl,-bbigtoc' linker flag
  1152. (seen to break with the 'GDB' debugger) or some of the TOC-related
  1153. compiler flags, *Note RS/6000 and PowerPC Options: (gcc)RS/6000 and
  1154. PowerPC Options.
  1155. '--with-aix-soname' is currently supported by 'libgcc_s' only, so
  1156. this option is still experimental and not for normal use yet.
  1157. Default is the traditional behavior '--with-aix-soname='aix''.
  1158. '--enable-languages=LANG1,LANG2,...'
  1159. Specify that only a particular subset of compilers and their
  1160. runtime libraries should be built. For a list of valid values for
  1161. LANGN you can issue the following command in the 'gcc' directory of
  1162. your GCC source tree:
  1163. grep ^language= */config-lang.in
  1164. Currently, you can use any of the following: 'all', 'default',
  1165. 'ada', 'c', 'c++', 'd', 'fortran', 'go', 'jit', 'lto', 'objc',
  1166. 'obj-c++'. Building the Ada compiler has special requirements, see
  1167. below. If you do not pass this flag, or specify the option
  1168. 'default', then the default languages available in the 'gcc'
  1169. sub-tree will be configured. Ada, D, Go, Jit, and Objective-C++
  1170. are not default languages. LTO is not a default language, but is
  1171. built by default because '--enable-lto' is enabled by default. The
  1172. other languages are default languages. If 'all' is specified, then
  1173. all available languages are built. An exception is 'jit' language,
  1174. which requires '--enable-host-shared' to be included with 'all'.
  1175. '--enable-stage1-languages=LANG1,LANG2,...'
  1176. Specify that a particular subset of compilers and their runtime
  1177. libraries should be built with the system C compiler during stage 1
  1178. of the bootstrap process, rather than only in later stages with the
  1179. bootstrapped C compiler. The list of valid values is the same as
  1180. for '--enable-languages', and the option 'all' will select all of
  1181. the languages enabled by '--enable-languages'. This option is
  1182. primarily useful for GCC development; for instance, when a
  1183. development version of the compiler cannot bootstrap due to
  1184. compiler bugs, or when one is debugging front ends other than the C
  1185. front end. When this option is used, one can then build the target
  1186. libraries for the specified languages with the stage-1 compiler by
  1187. using 'make stage1-bubble all-target', or run the testsuite on the
  1188. stage-1 compiler for the specified languages using 'make
  1189. stage1-start check-gcc'.
  1190. '--disable-libada'
  1191. Specify that the run-time libraries and tools used by GNAT should
  1192. not be built. This can be useful for debugging, or for
  1193. compatibility with previous Ada build procedures, when it was
  1194. required to explicitly do a 'make -C gcc gnatlib_and_tools'.
  1195. '--disable-libsanitizer'
  1196. Specify that the run-time libraries for the various sanitizers
  1197. should not be built.
  1198. '--disable-libssp'
  1199. Specify that the run-time libraries for stack smashing protection
  1200. should not be built or linked against. On many targets library
  1201. support is provided by the C library instead.
  1202. '--disable-libquadmath'
  1203. Specify that the GCC quad-precision math library should not be
  1204. built. On some systems, the library is required to be linkable
  1205. when building the Fortran front end, unless
  1206. '--disable-libquadmath-support' is used.
  1207. '--disable-libquadmath-support'
  1208. Specify that the Fortran front end and 'libgfortran' do not add
  1209. support for 'libquadmath' on systems supporting it.
  1210. '--disable-libgomp'
  1211. Specify that the GNU Offloading and Multi Processing Runtime
  1212. Library should not be built.
  1213. '--disable-libvtv'
  1214. Specify that the run-time libraries used by vtable verification
  1215. should not be built.
  1216. '--with-dwarf2'
  1217. Specify that the compiler should use DWARF 2 debugging information
  1218. as the default.
  1219. '--with-advance-toolchain=AT'
  1220. On 64-bit PowerPC Linux systems, configure the compiler to use the
  1221. header files, library files, and the dynamic linker from the
  1222. Advance Toolchain release AT instead of the default versions that
  1223. are provided by the Linux distribution. In general, this option is
  1224. intended for the developers of GCC, and it is not intended for
  1225. general use.
  1226. '--enable-targets=all'
  1227. '--enable-targets=TARGET_LIST'
  1228. Some GCC targets, e.g. powerpc64-linux, build bi-arch compilers.
  1229. These are compilers that are able to generate either 64-bit or
  1230. 32-bit code. Typically, the corresponding 32-bit target, e.g.
  1231. powerpc-linux for powerpc64-linux, only generates 32-bit code.
  1232. This option enables the 32-bit target to be a bi-arch compiler,
  1233. which is useful when you want a bi-arch compiler that defaults to
  1234. 32-bit, and you are building a bi-arch or multi-arch binutils in a
  1235. combined tree. On mips-linux, this will build a tri-arch compiler
  1236. (ABI o32/n32/64), defaulted to o32. Currently, this option only
  1237. affects sparc-linux, powerpc-linux, x86-linux, mips-linux and
  1238. s390-linux.
  1239. '--enable-default-pie'
  1240. Turn on '-fPIE' and '-pie' by default.
  1241. '--enable-secureplt'
  1242. This option enables '-msecure-plt' by default for powerpc-linux.
  1243. *Note RS/6000 and PowerPC Options: (gcc)RS/6000 and PowerPC
  1244. Options,
  1245. '--enable-default-ssp'
  1246. Turn on '-fstack-protector-strong' by default.
  1247. '--enable-cld'
  1248. This option enables '-mcld' by default for 32-bit x86 targets.
  1249. *Note i386 and x86-64 Options: (gcc)i386 and x86-64 Options,
  1250. '--enable-large-address-aware'
  1251. The '--enable-large-address-aware' option arranges for MinGW
  1252. executables to be linked using the '--large-address-aware' option,
  1253. that enables the use of more than 2GB of memory. If GCC is
  1254. configured with this option, its effects can be reversed by passing
  1255. the '-Wl,--disable-large-address-aware' option to the so-configured
  1256. compiler driver.
  1257. '--enable-win32-registry'
  1258. '--enable-win32-registry=KEY'
  1259. '--disable-win32-registry'
  1260. The '--enable-win32-registry' option enables Microsoft
  1261. Windows-hosted GCC to look up installations paths in the registry
  1262. using the following key:
  1263. HKEY_LOCAL_MACHINE\SOFTWARE\Free Software Foundation\KEY
  1264. KEY defaults to GCC version number, and can be overridden by the
  1265. '--enable-win32-registry=KEY' option. Vendors and distributors who
  1266. use custom installers are encouraged to provide a different key,
  1267. perhaps one comprised of vendor name and GCC version number, to
  1268. avoid conflict with existing installations. This feature is
  1269. enabled by default, and can be disabled by
  1270. '--disable-win32-registry' option. This option has no effect on
  1271. the other hosts.
  1272. '--nfp'
  1273. Specify that the machine does not have a floating point unit. This
  1274. option only applies to 'm68k-sun-sunosN'. On any other system,
  1275. '--nfp' has no effect.
  1276. '--enable-werror'
  1277. '--disable-werror'
  1278. '--enable-werror=yes'
  1279. '--enable-werror=no'
  1280. When you specify this option, it controls whether certain files in
  1281. the compiler are built with '-Werror' in bootstrap stage2 and
  1282. later. If you don't specify it, '-Werror' is turned on for the
  1283. main development trunk. However it defaults to off for release
  1284. branches and final releases. The specific files which get
  1285. '-Werror' are controlled by the Makefiles.
  1286. '--enable-checking'
  1287. '--disable-checking'
  1288. '--enable-checking=LIST'
  1289. This option controls performing internal consistency checks in the
  1290. compiler. It does not change the generated code, but adds error
  1291. checking of the requested complexity. This slows down the compiler
  1292. and may only work properly if you are building the compiler with
  1293. GCC.
  1294. When the option is not specified, the active set of checks depends
  1295. on context. Namely, bootstrap stage 1 defaults to
  1296. '--enable-checking=yes', builds from release branches or release
  1297. archives default to '--enable-checking=release', and otherwise
  1298. '--enable-checking=yes,extra' is used. When the option is
  1299. specified without a LIST, the result is the same as
  1300. '--enable-checking=yes'. Likewise, '--disable-checking' is
  1301. equivalent to '--enable-checking=no'.
  1302. The categories of checks available in LIST are 'yes' (most common
  1303. checks 'assert,misc,gc,gimple,rtlflag,runtime,tree,types'), 'no'
  1304. (no checks at all), 'all' (all but 'valgrind'), 'release' (cheapest
  1305. checks 'assert,runtime') or 'none' (same as 'no'). 'release'
  1306. checks are always on and to disable them '--disable-checking' or
  1307. '--enable-checking=no[,<other checks>]' must be explicitly
  1308. requested. Disabling assertions makes the compiler and runtime
  1309. slightly faster but increases the risk of undetected internal
  1310. errors causing wrong code to be generated.
  1311. Individual checks can be enabled with these flags: 'assert', 'df',
  1312. 'extra', 'fold', 'gc', 'gcac', 'gimple', 'misc', 'rtl', 'rtlflag',
  1313. 'runtime', 'tree', 'types' and 'valgrind'. 'extra' extends 'misc'
  1314. checking with extra checks that might affect code generation and
  1315. should therefore not differ between stage1 and later stages in
  1316. bootstrap.
  1317. The 'valgrind' check requires the external 'valgrind' simulator,
  1318. available from <http://valgrind.org/>. The 'rtl' checks are
  1319. expensive and the 'df', 'gcac' and 'valgrind' checks are very
  1320. expensive.
  1321. '--disable-stage1-checking'
  1322. '--enable-stage1-checking'
  1323. '--enable-stage1-checking=LIST'
  1324. This option affects only bootstrap build. If no
  1325. '--enable-checking' option is specified the stage1 compiler is
  1326. built with 'yes' checking enabled, otherwise the stage1 checking
  1327. flags are the same as specified by '--enable-checking'. To build
  1328. the stage1 compiler with different checking options use
  1329. '--enable-stage1-checking'. The list of checking options is the
  1330. same as for '--enable-checking'. If your system is too slow or too
  1331. small to bootstrap a released compiler with checking for stage1
  1332. enabled, you can use '--disable-stage1-checking' to disable
  1333. checking for the stage1 compiler.
  1334. '--enable-coverage'
  1335. '--enable-coverage=LEVEL'
  1336. With this option, the compiler is built to collect self coverage
  1337. information, every time it is run. This is for internal
  1338. development purposes, and only works when the compiler is being
  1339. built with gcc. The LEVEL argument controls whether the compiler
  1340. is built optimized or not, values are 'opt' and 'noopt'. For
  1341. coverage analysis you want to disable optimization, for performance
  1342. analysis you want to enable optimization. When coverage is
  1343. enabled, the default level is without optimization.
  1344. '--enable-gather-detailed-mem-stats'
  1345. When this option is specified more detailed information on memory
  1346. allocation is gathered. This information is printed when using
  1347. '-fmem-report'.
  1348. '--enable-valgrind-annotations'
  1349. Mark selected memory related operations in the compiler when run
  1350. under valgrind to suppress false positives.
  1351. '--enable-nls'
  1352. '--disable-nls'
  1353. The '--enable-nls' option enables Native Language Support (NLS),
  1354. which lets GCC output diagnostics in languages other than American
  1355. English. Native Language Support is enabled by default if not
  1356. doing a canadian cross build. The '--disable-nls' option disables
  1357. NLS.
  1358. '--with-included-gettext'
  1359. If NLS is enabled, the '--with-included-gettext' option causes the
  1360. build procedure to prefer its copy of GNU 'gettext'.
  1361. '--with-catgets'
  1362. If NLS is enabled, and if the host lacks 'gettext' but has the
  1363. inferior 'catgets' interface, the GCC build procedure normally
  1364. ignores 'catgets' and instead uses GCC's copy of the GNU 'gettext'
  1365. library. The '--with-catgets' option causes the build procedure to
  1366. use the host's 'catgets' in this situation.
  1367. '--with-libiconv-prefix=DIR'
  1368. Search for libiconv header files in 'DIR/include' and libiconv
  1369. library files in 'DIR/lib'.
  1370. '--enable-obsolete'
  1371. Enable configuration for an obsoleted system. If you attempt to
  1372. configure GCC for a system (build, host, or target) which has been
  1373. obsoleted, and you do not specify this flag, configure will halt
  1374. with an error message.
  1375. All support for systems which have been obsoleted in one release of
  1376. GCC is removed entirely in the next major release, unless someone
  1377. steps forward to maintain the port.
  1378. '--enable-decimal-float'
  1379. '--enable-decimal-float=yes'
  1380. '--enable-decimal-float=no'
  1381. '--enable-decimal-float=bid'
  1382. '--enable-decimal-float=dpd'
  1383. '--disable-decimal-float'
  1384. Enable (or disable) support for the C decimal floating point
  1385. extension that is in the IEEE 754-2008 standard. This is enabled
  1386. by default only on PowerPC, i386, and x86_64 GNU/Linux systems.
  1387. Other systems may also support it, but require the user to
  1388. specifically enable it. You can optionally control which decimal
  1389. floating point format is used (either 'bid' or 'dpd'). The 'bid'
  1390. (binary integer decimal) format is default on i386 and x86_64
  1391. systems, and the 'dpd' (densely packed decimal) format is default
  1392. on PowerPC systems.
  1393. '--enable-fixed-point'
  1394. '--disable-fixed-point'
  1395. Enable (or disable) support for C fixed-point arithmetic. This
  1396. option is enabled by default for some targets (such as MIPS) which
  1397. have hardware-support for fixed-point operations. On other
  1398. targets, you may enable this option manually.
  1399. '--with-long-double-128'
  1400. Specify if 'long double' type should be 128-bit by default on
  1401. selected GNU/Linux architectures. If using
  1402. '--without-long-double-128', 'long double' will be by default
  1403. 64-bit, the same as 'double' type. When neither of these configure
  1404. options are used, the default will be 128-bit 'long double' when
  1405. built against GNU C Library 2.4 and later, 64-bit 'long double'
  1406. otherwise.
  1407. '--with-long-double-format=ibm'
  1408. '--with-long-double-format=ieee'
  1409. Specify whether 'long double' uses the IBM extended double format
  1410. or the IEEE 128-bit floating point format on PowerPC Linux systems.
  1411. This configuration switch will only work on little endian PowerPC
  1412. Linux systems and on big endian 64-bit systems where the default
  1413. cpu is at least power7 (i.e. '--with-cpu=power7',
  1414. '--with-cpu=power8', or '--with-cpu=power9' is used).
  1415. If you use the '--with-long-double-64' configuration option, the
  1416. '--with-long-double-format=ibm' and
  1417. '--with-long-double-format=ieee' options are ignored.
  1418. The default 'long double' format is to use IBM extended double.
  1419. Until all of the libraries are converted to use IEEE 128-bit
  1420. floating point, it is not recommended to use
  1421. '--with-long-double-format=ieee'.
  1422. On little endian PowerPC Linux systems, if you explicitly set the
  1423. 'long double' type, it will build multilibs to allow you to select
  1424. either 'long double' format, unless you disable multilibs with the
  1425. '--disable-multilib' option. At present, 'long double' multilibs
  1426. are not built on big endian PowerPC Linux systems. If you are
  1427. building multilibs, you will need to configure the compiler using
  1428. the '--with-system-zlib' option.
  1429. If you do not set the 'long double' type explicitly, no multilibs
  1430. will be generated.
  1431. '--enable-fdpic'
  1432. On SH Linux systems, generate ELF FDPIC code.
  1433. '--with-gmp=PATHNAME'
  1434. '--with-gmp-include=PATHNAME'
  1435. '--with-gmp-lib=PATHNAME'
  1436. '--with-mpfr=PATHNAME'
  1437. '--with-mpfr-include=PATHNAME'
  1438. '--with-mpfr-lib=PATHNAME'
  1439. '--with-mpc=PATHNAME'
  1440. '--with-mpc-include=PATHNAME'
  1441. '--with-mpc-lib=PATHNAME'
  1442. If you want to build GCC but do not have the GMP library, the MPFR
  1443. library and/or the MPC library installed in a standard location and
  1444. do not have their sources present in the GCC source tree then you
  1445. can explicitly specify the directory where they are installed
  1446. ('--with-gmp=GMPINSTALLDIR', '--with-mpfr=MPFRINSTALLDIR',
  1447. '--with-mpc=MPCINSTALLDIR'). The '--with-gmp=GMPINSTALLDIR' option
  1448. is shorthand for '--with-gmp-lib=GMPINSTALLDIR/lib' and
  1449. '--with-gmp-include=GMPINSTALLDIR/include'. Likewise the
  1450. '--with-mpfr=MPFRINSTALLDIR' option is shorthand for
  1451. '--with-mpfr-lib=MPFRINSTALLDIR/lib' and
  1452. '--with-mpfr-include=MPFRINSTALLDIR/include', also the
  1453. '--with-mpc=MPCINSTALLDIR' option is shorthand for
  1454. '--with-mpc-lib=MPCINSTALLDIR/lib' and
  1455. '--with-mpc-include=MPCINSTALLDIR/include'. If these shorthand
  1456. assumptions are not correct, you can use the explicit include and
  1457. lib options directly. You might also need to ensure the shared
  1458. libraries can be found by the dynamic linker when building and
  1459. using GCC, for example by setting the runtime shared library path
  1460. variable ('LD_LIBRARY_PATH' on GNU/Linux and Solaris systems).
  1461. These flags are applicable to the host platform only. When
  1462. building a cross compiler, they will not be used to configure
  1463. target libraries.
  1464. '--with-isl=PATHNAME'
  1465. '--with-isl-include=PATHNAME'
  1466. '--with-isl-lib=PATHNAME'
  1467. If you do not have the isl library installed in a standard location
  1468. and you want to build GCC, you can explicitly specify the directory
  1469. where it is installed ('--with-isl=ISLINSTALLDIR'). The
  1470. '--with-isl=ISLINSTALLDIR' option is shorthand for
  1471. '--with-isl-lib=ISLINSTALLDIR/lib' and
  1472. '--with-isl-include=ISLINSTALLDIR/include'. If this shorthand
  1473. assumption is not correct, you can use the explicit include and lib
  1474. options directly.
  1475. These flags are applicable to the host platform only. When
  1476. building a cross compiler, they will not be used to configure
  1477. target libraries.
  1478. '--with-stage1-ldflags=FLAGS'
  1479. This option may be used to set linker flags to be used when linking
  1480. stage 1 of GCC. These are also used when linking GCC if configured
  1481. with '--disable-bootstrap'. If '--with-stage1-libs' is not set to
  1482. a value, then the default is '-static-libstdc++ -static-libgcc', if
  1483. supported.
  1484. '--with-stage1-libs=LIBS'
  1485. This option may be used to set libraries to be used when linking
  1486. stage 1 of GCC. These are also used when linking GCC if configured
  1487. with '--disable-bootstrap'.
  1488. '--with-boot-ldflags=FLAGS'
  1489. This option may be used to set linker flags to be used when linking
  1490. stage 2 and later when bootstrapping GCC. If -with-boot-libs is not
  1491. is set to a value, then the default is '-static-libstdc++
  1492. -static-libgcc'.
  1493. '--with-boot-libs=LIBS'
  1494. This option may be used to set libraries to be used when linking
  1495. stage 2 and later when bootstrapping GCC.
  1496. '--with-debug-prefix-map=MAP'
  1497. Convert source directory names using '-fdebug-prefix-map' when
  1498. building runtime libraries. 'MAP' is a space-separated list of
  1499. maps of the form 'OLD=NEW'.
  1500. '--enable-linker-build-id'
  1501. Tells GCC to pass '--build-id' option to the linker for all final
  1502. links (links performed without the '-r' or '--relocatable' option),
  1503. if the linker supports it. If you specify
  1504. '--enable-linker-build-id', but your linker does not support
  1505. '--build-id' option, a warning is issued and the
  1506. '--enable-linker-build-id' option is ignored. The default is off.
  1507. '--with-linker-hash-style=CHOICE'
  1508. Tells GCC to pass '--hash-style=CHOICE' option to the linker for
  1509. all final links. CHOICE can be one of 'sysv', 'gnu', and 'both'
  1510. where 'sysv' is the default.
  1511. '--enable-gnu-unique-object'
  1512. '--disable-gnu-unique-object'
  1513. Tells GCC to use the gnu_unique_object relocation for C++ template
  1514. static data members and inline function local statics. Enabled by
  1515. default for a toolchain with an assembler that accepts it and GLIBC
  1516. 2.11 or above, otherwise disabled.
  1517. '--with-diagnostics-color=CHOICE'
  1518. Tells GCC to use CHOICE as the default for '-fdiagnostics-color='
  1519. option (if not used explicitly on the command line). CHOICE can be
  1520. one of 'never', 'auto', 'always', and 'auto-if-env' where 'auto' is
  1521. the default. 'auto-if-env' makes '-fdiagnostics-color=auto' the
  1522. default if 'GCC_COLORS' is present and non-empty in the environment
  1523. of the compiler, and '-fdiagnostics-color=never' otherwise.
  1524. '--with-diagnostics-urls=CHOICE'
  1525. Tells GCC to use CHOICE as the default for '-fdiagnostics-urls='
  1526. option (if not used explicitly on the command line). CHOICE can be
  1527. one of 'never', 'auto', 'always', and 'auto-if-env' where 'auto' is
  1528. the default. 'auto-if-env' makes '-fdiagnostics-urls=auto' the
  1529. default if 'GCC_URLS' or 'TERM_URLS' is present and non-empty in
  1530. the environment of the compiler, and '-fdiagnostics-urls=never'
  1531. otherwise.
  1532. '--enable-lto'
  1533. '--disable-lto'
  1534. Enable support for link-time optimization (LTO). This is enabled by
  1535. default, and may be disabled using '--disable-lto'.
  1536. '--enable-linker-plugin-configure-flags=FLAGS'
  1537. '--enable-linker-plugin-flags=FLAGS'
  1538. By default, linker plugins (such as the LTO plugin) are built for
  1539. the host system architecture. For the case that the linker has a
  1540. different (but run-time compatible) architecture, these flags can
  1541. be specified to build plugins that are compatible to the linker.
  1542. For example, if you are building GCC for a 64-bit x86_64
  1543. ('x86_64-pc-linux-gnu') host system, but have a 32-bit x86
  1544. GNU/Linux ('i686-pc-linux-gnu') linker executable (which is
  1545. executable on the former system), you can configure GCC as follows
  1546. for getting compatible linker plugins:
  1547. % SRCDIR/configure \
  1548. --host=x86_64-pc-linux-gnu \
  1549. --enable-linker-plugin-configure-flags=--host=i686-pc-linux-gnu \
  1550. --enable-linker-plugin-flags='CC=gcc\ -m32\ -Wl,-rpath,[...]/i686-pc-linux-gnu/lib'
  1551. '--with-plugin-ld=PATHNAME'
  1552. Enable an alternate linker to be used at link-time optimization
  1553. (LTO) link time when '-fuse-linker-plugin' is enabled. This linker
  1554. should have plugin support such as gold starting with version 2.20
  1555. or GNU ld starting with version 2.21. See '-fuse-linker-plugin'
  1556. for details.
  1557. '--enable-canonical-system-headers'
  1558. '--disable-canonical-system-headers'
  1559. Enable system header path canonicalization for 'libcpp'. This can
  1560. produce shorter header file paths in diagnostics and dependency
  1561. output files, but these changed header paths may conflict with some
  1562. compilation environments. Enabled by default, and may be disabled
  1563. using '--disable-canonical-system-headers'.
  1564. '--with-glibc-version=MAJOR.MINOR'
  1565. Tell GCC that when the GNU C Library (glibc) is used on the target
  1566. it will be version MAJOR.MINOR or later. Normally this can be
  1567. detected from the C library's header files, but this option may be
  1568. needed when bootstrapping a cross toolchain without the header
  1569. files available for building the initial bootstrap compiler.
  1570. If GCC is configured with some multilibs that use glibc and some
  1571. that do not, this option applies only to the multilibs that use
  1572. glibc. However, such configurations may not work well as not all
  1573. the relevant configuration in GCC is on a per-multilib basis.
  1574. '--enable-as-accelerator-for=TARGET'
  1575. Build as offload target compiler. Specify offload host triple by
  1576. TARGET.
  1577. '--enable-offload-targets=TARGET1[=PATH1],...,TARGETN[=PATHN]'
  1578. Enable offloading to targets TARGET1, ..., TARGETN. Offload
  1579. compilers are expected to be already installed. Default search
  1580. path for them is 'EXEC-PREFIX', but it can be changed by specifying
  1581. paths PATH1, ..., PATHN.
  1582. % SRCDIR/configure \
  1583. --enable-offload-targets=x86_64-intelmicemul-linux-gnu=/path/to/x86_64/compiler,nvptx-none,hsa
  1584. If 'hsa' is specified as one of the targets, the compiler will be
  1585. built with support for HSA GPU accelerators. Because the same
  1586. compiler will emit the accelerator code, no path should be
  1587. specified.
  1588. '--with-hsa-runtime=PATHNAME'
  1589. '--with-hsa-runtime-include=PATHNAME'
  1590. '--with-hsa-runtime-lib=PATHNAME'
  1591. If you configure GCC with HSA offloading but do not have the HSA
  1592. run-time library installed in a standard location then you can
  1593. explicitly specify the directory where they are installed. The
  1594. '--with-hsa-runtime=HSAINSTALLDIR' option is a shorthand for
  1595. '--with-hsa-runtime-lib=HSAINSTALLDIR/lib' and
  1596. '--with-hsa-runtime-include=HSAINSTALLDIR/include'.
  1597. '--enable-cet'
  1598. '--disable-cet'
  1599. Enable building target run-time libraries with control-flow
  1600. instrumentation, see '-fcf-protection' option. When '--enable-cet'
  1601. is specified target libraries are configured to add
  1602. '-fcf-protection' and, if needed, other target specific options to
  1603. a set of building options.
  1604. The option is disabled by default. When '--enable-cet=auto' is
  1605. used, it is enabled on Linux/x86 if target binutils supports 'Intel
  1606. CET' instructions and disabled otherwise. In this case the target
  1607. libraries are configured to get additional '-fcf-protection'
  1608. option.
  1609. '--with-riscv-attribute='yes', 'no' or 'default''
  1610. Generate RISC-V attribute by default, in order to record extra
  1611. build information in object.
  1612. The option is disabled by default. It is enabled on RISC-V/ELF
  1613. (bare-metal) target if target binutils supported.
  1614. Cross-Compiler-Specific Options
  1615. -------------------------------
  1616. The following options only apply to building cross compilers.
  1617. '--with-toolexeclibdir=DIR'
  1618. Specify the installation directory for libraries built with a cross
  1619. compiler. The default is '${gcc_tooldir}/lib'.
  1620. '--with-sysroot'
  1621. '--with-sysroot=DIR'
  1622. Tells GCC to consider DIR as the root of a tree that contains (a
  1623. subset of) the root filesystem of the target operating system.
  1624. Target system headers, libraries and run-time object files will be
  1625. searched for in there. More specifically, this acts as if
  1626. '--sysroot=DIR' was added to the default options of the built
  1627. compiler. The specified directory is not copied into the install
  1628. tree, unlike the options '--with-headers' and '--with-libs' that
  1629. this option obsoletes. The default value, in case '--with-sysroot'
  1630. is not given an argument, is '${gcc_tooldir}/sys-root'. If the
  1631. specified directory is a subdirectory of '${exec_prefix}', then it
  1632. will be found relative to the GCC binaries if the installation tree
  1633. is moved.
  1634. This option affects the system root for the compiler used to build
  1635. target libraries (which runs on the build system) and the compiler
  1636. newly installed with 'make install'; it does not affect the
  1637. compiler which is used to build GCC itself.
  1638. If you specify the '--with-native-system-header-dir=DIRNAME' option
  1639. then the compiler will search that directory within DIRNAME for
  1640. native system headers rather than the default '/usr/include'.
  1641. '--with-build-sysroot'
  1642. '--with-build-sysroot=DIR'
  1643. Tells GCC to consider DIR as the system root (see '--with-sysroot')
  1644. while building target libraries, instead of the directory specified
  1645. with '--with-sysroot'. This option is only useful when you are
  1646. already using '--with-sysroot'. You can use '--with-build-sysroot'
  1647. when you are configuring with '--prefix' set to a directory that is
  1648. different from the one in which you are installing GCC and your
  1649. target libraries.
  1650. This option affects the system root for the compiler used to build
  1651. target libraries (which runs on the build system); it does not
  1652. affect the compiler which is used to build GCC itself.
  1653. If you specify the '--with-native-system-header-dir=DIRNAME' option
  1654. then the compiler will search that directory within DIRNAME for
  1655. native system headers rather than the default '/usr/include'.
  1656. '--with-headers'
  1657. '--with-headers=DIR'
  1658. Deprecated in favor of '--with-sysroot'. Specifies that target
  1659. headers are available when building a cross compiler. The DIR
  1660. argument specifies a directory which has the target include files.
  1661. These include files will be copied into the 'gcc' install
  1662. directory. _This option with the DIR argument is required_ when
  1663. building a cross compiler, if 'PREFIX/TARGET/sys-include' doesn't
  1664. pre-exist. If 'PREFIX/TARGET/sys-include' does pre-exist, the DIR
  1665. argument may be omitted. 'fixincludes' will be run on these files
  1666. to make them compatible with GCC.
  1667. '--without-headers'
  1668. Tells GCC not use any target headers from a libc when building a
  1669. cross compiler. When crossing to GNU/Linux, you need the headers
  1670. so GCC can build the exception handling for libgcc.
  1671. '--with-libs'
  1672. '--with-libs="DIR1 DIR2 ... DIRN"'
  1673. Deprecated in favor of '--with-sysroot'. Specifies a list of
  1674. directories which contain the target runtime libraries. These
  1675. libraries will be copied into the 'gcc' install directory. If the
  1676. directory list is omitted, this option has no effect.
  1677. '--with-newlib'
  1678. Specifies that 'newlib' is being used as the target C library.
  1679. This causes '__eprintf' to be omitted from 'libgcc.a' on the
  1680. assumption that it will be provided by 'newlib'.
  1681. '--with-avrlibc'
  1682. Only supported for the AVR target. Specifies that 'AVR-Libc' is
  1683. being used as the target C library. This causes float support
  1684. functions like '__addsf3' to be omitted from 'libgcc.a' on the
  1685. assumption that it will be provided by 'libm.a'. For more
  1686. technical details, cf. PR54461. It is not supported for RTEMS
  1687. configurations, which currently use newlib. The option is
  1688. supported since version 4.7.2 and is the default in 4.8.0 and
  1689. newer.
  1690. '--with-double={32|64|32,64|64,32}'
  1691. '--with-long-double={32|64|32,64|64,32|double}'
  1692. Only supported for the AVR target since version 10. Specify the
  1693. default layout available for the C/C++ 'double' and 'long double'
  1694. type, respectively. The following rules apply:
  1695. * The first value after the '=' specifies the default layout (in
  1696. bits) of the type and also the default for the '-mdouble='
  1697. resp. '-mlong-double=' compiler option.
  1698. * If more than one value is specified, respective multilib
  1699. variants are available, and '-mdouble=' resp.
  1700. '-mlong-double=' acts as a multilib option.
  1701. * If '--with-long-double=double' is specified, 'double' and
  1702. 'long double' will have the same layout.
  1703. * The defaults are '--with-long-double=64,32' and
  1704. '--with-double=32,64'. The default 'double' layout imposed by
  1705. the latter is compatible with older versions of the compiler
  1706. that implement 'double' as a 32-bit type, which does not
  1707. comply to the language standard.
  1708. Not all combinations of '--with-double=' and '--with-long-double='
  1709. are valid. For example, the combination '--with-double=32,64'
  1710. '--with-long-double=32' will be rejected because the first option
  1711. specifies the availability of multilibs for 'double', whereas the
  1712. second option implies that 'long double' -- and hence also 'double'
  1713. -- is always 32 bits wide.
  1714. '--with-double-comparison={tristate|bool|libf7}'
  1715. Only supported for the AVR target since version 10. Specify what
  1716. result format is returned by library functions that compare 64-bit
  1717. floating point values ('DFmode'). The GCC default is 'tristate'.
  1718. If the floating point implementation returns a boolean instead, set
  1719. it to 'bool'.
  1720. '--with-libf7={libgcc|math|math-symbols|no}'
  1721. Only supported for the AVR target since version 10. Specify to
  1722. which degree code from LibF7 is included in libgcc. LibF7 is an
  1723. ad-hoc, AVR-specific, 64-bit floating point emulation written in C
  1724. and (inline) assembly. 'libgcc' adds support for functions that
  1725. one would usually expect in libgcc like double addition, double
  1726. comparisons and double conversions. 'math' also adds routines that
  1727. one would expect in 'libm.a', but with '__' (two underscores)
  1728. prepended to the symbol names as specified by 'math.h'.
  1729. 'math-symbols' also defines weak aliases for the functions declared
  1730. in 'math.h'. However, '--with-libf7' won't install no 'math.h'
  1731. header file whatsoever, this file must come from elsewhere. This
  1732. option sets '--with-double-comparison' to 'bool'.
  1733. '--with-nds32-lib=LIBRARY'
  1734. Specifies that LIBRARY setting is used for building 'libgcc.a'.
  1735. Currently, the valid LIBRARY is 'newlib' or 'mculib'. This option
  1736. is only supported for the NDS32 target.
  1737. '--with-build-time-tools=DIR'
  1738. Specifies where to find the set of target tools (assembler, linker,
  1739. etc.) that will be used while building GCC itself. This option
  1740. can be useful if the directory layouts are different between the
  1741. system you are building GCC on, and the system where you will
  1742. deploy it.
  1743. For example, on an 'ia64-hp-hpux' system, you may have the GNU
  1744. assembler and linker in '/usr/bin', and the native tools in a
  1745. different path, and build a toolchain that expects to find the
  1746. native tools in '/usr/bin'.
  1747. When you use this option, you should ensure that DIR includes 'ar',
  1748. 'as', 'ld', 'nm', 'ranlib' and 'strip' if necessary, and possibly
  1749. 'objdump'. Otherwise, GCC may use an inconsistent set of tools.
  1750. Overriding 'configure' test results
  1751. ...................................
  1752. Sometimes, it might be necessary to override the result of some
  1753. 'configure' test, for example in order to ease porting to a new system
  1754. or work around a bug in a test. The toplevel 'configure' script
  1755. provides three variables for this:
  1756. 'build_configargs'
  1757. The contents of this variable is passed to all build 'configure'
  1758. scripts.
  1759. 'host_configargs'
  1760. The contents of this variable is passed to all host 'configure'
  1761. scripts.
  1762. 'target_configargs'
  1763. The contents of this variable is passed to all target 'configure'
  1764. scripts.
  1765. In order to avoid shell and 'make' quoting issues for complex
  1766. overrides, you can pass a setting for 'CONFIG_SITE' and set variables in
  1767. the site file.
  1768. Objective-C-Specific Options
  1769. ----------------------------
  1770. The following options apply to the build of the Objective-C runtime
  1771. library.
  1772. '--enable-objc-gc'
  1773. Specify that an additional variant of the GNU Objective-C runtime
  1774. library is built, using an external build of the
  1775. Boehm-Demers-Weiser garbage collector
  1776. (<https://www.hboehm.info/gc/>). This library needs to be
  1777. available for each multilib variant, unless configured with
  1778. '--enable-objc-gc='auto'' in which case the build of the additional
  1779. runtime library is skipped when not available and the build
  1780. continues.
  1781. '--with-target-bdw-gc=LIST'
  1782. '--with-target-bdw-gc-include=LIST'
  1783. '--with-target-bdw-gc-lib=LIST'
  1784. Specify search directories for the garbage collector header files
  1785. and libraries. LIST is a comma separated list of key value pairs
  1786. of the form 'MULTILIBDIR=PATH', where the default multilib key is
  1787. named as '.' (dot), or is omitted (e.g.
  1788. '--with-target-bdw-gc=/opt/bdw-gc,32=/opt-bdw-gc32').
  1789. The options '--with-target-bdw-gc-include' and
  1790. '--with-target-bdw-gc-lib' must always be specified together for
  1791. each multilib variant and they take precedence over
  1792. '--with-target-bdw-gc'. If '--with-target-bdw-gc-include' is
  1793. missing values for a multilib, then the value for the default
  1794. multilib is used (e.g.
  1795. '--with-target-bdw-gc-include=/opt/bdw-gc/include'
  1796. '--with-target-bdw-gc-lib=/opt/bdw-gc/lib64,32=/opt-bdw-gc/lib32').
  1797. If none of these options are specified, the library is assumed in
  1798. default locations.
  1799. D-Specific Options
  1800. ------------------
  1801. The following options apply to the build of the D runtime library.
  1802. '--enable-libphobos-checking'
  1803. '--disable-libphobos-checking'
  1804. '--enable-libphobos-checking=LIST'
  1805. This option controls whether run-time checks and contracts are
  1806. compiled into the D runtime library. When the option is not
  1807. specified, the library is built with 'release' checking. When the
  1808. option is specified without a LIST, the result is the same as
  1809. '--enable-libphobos-checking=yes'. Likewise,
  1810. '--disable-libphobos-checking' is equivalent to
  1811. '--enable-libphobos-checking=no'.
  1812. The categories of checks available in LIST are 'yes' (compiles
  1813. libphobos with '-fno-release'), 'no' (compiles libphobos with
  1814. '-frelease'), 'all' (same as 'yes'), 'none' or 'release' (same as
  1815. 'no').
  1816. Individual checks available in LIST are 'assert' (compiles
  1817. libphobos with an extra option '-fassert').
  1818. '--with-libphobos-druntime-only'
  1819. '--with-libphobos-druntime-only=CHOICE'
  1820. Specify whether to build only the core D runtime library
  1821. (druntime), or both the core and standard library (phobos) into
  1822. libphobos. This is useful for targets that have full support in
  1823. druntime, but no or incomplete support in phobos. CHOICE can be
  1824. one of 'auto', 'yes', and 'no' where 'auto' is the default.
  1825. When the option is not specified, the default choice 'auto' means
  1826. that it is inferred whether the target has support for the phobos
  1827. standard library. When the option is specified without a CHOICE,
  1828. the result is the same as '--with-libphobos-druntime-only=yes'.
  1829. '--with-target-system-zlib'
  1830. Use installed 'zlib' rather than that included with GCC. This
  1831. needs to be available for each multilib variant, unless configured
  1832. with '--with-target-system-zlib='auto'' in which case the
  1833. GCC included 'zlib' is only used when the system installed library
  1834. is not available.
  1835. 
  1836. File: gccinstall.info, Node: Building, Next: Testing, Prev: Configuration, Up: Installing GCC
  1837. 5 Building
  1838. **********
  1839. Now that GCC is configured, you are ready to build the compiler and
  1840. runtime libraries.
  1841. Some commands executed when making the compiler may fail (return a
  1842. nonzero status) and be ignored by 'make'. These failures, which are
  1843. often due to files that were not found, are expected, and can safely be
  1844. ignored.
  1845. It is normal to have compiler warnings when compiling certain files.
  1846. Unless you are a GCC developer, you can generally ignore these warnings
  1847. unless they cause compilation to fail. Developers should attempt to fix
  1848. any warnings encountered, however they can temporarily continue past
  1849. warnings-as-errors by specifying the configure flag '--disable-werror'.
  1850. On certain old systems, defining certain environment variables such
  1851. as 'CC' can interfere with the functioning of 'make'.
  1852. If you encounter seemingly strange errors when trying to build the
  1853. compiler in a directory other than the source directory, it could be
  1854. because you have previously configured the compiler in the source
  1855. directory. Make sure you have done all the necessary preparations.
  1856. If you build GCC on a BSD system using a directory stored in an old
  1857. System V file system, problems may occur in running 'fixincludes' if the
  1858. System V file system doesn't support symbolic links. These problems
  1859. result in a failure to fix the declaration of 'size_t' in 'sys/types.h'.
  1860. If you find that 'size_t' is a signed type and that type mismatches
  1861. occur, this could be the cause.
  1862. The solution is not to use such a directory for building GCC.
  1863. Similarly, when building from the source repository or snapshots, or
  1864. if you modify '*.l' files, you need the Flex lexical analyzer generator
  1865. installed. If you do not modify '*.l' files, releases contain the
  1866. Flex-generated files and you do not need Flex installed to build them.
  1867. There is still one Flex-based lexical analyzer (part of the build
  1868. machinery, not of GCC itself) that is used even if you only build the C
  1869. front end.
  1870. When building from the source repository or snapshots, or if you
  1871. modify Texinfo documentation, you need version 4.7 or later of Texinfo
  1872. installed if you want Info documentation to be regenerated. Releases
  1873. contain Info documentation pre-built for the unmodified documentation in
  1874. the release.
  1875. 5.1 Building a native compiler
  1876. ==============================
  1877. For a native build, the default configuration is to perform a 3-stage
  1878. bootstrap of the compiler when 'make' is invoked. This will build the
  1879. entire GCC system and ensure that it compiles itself correctly. It can
  1880. be disabled with the '--disable-bootstrap' parameter to 'configure', but
  1881. bootstrapping is suggested because the compiler will be tested more
  1882. completely and could also have better performance.
  1883. The bootstrapping process will complete the following steps:
  1884. * Build tools necessary to build the compiler.
  1885. * Perform a 3-stage bootstrap of the compiler. This includes
  1886. building three times the target tools for use by the compiler such
  1887. as binutils (bfd, binutils, gas, gprof, ld, and opcodes) if they
  1888. have been individually linked or moved into the top level GCC
  1889. source tree before configuring.
  1890. * Perform a comparison test of the stage2 and stage3 compilers.
  1891. * Build runtime libraries using the stage3 compiler from the previous
  1892. step.
  1893. If you are short on disk space you might consider 'make
  1894. bootstrap-lean' instead. The sequence of compilation is the same
  1895. described above, but object files from the stage1 and stage2 of the
  1896. 3-stage bootstrap of the compiler are deleted as soon as they are no
  1897. longer needed.
  1898. If you wish to use non-default GCC flags when compiling the stage2
  1899. and stage3 compilers, set 'BOOT_CFLAGS' on the command line when doing
  1900. 'make'. For example, if you want to save additional space during the
  1901. bootstrap and in the final installation as well, you can build the
  1902. compiler binaries without debugging information as in the following
  1903. example. This will save roughly 40% of disk space both for the
  1904. bootstrap and the final installation. (Libraries will still contain
  1905. debugging information.)
  1906. make BOOT_CFLAGS='-O' bootstrap
  1907. You can place non-default optimization flags into 'BOOT_CFLAGS'; they
  1908. are less well tested here than the default of '-g -O2', but should still
  1909. work. In a few cases, you may find that you need to specify special
  1910. flags such as '-msoft-float' here to complete the bootstrap; or, if the
  1911. native compiler miscompiles the stage1 compiler, you may need to work
  1912. around this, by choosing 'BOOT_CFLAGS' to avoid the parts of the stage1
  1913. compiler that were miscompiled, or by using 'make bootstrap4' to
  1914. increase the number of stages of bootstrap.
  1915. 'BOOT_CFLAGS' does not apply to bootstrapped target libraries. Since
  1916. these are always compiled with the compiler currently being
  1917. bootstrapped, you can use 'CFLAGS_FOR_TARGET' to modify their
  1918. compilation flags, as for non-bootstrapped target libraries. Again, if
  1919. the native compiler miscompiles the stage1 compiler, you may need to
  1920. work around this by avoiding non-working parts of the stage1 compiler.
  1921. Use 'STAGE1_TFLAGS' to this end.
  1922. If you used the flag '--enable-languages=...' to restrict the
  1923. compilers to be built, only those you've actually enabled will be built.
  1924. This will of course only build those runtime libraries, for which the
  1925. particular compiler has been built. Please note, that re-defining
  1926. 'LANGUAGES' when calling 'make' *does not* work anymore!
  1927. If the comparison of stage2 and stage3 fails, this normally indicates
  1928. that the stage2 compiler has compiled GCC incorrectly, and is therefore
  1929. a potentially serious bug which you should investigate and report. (On
  1930. a few systems, meaningful comparison of object files is impossible; they
  1931. always appear "different". If you encounter this problem, you will need
  1932. to disable comparison in the 'Makefile'.)
  1933. If you do not want to bootstrap your compiler, you can configure with
  1934. '--disable-bootstrap'. In particular cases, you may want to bootstrap
  1935. your compiler even if the target system is not the same as the one you
  1936. are building on: for example, you could build a
  1937. 'powerpc-unknown-linux-gnu' toolchain on a 'powerpc64-unknown-linux-gnu'
  1938. host. In this case, pass '--enable-bootstrap' to the configure script.
  1939. 'BUILD_CONFIG' can be used to bring in additional customization to
  1940. the build. It can be set to a whitespace-separated list of names. For
  1941. each such 'NAME', top-level 'config/NAME.mk' will be included by the
  1942. top-level 'Makefile', bringing in any settings it contains. The default
  1943. 'BUILD_CONFIG' can be set using the configure option
  1944. '--with-build-config=NAME...'. Some examples of supported build
  1945. configurations are:
  1946. 'bootstrap-O1'
  1947. Removes any '-O'-started option from 'BOOT_CFLAGS', and adds '-O1'
  1948. to it. 'BUILD_CONFIG=bootstrap-O1' is equivalent to
  1949. 'BOOT_CFLAGS='-g -O1''.
  1950. 'bootstrap-O3'
  1951. 'bootstrap-Og'
  1952. Analogous to 'bootstrap-O1'.
  1953. 'bootstrap-lto'
  1954. Enables Link-Time Optimization for host tools during bootstrapping.
  1955. 'BUILD_CONFIG=bootstrap-lto' is equivalent to adding '-flto' to
  1956. 'BOOT_CFLAGS'. This option assumes that the host supports the
  1957. linker plugin (e.g. GNU ld version 2.21 or later or GNU gold
  1958. version 2.21 or later).
  1959. 'bootstrap-lto-noplugin'
  1960. This option is similar to 'bootstrap-lto', but is intended for
  1961. hosts that do not support the linker plugin. Without the linker
  1962. plugin static libraries are not compiled with link-time
  1963. optimizations. Since the GCC middle end and back end are in
  1964. 'libbackend.a' this means that only the front end is actually LTO
  1965. optimized.
  1966. 'bootstrap-lto-lean'
  1967. This option is similar to 'bootstrap-lto', but is intended for
  1968. faster build by only using LTO in the final bootstrap stage. With
  1969. 'make profiledbootstrap' the LTO frontend is trained only on
  1970. generator files.
  1971. 'bootstrap-debug'
  1972. Verifies that the compiler generates the same executable code,
  1973. whether or not it is asked to emit debug information. To this end,
  1974. this option builds stage2 host programs without debug information,
  1975. and uses 'contrib/compare-debug' to compare them with the stripped
  1976. stage3 object files. If 'BOOT_CFLAGS' is overridden so as to not
  1977. enable debug information, stage2 will have it, and stage3 won't.
  1978. This option is enabled by default when GCC bootstrapping is
  1979. enabled, if 'strip' can turn object files compiled with and without
  1980. debug info into identical object files. In addition to better test
  1981. coverage, this option makes default bootstraps faster and leaner.
  1982. 'bootstrap-debug-big'
  1983. Rather than comparing stripped object files, as in
  1984. 'bootstrap-debug', this option saves internal compiler dumps during
  1985. stage2 and stage3 and compares them as well, which helps catch
  1986. additional potential problems, but at a great cost in terms of disk
  1987. space. It can be specified in addition to 'bootstrap-debug'.
  1988. 'bootstrap-debug-lean'
  1989. This option saves disk space compared with 'bootstrap-debug-big',
  1990. but at the expense of some recompilation. Instead of saving the
  1991. dumps of stage2 and stage3 until the final compare, it uses
  1992. '-fcompare-debug' to generate, compare and remove the dumps during
  1993. stage3, repeating the compilation that already took place in
  1994. stage2, whose dumps were not saved.
  1995. 'bootstrap-debug-lib'
  1996. This option tests executable code invariance over debug information
  1997. generation on target libraries, just like 'bootstrap-debug-lean'
  1998. tests it on host programs. It builds stage3 libraries with
  1999. '-fcompare-debug', and it can be used along with any of the
  2000. 'bootstrap-debug' options above.
  2001. There aren't '-lean' or '-big' counterparts to this option because
  2002. most libraries are only build in stage3, so bootstrap compares
  2003. would not get significant coverage. Moreover, the few libraries
  2004. built in stage2 are used in stage3 host programs, so we wouldn't
  2005. want to compile stage2 libraries with different options for
  2006. comparison purposes.
  2007. 'bootstrap-debug-ckovw'
  2008. Arranges for error messages to be issued if the compiler built on
  2009. any stage is run without the option '-fcompare-debug'. This is
  2010. useful to verify the full '-fcompare-debug' testing coverage. It
  2011. must be used along with 'bootstrap-debug-lean' and
  2012. 'bootstrap-debug-lib'.
  2013. 'bootstrap-cet'
  2014. This option enables Intel CET for host tools during bootstrapping.
  2015. 'BUILD_CONFIG=bootstrap-cet' is equivalent to adding
  2016. '-fcf-protection' to 'BOOT_CFLAGS'. This option assumes that the
  2017. host supports Intel CET (e.g. GNU assembler version 2.30 or later).
  2018. 'bootstrap-time'
  2019. Arranges for the run time of each program started by the GCC
  2020. driver, built in any stage, to be logged to 'time.log', in the top
  2021. level of the build tree.
  2022. 5.2 Building a cross compiler
  2023. =============================
  2024. When building a cross compiler, it is not generally possible to do a
  2025. 3-stage bootstrap of the compiler. This makes for an interesting
  2026. problem as parts of GCC can only be built with GCC.
  2027. To build a cross compiler, we recommend first building and installing
  2028. a native compiler. You can then use the native GCC compiler to build
  2029. the cross compiler. The installed native compiler needs to be GCC
  2030. version 2.95 or later.
  2031. Assuming you have already installed a native copy of GCC and
  2032. configured your cross compiler, issue the command 'make', which performs
  2033. the following steps:
  2034. * Build host tools necessary to build the compiler.
  2035. * Build target tools for use by the compiler such as binutils (bfd,
  2036. binutils, gas, gprof, ld, and opcodes) if they have been
  2037. individually linked or moved into the top level GCC source tree
  2038. before configuring.
  2039. * Build the compiler (single stage only).
  2040. * Build runtime libraries using the compiler from the previous step.
  2041. Note that if an error occurs in any step the make process will exit.
  2042. If you are not building GNU binutils in the same source tree as GCC,
  2043. you will need a cross-assembler and cross-linker installed before
  2044. configuring GCC. Put them in the directory 'PREFIX/TARGET/bin'. Here
  2045. is a table of the tools you should put in this directory:
  2046. 'as'
  2047. This should be the cross-assembler.
  2048. 'ld'
  2049. This should be the cross-linker.
  2050. 'ar'
  2051. This should be the cross-archiver: a program which can manipulate
  2052. archive files (linker libraries) in the target machine's format.
  2053. 'ranlib'
  2054. This should be a program to construct a symbol table in an archive
  2055. file.
  2056. The installation of GCC will find these programs in that directory,
  2057. and copy or link them to the proper place to for the cross-compiler to
  2058. find them when run later.
  2059. The easiest way to provide these files is to build the Binutils
  2060. package. Configure it with the same '--host' and '--target' options
  2061. that you use for configuring GCC, then build and install them. They
  2062. install their executables automatically into the proper directory.
  2063. Alas, they do not support all the targets that GCC supports.
  2064. If you are not building a C library in the same source tree as GCC,
  2065. you should also provide the target libraries and headers before
  2066. configuring GCC, specifying the directories with '--with-sysroot' or
  2067. '--with-headers' and '--with-libs'. Many targets also require "start
  2068. files" such as 'crt0.o' and 'crtn.o' which are linked into each
  2069. executable. There may be several alternatives for 'crt0.o', for use
  2070. with profiling or other compilation options. Check your target's
  2071. definition of 'STARTFILE_SPEC' to find out what start files it uses.
  2072. 5.3 Building in parallel
  2073. ========================
  2074. GNU Make 3.80 and above, which is necessary to build GCC, support
  2075. building in parallel. To activate this, you can use 'make -j 2' instead
  2076. of 'make'. You can also specify a bigger number, and in most cases
  2077. using a value greater than the number of processors in your machine will
  2078. result in fewer and shorter I/O latency hits, thus improving overall
  2079. throughput; this is especially true for slow drives and network
  2080. filesystems.
  2081. 5.4 Building the Ada compiler
  2082. =============================
  2083. *note GNAT-prerequisite::.
  2084. 5.5 Building with profile feedback
  2085. ==================================
  2086. It is possible to use profile feedback to optimize the compiler itself.
  2087. This should result in a faster compiler binary. Experiments done on x86
  2088. using gcc 3.3 showed approximately 7 percent speedup on compiling C
  2089. programs. To bootstrap the compiler with profile feedback, use 'make
  2090. profiledbootstrap'.
  2091. When 'make profiledbootstrap' is run, it will first build a 'stage1'
  2092. compiler. This compiler is used to build a 'stageprofile' compiler
  2093. instrumented to collect execution counts of instruction and branch
  2094. probabilities. Training run is done by building 'stagetrain' compiler.
  2095. Finally a 'stagefeedback' compiler is built using the information
  2096. collected.
  2097. Unlike standard bootstrap, several additional restrictions apply.
  2098. The compiler used to build 'stage1' needs to support a 64-bit integral
  2099. type. It is recommended to only use GCC for this.
  2100. On Linux/x86_64 hosts with some restrictions (no virtualization) it
  2101. is also possible to do autofdo build with 'make autoprofiledback'. This
  2102. uses Linux perf to sample branches in the binary and then rebuild it
  2103. with feedback derived from the profile. Linux perf and the 'autofdo'
  2104. toolkit needs to be installed for this.
  2105. Only the profile from the current build is used, so when an error
  2106. occurs it is recommended to clean before restarting. Otherwise the code
  2107. quality may be much worse.
  2108. 
  2109. File: gccinstall.info, Node: Testing, Next: Final install, Prev: Building, Up: Installing GCC
  2110. 6 Installing GCC: Testing
  2111. *************************
  2112. Before you install GCC, we encourage you to run the testsuites and to
  2113. compare your results with results from a similar configuration that have
  2114. been submitted to the gcc-testresults mailing list. Some of these
  2115. archived results are linked from the build status lists at
  2116. <http://gcc.gnu.org/buildstat.html>, although not everyone who reports a
  2117. successful build runs the testsuites and submits the results. This step
  2118. is optional and may require you to download additional software, but it
  2119. can give you confidence in your new GCC installation or point out
  2120. problems before you install and start using your new GCC.
  2121. First, you must have downloaded the testsuites. These are part of
  2122. the full distribution, but if you downloaded the "core" compiler plus
  2123. any front ends, you must download the testsuites separately.
  2124. Second, you must have the testing tools installed. This includes
  2125. DejaGnu, Tcl, and Expect; the DejaGnu site has links to these. For
  2126. running the BRIG frontend tests, a tool to assemble the binary BRIGs
  2127. from HSAIL text, HSAILasm must be installed.
  2128. If the directories where 'runtest' and 'expect' were installed are
  2129. not in the 'PATH', you may need to set the following environment
  2130. variables appropriately, as in the following example (which assumes that
  2131. DejaGnu has been installed under '/usr/local'):
  2132. TCL_LIBRARY = /usr/local/share/tcl8.0
  2133. DEJAGNULIBS = /usr/local/share/dejagnu
  2134. (On systems such as Cygwin, these paths are required to be actual
  2135. paths, not mounts or links; presumably this is due to some lack of
  2136. portability in the DejaGnu code.)
  2137. Finally, you can run the testsuite (which may take a long time):
  2138. cd OBJDIR; make -k check
  2139. This will test various components of GCC, such as compiler front ends
  2140. and runtime libraries. While running the testsuite, DejaGnu might emit
  2141. some harmless messages resembling 'WARNING: Couldn't find the global
  2142. config file.' or 'WARNING: Couldn't find tool init file' that can be
  2143. ignored.
  2144. If you are testing a cross-compiler, you may want to run the
  2145. testsuite on a simulator as described at
  2146. <http://gcc.gnu.org/simtest-howto.html>.
  2147. 6.1 How can you run the testsuite on selected tests?
  2148. ====================================================
  2149. In order to run sets of tests selectively, there are targets 'make
  2150. check-gcc' and language specific 'make check-c', 'make check-c++', 'make
  2151. check-d' 'make check-fortran', 'make check-ada', 'make check-objc',
  2152. 'make check-obj-c++', 'make check-lto' in the 'gcc' subdirectory of the
  2153. object directory. You can also just run 'make check' in a subdirectory
  2154. of the object directory.
  2155. A more selective way to just run all 'gcc' execute tests in the
  2156. testsuite is to use
  2157. make check-gcc RUNTESTFLAGS="execute.exp OTHER-OPTIONS"
  2158. Likewise, in order to run only the 'g++' "old-deja" tests in the
  2159. testsuite with filenames matching '9805*', you would use
  2160. make check-g++ RUNTESTFLAGS="old-deja.exp=9805* OTHER-OPTIONS"
  2161. The file-matching expression following FILENAME'.exp=' is treated as
  2162. a series of whitespace-delimited glob expressions so that multiple
  2163. patterns may be passed, although any whitespace must either be escaped
  2164. or surrounded by single quotes if multiple expressions are desired. For
  2165. example,
  2166. make check-g++ RUNTESTFLAGS="old-deja.exp=9805*\ virtual2.c OTHER-OPTIONS"
  2167. make check-g++ RUNTESTFLAGS="'old-deja.exp=9805* virtual2.c' OTHER-OPTIONS"
  2168. The '*.exp' files are located in the testsuite directories of the GCC
  2169. source, the most important ones being 'compile.exp', 'execute.exp',
  2170. 'dg.exp' and 'old-deja.exp'. To get a list of the possible '*.exp'
  2171. files, pipe the output of 'make check' into a file and look at the
  2172. 'Running ... .exp' lines.
  2173. 6.2 Passing options and running multiple testsuites
  2174. ===================================================
  2175. You can pass multiple options to the testsuite using the
  2176. '--target_board' option of DejaGNU, either passed as part of
  2177. 'RUNTESTFLAGS', or directly to 'runtest' if you prefer to work outside
  2178. the makefiles. For example,
  2179. make check-g++ RUNTESTFLAGS="--target_board=unix/-O3/-fmerge-constants"
  2180. will run the standard 'g++' testsuites ("unix" is the target name for
  2181. a standard native testsuite situation), passing '-O3 -fmerge-constants'
  2182. to the compiler on every test, i.e., slashes separate options.
  2183. You can run the testsuites multiple times using combinations of
  2184. options with a syntax similar to the brace expansion of popular shells:
  2185. ..."--target_board=arm-sim\{-mhard-float,-msoft-float\}\{-O1,-O2,-O3,\}"
  2186. (Note the empty option caused by the trailing comma in the final
  2187. group.) The following will run each testsuite eight times using the
  2188. 'arm-sim' target, as if you had specified all possible combinations
  2189. yourself:
  2190. --target_board='arm-sim/-mhard-float/-O1 \
  2191. arm-sim/-mhard-float/-O2 \
  2192. arm-sim/-mhard-float/-O3 \
  2193. arm-sim/-mhard-float \
  2194. arm-sim/-msoft-float/-O1 \
  2195. arm-sim/-msoft-float/-O2 \
  2196. arm-sim/-msoft-float/-O3 \
  2197. arm-sim/-msoft-float'
  2198. They can be combined as many times as you wish, in arbitrary ways.
  2199. This list:
  2200. ..."--target_board=unix/-Wextra\{-O3,-fno-strength\}\{-fomit-frame,\}"
  2201. will generate four combinations, all involving '-Wextra'.
  2202. The disadvantage to this method is that the testsuites are run in
  2203. serial, which is a waste on multiprocessor systems. For users with GNU
  2204. Make and a shell which performs brace expansion, you can run the
  2205. testsuites in parallel by having the shell perform the combinations and
  2206. 'make' do the parallel runs. Instead of using '--target_board', use a
  2207. special makefile target:
  2208. make -jN check-TESTSUITE//TEST-TARGET/OPTION1/OPTION2/...
  2209. For example,
  2210. make -j3 check-gcc//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
  2211. will run three concurrent "make-gcc" testsuites, eventually testing
  2212. all ten combinations as described above. Note that this is currently
  2213. only supported in the 'gcc' subdirectory. (To see how this works, try
  2214. typing 'echo' before the example given here.)
  2215. 6.3 How to interpret test results
  2216. =================================
  2217. The result of running the testsuite are various '*.sum' and '*.log'
  2218. files in the testsuite subdirectories. The '*.log' files contain a
  2219. detailed log of the compiler invocations and the corresponding results,
  2220. the '*.sum' files summarize the results. These summaries contain status
  2221. codes for all tests:
  2222. * PASS: the test passed as expected
  2223. * XPASS: the test unexpectedly passed
  2224. * FAIL: the test unexpectedly failed
  2225. * XFAIL: the test failed as expected
  2226. * UNSUPPORTED: the test is not supported on this platform
  2227. * ERROR: the testsuite detected an error
  2228. * WARNING: the testsuite detected a possible problem
  2229. It is normal for some tests to report unexpected failures. At the
  2230. current time the testing harness does not allow fine grained control
  2231. over whether or not a test is expected to fail. This problem should be
  2232. fixed in future releases.
  2233. 6.4 Submitting test results
  2234. ===========================
  2235. If you want to report the results to the GCC project, use the
  2236. 'contrib/test_summary' shell script. Start it in the OBJDIR with
  2237. SRCDIR/contrib/test_summary -p your_commentary.txt \
  2238. -m gcc-testresults@gcc.gnu.org |sh
  2239. This script uses the 'Mail' program to send the results, so make sure
  2240. it is in your 'PATH'. The file 'your_commentary.txt' is prepended to
  2241. the testsuite summary and should contain any special remarks you have on
  2242. your results or your build environment. Please do not edit the
  2243. testsuite result block or the subject line, as these messages may be
  2244. automatically processed.
  2245. 
  2246. File: gccinstall.info, Node: Final install, Prev: Testing, Up: Installing GCC
  2247. 7 Installing GCC: Final installation
  2248. ************************************
  2249. Now that GCC has been built (and optionally tested), you can install it
  2250. with
  2251. cd OBJDIR && make install
  2252. We strongly recommend to install into a target directory where there
  2253. is no previous version of GCC present. Also, the GNAT runtime should
  2254. not be stripped, as this would break certain features of the debugger
  2255. that depend on this debugging information (catching Ada exceptions for
  2256. instance).
  2257. That step completes the installation of GCC; user level binaries can
  2258. be found in 'PREFIX/bin' where PREFIX is the value you specified with
  2259. the '--prefix' to configure (or '/usr/local' by default). (If you
  2260. specified '--bindir', that directory will be used instead; otherwise, if
  2261. you specified '--exec-prefix', 'EXEC-PREFIX/bin' will be used.) Headers
  2262. for the C++ library are installed in 'PREFIX/include'; libraries in
  2263. 'LIBDIR' (normally 'PREFIX/lib'); internal parts of the compiler in
  2264. 'LIBDIR/gcc' and 'LIBEXECDIR/gcc'; documentation in info format in
  2265. 'INFODIR' (normally 'PREFIX/info').
  2266. When installing cross-compilers, GCC's executables are not only
  2267. installed into 'BINDIR', that is, 'EXEC-PREFIX/bin', but additionally
  2268. into 'EXEC-PREFIX/TARGET-ALIAS/bin', if that directory exists.
  2269. Typically, such "tooldirs" hold target-specific binutils, including
  2270. assembler and linker.
  2271. Installation into a temporary staging area or into a 'chroot' jail
  2272. can be achieved with the command
  2273. make DESTDIR=PATH-TO-ROOTDIR install
  2274. where PATH-TO-ROOTDIR is the absolute path of a directory relative to
  2275. which all installation paths will be interpreted. Note that the
  2276. directory specified by 'DESTDIR' need not exist yet; it will be created
  2277. if necessary.
  2278. There is a subtle point with tooldirs and 'DESTDIR': If you relocate
  2279. a cross-compiler installation with e.g. 'DESTDIR=ROOTDIR', then the
  2280. directory 'ROOTDIR/EXEC-PREFIX/TARGET-ALIAS/bin' will be filled with
  2281. duplicated GCC executables only if it already exists, it will not be
  2282. created otherwise. This is regarded as a feature, not as a bug, because
  2283. it gives slightly more control to the packagers using the 'DESTDIR'
  2284. feature.
  2285. You can install stripped programs and libraries with
  2286. make install-strip
  2287. If you are bootstrapping a released version of GCC then please
  2288. quickly review the build status page for your release, available from
  2289. <http://gcc.gnu.org/buildstat.html>. If your system is not listed for
  2290. the version of GCC that you built, send a note to <gcc@gcc.gnu.org>
  2291. indicating that you successfully built and installed GCC. Include the
  2292. following information:
  2293. * Output from running 'SRCDIR/config.guess'. Do not send that file
  2294. itself, just the one-line output from running it.
  2295. * The output of 'gcc -v' for your newly installed 'gcc'. This tells
  2296. us which version of GCC you built and the options you passed to
  2297. configure.
  2298. * Whether you enabled all languages or a subset of them. If you used
  2299. a full distribution then this information is part of the configure
  2300. options in the output of 'gcc -v', but if you downloaded the "core"
  2301. compiler plus additional front ends then it isn't apparent which
  2302. ones you built unless you tell us about it.
  2303. * If the build was for GNU/Linux, also include:
  2304. * The distribution name and version (e.g., Red Hat 7.1 or Debian
  2305. 2.2.3); this information should be available from
  2306. '/etc/issue'.
  2307. * The version of the Linux kernel, available from 'uname
  2308. --version' or 'uname -a'.
  2309. * The version of glibc you used; for RPM-based systems like Red
  2310. Hat, Mandrake, and SuSE type 'rpm -q glibc' to get the glibc
  2311. version, and on systems like Debian and Progeny use 'dpkg -l
  2312. libc6'.
  2313. For other systems, you can include similar information if you think
  2314. it is relevant.
  2315. * Any other information that you think would be useful to people
  2316. building GCC on the same configuration. The new entry in the build
  2317. status list will include a link to the archived copy of your
  2318. message.
  2319. We'd also like to know if the *note host/target specific installation
  2320. notes: Specific. didn't include your host/target information or if that
  2321. information is incomplete or out of date. Send a note to
  2322. <gcc@gcc.gnu.org> detailing how the information should be changed.
  2323. If you find a bug, please report it following the bug reporting
  2324. guidelines.
  2325. If you want to print the GCC manuals, do 'cd OBJDIR; make dvi'. You
  2326. will need to have 'texi2dvi' (version at least 4.7) and TeX installed.
  2327. This creates a number of '.dvi' files in subdirectories of 'OBJDIR';
  2328. these may be converted for printing with programs such as 'dvips'.
  2329. Alternately, by using 'make pdf' in place of 'make dvi', you can create
  2330. documentation in the form of '.pdf' files; this requires 'texi2pdf',
  2331. which is included with Texinfo version 4.8 and later. You can also buy
  2332. printed manuals from the Free Software Foundation, though such manuals
  2333. may not be for the most recent version of GCC.
  2334. If you would like to generate online HTML documentation, do 'cd
  2335. OBJDIR; make html' and HTML will be generated for the gcc manuals in
  2336. 'OBJDIR/gcc/HTML'.
  2337. 
  2338. File: gccinstall.info, Node: Binaries, Next: Specific, Prev: Installing GCC, Up: Top
  2339. 8 Installing GCC: Binaries
  2340. **************************
  2341. We are often asked about pre-compiled versions of GCC. While we cannot
  2342. provide these for all platforms, below you'll find links to binaries for
  2343. various platforms where creating them by yourself is not easy due to
  2344. various reasons.
  2345. Please note that we did not create these binaries, nor do we support
  2346. them. If you have any problems installing them, please contact their
  2347. makers.
  2348. * AIX:
  2349. * Bull's Open Source Software Archive for for AIX 6 and AIX 7;
  2350. * AIX Open Source Packages (AIX5L AIX 6.1 AIX 7.1).
  2351. * DOS--DJGPP.
  2352. * HP-UX:
  2353. * HP-UX Porting Center;
  2354. * Solaris 2 (SPARC, Intel):
  2355. * OpenCSW
  2356. * macOS:
  2357. * The Homebrew package manager;
  2358. * MacPorts.
  2359. * Microsoft Windows:
  2360. * The Cygwin project;
  2361. * The MinGW and mingw-w64 projects.
  2362. * OpenPKG offers binaries for quite a number of platforms.
  2363. * The GFortran Wiki has links to GNU Fortran binaries for several
  2364. platforms.
  2365. 
  2366. File: gccinstall.info, Node: Specific, Next: Old, Prev: Binaries, Up: Top
  2367. 9 Host/target specific installation notes for GCC
  2368. *************************************************
  2369. Please read this document carefully _before_ installing the GNU Compiler
  2370. Collection on your machine.
  2371. Note that this list of install notes is _not_ a list of supported
  2372. hosts or targets. Not all supported hosts and targets are listed here,
  2373. only the ones that require host-specific or target-specific information
  2374. have to.
  2375. aarch64*-*-*
  2376. ============
  2377. Binutils pre 2.24 does not have support for selecting '-mabi' and does
  2378. not support ILP32. If it is used to build GCC 4.9 or later, GCC will
  2379. not support option '-mabi=ilp32'.
  2380. To enable a workaround for the Cortex-A53 erratum number 835769 by
  2381. default (for all CPUs regardless of -mcpu option given) at configure
  2382. time use the '--enable-fix-cortex-a53-835769' option. This will enable
  2383. the fix by default and can be explicitly disabled during compilation by
  2384. passing the '-mno-fix-cortex-a53-835769' option. Conversely,
  2385. '--disable-fix-cortex-a53-835769' will disable the workaround by
  2386. default. The workaround is disabled by default if neither of
  2387. '--enable-fix-cortex-a53-835769' or '--disable-fix-cortex-a53-835769' is
  2388. given at configure time.
  2389. To enable a workaround for the Cortex-A53 erratum number 843419 by
  2390. default (for all CPUs regardless of -mcpu option given) at configure
  2391. time use the '--enable-fix-cortex-a53-843419' option. This workaround
  2392. is applied at link time. Enabling the workaround will cause GCC to pass
  2393. the relevant option to the linker. It can be explicitly disabled during
  2394. compilation by passing the '-mno-fix-cortex-a53-843419' option.
  2395. Conversely, '--disable-fix-cortex-a53-843419' will disable the
  2396. workaround by default. The workaround is disabled by default if neither
  2397. of '--enable-fix-cortex-a53-843419' or '--disable-fix-cortex-a53-843419'
  2398. is given at configure time.
  2399. To enable Branch Target Identification Mechanism and Return Address
  2400. Signing by default at configure time use the
  2401. '--enable-standard-branch-protection' option. This is equivalent to
  2402. having '-mbranch-protection=standard' during compilation. This can be
  2403. explicitly disabled during compilation by passing the
  2404. '-mbranch-protection=none' option which turns off all types of branch
  2405. protections. Conversely, '--disable-standard-branch-protection' will
  2406. disable both the protections by default. This mechanism is turned off
  2407. by default if neither of the options are given at configure time.
  2408. alpha*-*-*
  2409. ==========
  2410. This section contains general configuration information for all
  2411. Alpha-based platforms using ELF. In addition to reading this section,
  2412. please read all other sections that match your target.
  2413. amd64-*-solaris2*
  2414. =================
  2415. This is a synonym for 'x86_64-*-solaris2*'.
  2416. amdgcn-*-amdhsa
  2417. ===============
  2418. AMD GCN GPU target.
  2419. Instead of GNU Binutils, you will need to install LLVM 6, or later,
  2420. and copy 'bin/llvm-mc' to 'amdgcn-amdhsa/bin/as', 'bin/lld' to
  2421. 'amdgcn-amdhsa/bin/ld', 'bin/llvm-nm' to 'amdgcn-amdhsa/bin/nm', and
  2422. 'bin/llvm-ar' to both 'bin/amdgcn-amdhsa-ar' and
  2423. 'bin/amdgcn-amdhsa-ranlib'.
  2424. Use Newlib (2019-01-16, or newer).
  2425. To run the binaries, install the HSA Runtime from the ROCm Platform,
  2426. and use 'libexec/gcc/amdhsa-amdhsa/VERSION/gcn-run' to launch them on
  2427. the GPU.
  2428. arc-*-elf32
  2429. ===========
  2430. Use 'configure --target=arc-elf32 --with-cpu=CPU
  2431. --enable-languages="c,c++"' to configure GCC, with CPU being one of
  2432. 'arc600', 'arc601', or 'arc700'.
  2433. arc-linux-uclibc
  2434. ================
  2435. Use 'configure --target=arc-linux-uclibc --with-cpu=arc700
  2436. --enable-languages="c,c++"' to configure GCC.
  2437. arm-*-eabi
  2438. ==========
  2439. ARM-family processors.
  2440. Building the Ada frontend commonly fails (an infinite loop executing
  2441. 'xsinfo') if the host compiler is GNAT 4.8. Host compilers built from
  2442. the GNAT 4.6, 4.9 or 5 release branches are known to succeed.
  2443. avr
  2444. ===
  2445. ATMEL AVR-family micro controllers. These are used in embedded
  2446. applications. There are no standard Unix configurations. *Note AVR
  2447. Options: (gcc)AVR Options, for the list of supported MCU types.
  2448. Use 'configure --target=avr --enable-languages="c"' to configure GCC.
  2449. Further installation notes and other useful information about AVR
  2450. tools can also be obtained from:
  2451. * http://www.nongnu.org/avr/
  2452. * http://www.amelek.gda.pl/avr/
  2453. The following error:
  2454. Error: register required
  2455. indicates that you should upgrade to a newer version of the binutils.
  2456. Blackfin
  2457. ========
  2458. The Blackfin processor, an Analog Devices DSP. *Note Blackfin Options:
  2459. (gcc)Blackfin Options,
  2460. More information, and a version of binutils with support for this
  2461. processor, are available at
  2462. <https://sourceforge.net/projects/adi-toolchain/>.
  2463. CR16
  2464. ====
  2465. The CR16 CompactRISC architecture is a 16-bit architecture. This
  2466. architecture is used in embedded applications.
  2467. *Note CR16 Options: (gcc)CR16 Options,
  2468. Use 'configure --target=cr16-elf --enable-languages=c,c++' to
  2469. configure GCC for building a CR16 elf cross-compiler.
  2470. Use 'configure --target=cr16-uclinux --enable-languages=c,c++' to
  2471. configure GCC for building a CR16 uclinux cross-compiler.
  2472. CRIS
  2473. ====
  2474. CRIS is the CPU architecture in Axis Communications ETRAX
  2475. system-on-a-chip series. These are used in embedded applications.
  2476. *Note CRIS Options: (gcc)CRIS Options, for a list of CRIS-specific
  2477. options.
  2478. There are a few different CRIS targets:
  2479. 'cris-axis-elf'
  2480. Mainly for monolithic embedded systems. Includes a multilib for
  2481. the 'v10' core used in 'ETRAX 100 LX'.
  2482. 'cris-axis-linux-gnu'
  2483. A GNU/Linux port for the CRIS architecture, currently targeting
  2484. 'ETRAX 100 LX' by default.
  2485. Pre-packaged tools can be obtained from
  2486. <ftp://ftp.axis.com/pub/axis/tools/cris/compiler-kit/>. More
  2487. information about this platform is available at
  2488. <http://developer.axis.com/>.
  2489. DOS
  2490. ===
  2491. Please have a look at the binaries page.
  2492. You cannot install GCC by itself on MSDOS; it will not compile under
  2493. any MSDOS compiler except itself. You need to get the complete
  2494. compilation package DJGPP, which includes binaries as well as sources,
  2495. and includes all the necessary compilation tools and libraries.
  2496. epiphany-*-elf
  2497. ==============
  2498. Adapteva Epiphany. This configuration is intended for embedded systems.
  2499. *-*-freebsd*
  2500. ============
  2501. Support for FreeBSD 1 was discontinued in GCC 3.2. Support for FreeBSD
  2502. 2 (and any mutant a.out variants of FreeBSD 3) was discontinued in GCC
  2503. 4.0.
  2504. In order to better utilize FreeBSD base system functionality and
  2505. match the configuration of the system compiler, GCC 4.5 and above as
  2506. well as GCC 4.4 past 2010-06-20 leverage SSP support in libc (which is
  2507. present on FreeBSD 7 or later) and the use of '__cxa_atexit' by default
  2508. (on FreeBSD 6 or later). The use of 'dl_iterate_phdr' inside
  2509. 'libgcc_s.so.1' and boehm-gc (on FreeBSD 7 or later) is enabled by GCC
  2510. 4.5 and above.
  2511. We support FreeBSD using the ELF file format with DWARF 2 debugging
  2512. for all CPU architectures. You may use '-gstabs' instead of '-g', if
  2513. you really want the old debugging format. There are no known issues
  2514. with mixing object files and libraries with different debugging formats.
  2515. Otherwise, this release of GCC should now match more of the
  2516. configuration used in the stock FreeBSD configuration of GCC. In
  2517. particular, '--enable-threads' is now configured by default. However,
  2518. as a general user, do not attempt to replace the system compiler with
  2519. this release. Known to bootstrap and check with good results on FreeBSD
  2520. 7.2-STABLE. In the past, known to bootstrap and check with good results
  2521. on FreeBSD 3.0, 3.4, 4.0, 4.2, 4.3, 4.4, 4.5, 4.8, 4.9 and 5-CURRENT.
  2522. The version of binutils installed in '/usr/bin' probably works with
  2523. this release of GCC. Bootstrapping against the latest GNU binutils
  2524. and/or the version found in '/usr/ports/devel/binutils' has been known
  2525. to enable additional features and improve overall testsuite results.
  2526. However, it is currently known that boehm-gc may not configure properly
  2527. on FreeBSD prior to the FreeBSD 7.0 release with GNU binutils after
  2528. 2.16.1.
  2529. ft32-*-elf
  2530. ==========
  2531. The FT32 processor. This configuration is intended for embedded
  2532. systems.
  2533. h8300-hms
  2534. =========
  2535. Renesas H8/300 series of processors.
  2536. Please have a look at the binaries page.
  2537. The calling convention and structure layout has changed in release
  2538. 2.6. All code must be recompiled. The calling convention now passes
  2539. the first three arguments in function calls in registers. Structures
  2540. are no longer a multiple of 2 bytes.
  2541. hppa*-hp-hpux*
  2542. ==============
  2543. Support for HP-UX version 9 and older was discontinued in GCC 3.4.
  2544. We require using gas/binutils on all hppa platforms. Version 2.19 or
  2545. later is recommended.
  2546. It may be helpful to configure GCC with the '--with-gnu-as' and
  2547. '--with-as=...' options to ensure that GCC can find GAS.
  2548. The HP assembler should not be used with GCC. It is rarely tested and
  2549. may not work. It shouldn't be used with any languages other than C due
  2550. to its many limitations.
  2551. Specifically, '-g' does not work (HP-UX uses a peculiar debugging
  2552. format which GCC does not know about). It also inserts timestamps into
  2553. each object file it creates, causing the 3-stage comparison test to fail
  2554. during a bootstrap. You should be able to continue by saying 'make
  2555. all-host all-target' after getting the failure from 'make'.
  2556. Various GCC features are not supported. For example, it does not
  2557. support weak symbols or alias definitions. As a result, explicit
  2558. template instantiations are required when using C++. This makes it
  2559. difficult if not impossible to build many C++ applications.
  2560. There are two default scheduling models for instructions. These are
  2561. PROCESSOR_7100LC and PROCESSOR_8000. They are selected from the pa-risc
  2562. architecture specified for the target machine when configuring.
  2563. PROCESSOR_8000 is the default. PROCESSOR_7100LC is selected when the
  2564. target is a 'hppa1*' machine.
  2565. The PROCESSOR_8000 model is not well suited to older processors.
  2566. Thus, it is important to completely specify the machine architecture
  2567. when configuring if you want a model other than PROCESSOR_8000. The
  2568. macro TARGET_SCHED_DEFAULT can be defined in BOOT_CFLAGS if a different
  2569. default scheduling model is desired.
  2570. As of GCC 4.0, GCC uses the UNIX 95 namespace for HP-UX 10.10 through
  2571. 11.00, and the UNIX 98 namespace for HP-UX 11.11 and later. This
  2572. namespace change might cause problems when bootstrapping with an earlier
  2573. version of GCC or the HP compiler as essentially the same namespace is
  2574. required for an entire build. This problem can be avoided in a number
  2575. of ways. With HP cc, 'UNIX_STD' can be set to '95' or '98'. Another
  2576. way is to add an appropriate set of predefines to 'CC'. The description
  2577. for the 'munix=' option contains a list of the predefines used with each
  2578. standard.
  2579. More specific information to 'hppa*-hp-hpux*' targets follows.
  2580. hppa*-hp-hpux10
  2581. ===============
  2582. For hpux10.20, we _highly_ recommend you pick up the latest sed patch
  2583. 'PHCO_19798' from HP.
  2584. The C++ ABI has changed incompatibly in GCC 4.0. COMDAT subspaces
  2585. are used for one-only code and data. This resolves many of the previous
  2586. problems in using C++ on this target. However, the ABI is not
  2587. compatible with the one implemented under HP-UX 11 using secondary
  2588. definitions.
  2589. hppa*-hp-hpux11
  2590. ===============
  2591. GCC 3.0 and up support HP-UX 11. GCC 2.95.x is not supported and cannot
  2592. be used to compile GCC 3.0 and up.
  2593. The libffi library haven't been ported to 64-bit HP-UX and doesn't
  2594. build.
  2595. Refer to binaries for information about obtaining precompiled GCC
  2596. binaries for HP-UX. Precompiled binaries must be obtained to build the
  2597. Ada language as it cannot be bootstrapped using C. Ada is only
  2598. available for the 32-bit PA-RISC runtime.
  2599. Starting with GCC 3.4 an ISO C compiler is required to bootstrap.
  2600. The bundled compiler supports only traditional C; you will need either
  2601. HP's unbundled compiler, or a binary distribution of GCC.
  2602. It is possible to build GCC 3.3 starting with the bundled HP
  2603. compiler, but the process requires several steps. GCC 3.3 can then be
  2604. used to build later versions.
  2605. There are several possible approaches to building the distribution.
  2606. Binutils can be built first using the HP tools. Then, the GCC
  2607. distribution can be built. The second approach is to build GCC first
  2608. using the HP tools, then build binutils, then rebuild GCC. There have
  2609. been problems with various binary distributions, so it is best not to
  2610. start from a binary distribution.
  2611. On 64-bit capable systems, there are two distinct targets. Different
  2612. installation prefixes must be used if both are to be installed on the
  2613. same system. The 'hppa[1-2]*-hp-hpux11*' target generates code for the
  2614. 32-bit PA-RISC runtime architecture and uses the HP linker. The
  2615. 'hppa64-hp-hpux11*' target generates 64-bit code for the PA-RISC 2.0
  2616. architecture.
  2617. The script config.guess now selects the target type based on the
  2618. compiler detected during configuration. You must define 'PATH' or 'CC'
  2619. so that configure finds an appropriate compiler for the initial
  2620. bootstrap. When 'CC' is used, the definition should contain the options
  2621. that are needed whenever 'CC' is used.
  2622. Specifically, options that determine the runtime architecture must be
  2623. in 'CC' to correctly select the target for the build. It is also
  2624. convenient to place many other compiler options in 'CC'. For example,
  2625. 'CC="cc -Ac +DA2.0W -Wp,-H16376 -D_CLASSIC_TYPES -D_HPUX_SOURCE"' can be
  2626. used to bootstrap the GCC 3.3 branch with the HP compiler in 64-bit
  2627. K&R/bundled mode. The '+DA2.0W' option will result in the automatic
  2628. selection of the 'hppa64-hp-hpux11*' target. The macro definition table
  2629. of cpp needs to be increased for a successful build with the HP
  2630. compiler. _CLASSIC_TYPES and _HPUX_SOURCE need to be defined when
  2631. building with the bundled compiler, or when using the '-Ac' option.
  2632. These defines aren't necessary with '-Ae'.
  2633. It is best to explicitly configure the 'hppa64-hp-hpux11*' target
  2634. with the '--with-ld=...' option. This overrides the standard search for
  2635. ld. The two linkers supported on this target require different
  2636. commands. The default linker is determined during configuration. As a
  2637. result, it's not possible to switch linkers in the middle of a GCC
  2638. build. This has been reported to sometimes occur in unified builds of
  2639. binutils and GCC.
  2640. A recent linker patch must be installed for the correct operation of
  2641. GCC 3.3 and later. 'PHSS_26559' and 'PHSS_24304' are the oldest linker
  2642. patches that are known to work. They are for HP-UX 11.00 and 11.11,
  2643. respectively. 'PHSS_24303', the companion to 'PHSS_24304', might be
  2644. usable but it hasn't been tested. These patches have been superseded.
  2645. Consult the HP patch database to obtain the currently recommended linker
  2646. patch for your system.
  2647. The patches are necessary for the support of weak symbols on the
  2648. 32-bit port, and for the running of initializers and finalizers. Weak
  2649. symbols are implemented using SOM secondary definition symbols. Prior
  2650. to HP-UX 11, there are bugs in the linker support for secondary symbols.
  2651. The patches correct a problem of linker core dumps creating shared
  2652. libraries containing secondary symbols, as well as various other linking
  2653. issues involving secondary symbols.
  2654. GCC 3.3 uses the ELF DT_INIT_ARRAY and DT_FINI_ARRAY capabilities to
  2655. run initializers and finalizers on the 64-bit port. The 32-bit port
  2656. uses the linker '+init' and '+fini' options for the same purpose. The
  2657. patches correct various problems with the +init/+fini options, including
  2658. program core dumps. Binutils 2.14 corrects a problem on the 64-bit port
  2659. resulting from HP's non-standard use of the .init and .fini sections for
  2660. array initializers and finalizers.
  2661. Although the HP and GNU linkers are both supported for the
  2662. 'hppa64-hp-hpux11*' target, it is strongly recommended that the HP
  2663. linker be used for link editing on this target.
  2664. At this time, the GNU linker does not support the creation of long
  2665. branch stubs. As a result, it cannot successfully link binaries
  2666. containing branch offsets larger than 8 megabytes. In addition, there
  2667. are problems linking shared libraries, linking executables with
  2668. '-static', and with dwarf2 unwind and exception support. It also
  2669. doesn't provide stubs for internal calls to global functions in shared
  2670. libraries, so these calls cannot be overloaded.
  2671. The HP dynamic loader does not support GNU symbol versioning, so
  2672. symbol versioning is not supported. It may be necessary to disable
  2673. symbol versioning with '--disable-symvers' when using GNU ld.
  2674. POSIX threads are the default. The optional DCE thread library is
  2675. not supported, so '--enable-threads=dce' does not work.
  2676. *-*-linux-gnu
  2677. =============
  2678. Versions of libstdc++-v3 starting with 3.2.1 require bug fixes present
  2679. in glibc 2.2.5 and later. More information is available in the
  2680. libstdc++-v3 documentation.
  2681. i?86-*-linux*
  2682. =============
  2683. As of GCC 3.3, binutils 2.13.1 or later is required for this platform.
  2684. See bug 10877 for more information.
  2685. If you receive Signal 11 errors when building on GNU/Linux, then it
  2686. is possible you have a hardware problem. Further information on this
  2687. can be found on www.bitwizard.nl.
  2688. i?86-*-solaris2*
  2689. ================
  2690. Use this for Solaris 11.3 or later on x86 and x86-64 systems. Starting
  2691. with GCC 4.7, there is also a 64-bit 'amd64-*-solaris2*' or
  2692. 'x86_64-*-solaris2*' configuration that corresponds to
  2693. 'sparcv9-sun-solaris2*'.
  2694. It is recommended that you configure GCC to use the GNU assembler.
  2695. The versions included in Solaris 11.3, from GNU binutils 2.23.1 or newer
  2696. (available as '/usr/bin/gas' and '/usr/gnu/bin/as'), work fine. The
  2697. current version, from GNU binutils 2.34, is known to work. Recent
  2698. versions of the Solaris assembler in '/usr/bin/as' work almost as well,
  2699. though.
  2700. For linking, the Solaris linker is preferred. If you want to use the
  2701. GNU linker instead, the version in Solaris 11.3, from GNU binutils
  2702. 2.23.1 or newer (in '/usr/gnu/bin/ld' and '/usr/bin/gld'), works, as
  2703. does the latest version, from GNU binutils 2.34.
  2704. To use GNU 'as', configure with the options '--with-gnu-as
  2705. --with-as=/usr/gnu/bin/as'. It may be necessary to configure with
  2706. '--without-gnu-ld --with-ld=/usr/ccs/bin/ld' to guarantee use of Solaris
  2707. 'ld'.
  2708. ia64-*-linux
  2709. ============
  2710. IA-64 processor (also known as IPF, or Itanium Processor Family) running
  2711. GNU/Linux.
  2712. If you are using the installed system libunwind library with
  2713. '--with-system-libunwind', then you must use libunwind 0.98 or later.
  2714. None of the following versions of GCC has an ABI that is compatible
  2715. with any of the other versions in this list, with the exception that Red
  2716. Hat 2.96 and Trillian 000171 are compatible with each other: 3.1, 3.0.2,
  2717. 3.0.1, 3.0, Red Hat 2.96, and Trillian 000717. This primarily affects
  2718. C++ programs and programs that create shared libraries. GCC 3.1 or
  2719. later is recommended for compiling linux, the kernel. As of version 3.1
  2720. GCC is believed to be fully ABI compliant, and hence no more major ABI
  2721. changes are expected.
  2722. ia64-*-hpux*
  2723. ============
  2724. Building GCC on this target requires the GNU Assembler. The bundled HP
  2725. assembler will not work. To prevent GCC from using the wrong assembler,
  2726. the option '--with-gnu-as' may be necessary.
  2727. The GCC libunwind library has not been ported to HPUX. This means
  2728. that for GCC versions 3.2.3 and earlier, '--enable-libunwind-exceptions'
  2729. is required to build GCC. For GCC 3.3 and later, this is the default.
  2730. For gcc 3.4.3 and later, '--enable-libunwind-exceptions' is removed and
  2731. the system libunwind library will always be used.
  2732. *-ibm-aix*
  2733. ==========
  2734. Support for AIX version 3 and older was discontinued in GCC 3.4.
  2735. Support for AIX version 4.2 and older was discontinued in GCC 4.5.
  2736. "out of memory" bootstrap failures may indicate a problem with
  2737. process resource limits (ulimit). Hard limits are configured in the
  2738. '/etc/security/limits' system configuration file.
  2739. GCC 4.9 and above require a C++ compiler for bootstrap. IBM VAC++ /
  2740. xlC cannot bootstrap GCC. xlc can bootstrap an older version of GCC and
  2741. G++ can bootstrap recent releases of GCC.
  2742. GCC can bootstrap with recent versions of IBM XLC, but bootstrapping
  2743. with an earlier release of GCC is recommended. Bootstrapping with XLC
  2744. requires a larger data segment, which can be enabled through the
  2745. LDR_CNTRL environment variable, e.g.,
  2746. % LDR_CNTRL=MAXDATA=0x50000000
  2747. % export LDR_CNTRL
  2748. One can start with a pre-compiled version of GCC to build from
  2749. sources. One may delete GCC's "fixed" header files when starting with a
  2750. version of GCC built for an earlier release of AIX.
  2751. To speed up the configuration phases of bootstrapping and installing
  2752. GCC, one may use GNU Bash instead of AIX '/bin/sh', e.g.,
  2753. % CONFIG_SHELL=/opt/freeware/bin/bash
  2754. % export CONFIG_SHELL
  2755. and then proceed as described in the build instructions, where we
  2756. strongly recommend specifying an absolute path to invoke
  2757. SRCDIR/configure.
  2758. Because GCC on AIX is built as a 32-bit executable by default,
  2759. (although it can generate 64-bit programs) the GMP and MPFR libraries
  2760. required by gfortran must be 32-bit libraries. Building GMP and MPFR as
  2761. static archive libraries works better than shared libraries.
  2762. Errors involving 'alloca' when building GCC generally are due to an
  2763. incorrect definition of 'CC' in the Makefile or mixing files compiled
  2764. with the native C compiler and GCC. During the stage1 phase of the
  2765. build, the native AIX compiler *must* be invoked as 'cc' (not 'xlc').
  2766. Once 'configure' has been informed of 'xlc', one needs to use 'make
  2767. distclean' to remove the configure cache files and ensure that 'CC'
  2768. environment variable does not provide a definition that will confuse
  2769. 'configure'. If this error occurs during stage2 or later, then the
  2770. problem most likely is the version of Make (see above).
  2771. The native 'as' and 'ld' are recommended for bootstrapping on AIX.
  2772. The GNU Assembler, GNU Linker, and GNU Binutils version 2.20 is the
  2773. minimum level that supports bootstrap on AIX 5. The GNU Assembler has
  2774. not been updated to support AIX 6 or AIX 7. The native AIX tools do
  2775. interoperate with GCC.
  2776. AIX 7.1 added partial support for DWARF debugging, but full support
  2777. requires AIX 7.1 TL03 SP7 that supports additional DWARF sections and
  2778. fixes a bug in the assembler. AIX 7.1 TL03 SP5 distributed a version of
  2779. libm.a missing important symbols; a fix for IV77796 will be included in
  2780. SP6.
  2781. AIX 5.3 TL10, AIX 6.1 TL05 and AIX 7.1 TL00 introduced an AIX
  2782. assembler change that sometimes produces corrupt assembly files causing
  2783. AIX linker errors. The bug breaks GCC bootstrap on AIX and can cause
  2784. compilation failures with existing GCC installations. An AIX iFix for
  2785. AIX 5.3 is available (APAR IZ98385 for AIX 5.3 TL10, APAR IZ98477 for
  2786. AIX 5.3 TL11 and IZ98134 for AIX 5.3 TL12). AIX 5.3 TL11 SP8, AIX 5.3
  2787. TL12 SP5, AIX 6.1 TL04 SP11, AIX 6.1 TL05 SP7, AIX 6.1 TL06 SP6, AIX 6.1
  2788. TL07 and AIX 7.1 TL01 should include the fix.
  2789. Building 'libstdc++.a' requires a fix for an AIX Assembler bug APAR
  2790. IY26685 (AIX 4.3) or APAR IY25528 (AIX 5.1). It also requires a fix for
  2791. another AIX Assembler bug and a co-dependent AIX Archiver fix referenced
  2792. as APAR IY53606 (AIX 5.2) or as APAR IY54774 (AIX 5.1)
  2793. 'libstdc++' in GCC 3.4 increments the major version number of the
  2794. shared object and GCC installation places the 'libstdc++.a' shared
  2795. library in a common location which will overwrite the and GCC 3.3
  2796. version of the shared library. Applications either need to be re-linked
  2797. against the new shared library or the GCC 3.1 and GCC 3.3 versions of
  2798. the 'libstdc++' shared object needs to be available to the AIX runtime
  2799. loader. The GCC 3.1 'libstdc++.so.4', if present, and GCC 3.3
  2800. 'libstdc++.so.5' shared objects can be installed for runtime dynamic
  2801. loading using the following steps to set the 'F_LOADONLY' flag in the
  2802. shared object for _each_ multilib 'libstdc++.a' installed:
  2803. Extract the shared objects from the currently installed 'libstdc++.a'
  2804. archive:
  2805. % ar -x libstdc++.a libstdc++.so.4 libstdc++.so.5
  2806. Enable the 'F_LOADONLY' flag so that the shared object will be
  2807. available for runtime dynamic loading, but not linking:
  2808. % strip -e libstdc++.so.4 libstdc++.so.5
  2809. Archive the runtime-only shared object in the GCC 3.4 'libstdc++.a'
  2810. archive:
  2811. % ar -q libstdc++.a libstdc++.so.4 libstdc++.so.5
  2812. Eventually, the '--with-aix-soname=svr4' configure option may drop
  2813. the need for this procedure for libraries that support it.
  2814. Linking executables and shared libraries may produce warnings of
  2815. duplicate symbols. The assembly files generated by GCC for AIX always
  2816. have included multiple symbol definitions for certain global variable
  2817. and function declarations in the original program. The warnings should
  2818. not prevent the linker from producing a correct library or runnable
  2819. executable.
  2820. AIX 4.3 utilizes a "large format" archive to support both 32-bit and
  2821. 64-bit object modules. The routines provided in AIX 4.3.0 and AIX 4.3.1
  2822. to parse archive libraries did not handle the new format correctly.
  2823. These routines are used by GCC and result in error messages during
  2824. linking such as "not a COFF file". The version of the routines shipped
  2825. with AIX 4.3.1 should work for a 32-bit environment. The '-g' option of
  2826. the archive command may be used to create archives of 32-bit objects
  2827. using the original "small format". A correct version of the routines is
  2828. shipped with AIX 4.3.2 and above.
  2829. Some versions of the AIX binder (linker) can fail with a relocation
  2830. overflow severe error when the '-bbigtoc' option is used to link
  2831. GCC-produced object files into an executable that overflows the TOC. A
  2832. fix for APAR IX75823 (OVERFLOW DURING LINK WHEN USING GCC AND -BBIGTOC)
  2833. is available from IBM Customer Support and from its
  2834. techsupport.services.ibm.com website as PTF U455193.
  2835. The AIX 4.3.2.1 linker (bos.rte.bind_cmds Level 4.3.2.1) will dump
  2836. core with a segmentation fault when invoked by any version of GCC. A
  2837. fix for APAR IX87327 is available from IBM Customer Support and from its
  2838. techsupport.services.ibm.com website as PTF U461879. This fix is
  2839. incorporated in AIX 4.3.3 and above.
  2840. The initial assembler shipped with AIX 4.3.0 generates incorrect
  2841. object files. A fix for APAR IX74254 (64BIT DISASSEMBLED OUTPUT FROM
  2842. COMPILER FAILS TO ASSEMBLE/BIND) is available from IBM Customer Support
  2843. and from its techsupport.services.ibm.com website as PTF U453956. This
  2844. fix is incorporated in AIX 4.3.1 and above.
  2845. AIX provides National Language Support (NLS). Compilers and
  2846. assemblers use NLS to support locale-specific representations of various
  2847. data formats including floating-point numbers (e.g., '.' vs ',' for
  2848. separating decimal fractions). There have been problems reported where
  2849. GCC does not produce the same floating-point formats that the assembler
  2850. expects. If one encounters this problem, set the 'LANG' environment
  2851. variable to 'C' or 'En_US'.
  2852. A default can be specified with the '-mcpu=CPU_TYPE' switch and using
  2853. the configure option '--with-cpu-CPU_TYPE'.
  2854. iq2000-*-elf
  2855. ============
  2856. Vitesse IQ2000 processors. These are used in embedded applications.
  2857. There are no standard Unix configurations.
  2858. lm32-*-elf
  2859. ==========
  2860. Lattice Mico32 processor. This configuration is intended for embedded
  2861. systems.
  2862. lm32-*-uclinux
  2863. ==============
  2864. Lattice Mico32 processor. This configuration is intended for embedded
  2865. systems running uClinux.
  2866. m32c-*-elf
  2867. ==========
  2868. Renesas M32C processor. This configuration is intended for embedded
  2869. systems.
  2870. m32r-*-elf
  2871. ==========
  2872. Renesas M32R processor. This configuration is intended for embedded
  2873. systems.
  2874. m68k-*-*
  2875. ========
  2876. By default, 'm68k-*-elf*', 'm68k-*-rtems', 'm68k-*-uclinux' and
  2877. 'm68k-*-linux' build libraries for both M680x0 and ColdFire processors.
  2878. If you only need the M680x0 libraries, you can omit the ColdFire ones by
  2879. passing '--with-arch=m68k' to 'configure'. Alternatively, you can omit
  2880. the M680x0 libraries by passing '--with-arch=cf' to 'configure'. These
  2881. targets default to 5206 or 5475 code as appropriate for the target
  2882. system when configured with '--with-arch=cf' and 68020 code otherwise.
  2883. The 'm68k-*-netbsd' and 'm68k-*-openbsd' targets also support the
  2884. '--with-arch' option. They will generate ColdFire CFV4e code when
  2885. configured with '--with-arch=cf' and 68020 code otherwise.
  2886. You can override the default processors listed above by configuring
  2887. with '--with-cpu=TARGET'. This TARGET can either be a '-mcpu' argument
  2888. or one of the following values: 'm68000', 'm68010', 'm68020', 'm68030',
  2889. 'm68040', 'm68060', 'm68020-40' and 'm68020-60'.
  2890. GCC requires at least binutils version 2.17 on these targets.
  2891. m68k-*-uclinux
  2892. ==============
  2893. GCC 4.3 changed the uClinux configuration so that it uses the
  2894. 'm68k-linux-gnu' ABI rather than the 'm68k-elf' ABI. It also added
  2895. improved support for C++ and flat shared libraries, both of which were
  2896. ABI changes.
  2897. microblaze-*-elf
  2898. ================
  2899. Xilinx MicroBlaze processor. This configuration is intended for
  2900. embedded systems.
  2901. mips-*-*
  2902. ========
  2903. If on a MIPS system you get an error message saying "does not have gp
  2904. sections for all it's [sic] sectons [sic]", don't worry about it. This
  2905. happens whenever you use GAS with the MIPS linker, but there is not
  2906. really anything wrong, and it is okay to use the output file. You can
  2907. stop such warnings by installing the GNU linker.
  2908. It would be nice to extend GAS to produce the gp tables, but they are
  2909. optional, and there should not be a warning about their absence.
  2910. The libstdc++ atomic locking routines for MIPS targets requires MIPS
  2911. II and later. A patch went in just after the GCC 3.3 release to make
  2912. 'mips*-*-*' use the generic implementation instead. You can also
  2913. configure for 'mipsel-elf' as a workaround. The 'mips*-*-linux*' target
  2914. continues to use the MIPS II routines. More work on this is expected in
  2915. future releases.
  2916. The built-in '__sync_*' functions are available on MIPS II and later
  2917. systems and others that support the 'll', 'sc' and 'sync' instructions.
  2918. This can be overridden by passing '--with-llsc' or '--without-llsc' when
  2919. configuring GCC. Since the Linux kernel emulates these instructions if
  2920. they are missing, the default for 'mips*-*-linux*' targets is
  2921. '--with-llsc'. The '--with-llsc' and '--without-llsc' configure options
  2922. may be overridden at compile time by passing the '-mllsc' or '-mno-llsc'
  2923. options to the compiler.
  2924. MIPS systems check for division by zero (unless
  2925. '-mno-check-zero-division' is passed to the compiler) by generating
  2926. either a conditional trap or a break instruction. Using trap results in
  2927. smaller code, but is only supported on MIPS II and later. Also, some
  2928. versions of the Linux kernel have a bug that prevents trap from
  2929. generating the proper signal ('SIGFPE'). To enable the use of break,
  2930. use the '--with-divide=breaks' 'configure' option when configuring GCC.
  2931. The default is to use traps on systems that support them.
  2932. moxie-*-elf
  2933. ===========
  2934. The moxie processor.
  2935. msp430-*-elf*
  2936. =============
  2937. TI MSP430 processor. This configuration is intended for embedded
  2938. systems.
  2939. 'msp430-*-elf' is the standard configuration with most GCC features
  2940. enabled by default.
  2941. 'msp430-*-elfbare' is tuned for a bare-metal environment, and
  2942. disables features related to shared libraries and other functionality
  2943. not used for this device. This reduces code and data usage of the GCC
  2944. libraries, resulting in a minimal run-time environment by default.
  2945. Features disabled by default include:
  2946. * transactional memory
  2947. * __cxa_atexit
  2948. nds32le-*-elf
  2949. =============
  2950. Andes NDS32 target in little endian mode.
  2951. nds32be-*-elf
  2952. =============
  2953. Andes NDS32 target in big endian mode.
  2954. nvptx-*-none
  2955. ============
  2956. Nvidia PTX target.
  2957. Instead of GNU binutils, you will need to install nvptx-tools. Tell
  2958. GCC where to find it:
  2959. '--with-build-time-tools=[install-nvptx-tools]/nvptx-none/bin'.
  2960. You will need newlib 3.0 git revision
  2961. cd31fbb2aea25f94d7ecedc9db16dfc87ab0c316 or later. It can be
  2962. automatically built together with GCC. For this, add a symbolic link to
  2963. nvptx-newlib's 'newlib' directory to the directory containing the GCC
  2964. sources.
  2965. Use the '--disable-sjlj-exceptions' and
  2966. '--enable-newlib-io-long-long' options when configuring.
  2967. or1k-*-elf
  2968. ==========
  2969. The OpenRISC 1000 32-bit processor with delay slots. This configuration
  2970. is intended for embedded systems.
  2971. or1k-*-linux
  2972. ============
  2973. The OpenRISC 1000 32-bit processor with delay slots.
  2974. powerpc-*-*
  2975. ===========
  2976. You can specify a default version for the '-mcpu=CPU_TYPE' switch by
  2977. using the configure option '--with-cpu-CPU_TYPE'.
  2978. You will need GNU binutils 2.20 or newer.
  2979. powerpc-*-darwin*
  2980. =================
  2981. PowerPC running Darwin (Mac OS X kernel).
  2982. Pre-installed versions of Mac OS X may not include any developer
  2983. tools, meaning that you will not be able to build GCC from source. Tool
  2984. binaries are available at <https://opensource.apple.com>.
  2985. This version of GCC requires at least cctools-590.36. The
  2986. cctools-590.36 package referenced from
  2987. <http://gcc.gnu.org/ml/gcc/2006-03/msg00507.html> will not work on
  2988. systems older than 10.3.9 (aka darwin7.9.0).
  2989. powerpc-*-elf
  2990. =============
  2991. PowerPC system in big endian mode, running System V.4.
  2992. powerpc*-*-linux-gnu*
  2993. =====================
  2994. PowerPC system in big endian mode running Linux.
  2995. powerpc-*-netbsd*
  2996. =================
  2997. PowerPC system in big endian mode running NetBSD.
  2998. powerpc-*-eabisim
  2999. =================
  3000. Embedded PowerPC system in big endian mode for use in running under the
  3001. PSIM simulator.
  3002. powerpc-*-eabi
  3003. ==============
  3004. Embedded PowerPC system in big endian mode.
  3005. powerpcle-*-elf
  3006. ===============
  3007. PowerPC system in little endian mode, running System V.4.
  3008. powerpcle-*-eabisim
  3009. ===================
  3010. Embedded PowerPC system in little endian mode for use in running under
  3011. the PSIM simulator.
  3012. powerpcle-*-eabi
  3013. ================
  3014. Embedded PowerPC system in little endian mode.
  3015. rl78-*-elf
  3016. ==========
  3017. The Renesas RL78 processor. This configuration is intended for embedded
  3018. systems.
  3019. riscv32-*-elf
  3020. =============
  3021. The RISC-V RV32 instruction set. This configuration is intended for
  3022. embedded systems. This (and all other RISC-V) targets require the
  3023. binutils 2.30 release.
  3024. riscv32-*-linux
  3025. ===============
  3026. The RISC-V RV32 instruction set running GNU/Linux. This (and all other
  3027. RISC-V) targets require the binutils 2.30 release.
  3028. riscv64-*-elf
  3029. =============
  3030. The RISC-V RV64 instruction set. This configuration is intended for
  3031. embedded systems. This (and all other RISC-V) targets require the
  3032. binutils 2.30 release.
  3033. riscv64-*-linux
  3034. ===============
  3035. The RISC-V RV64 instruction set running GNU/Linux. This (and all other
  3036. RISC-V) targets require the binutils 2.30 release.
  3037. rx-*-elf
  3038. ========
  3039. The Renesas RX processor.
  3040. s390-*-linux*
  3041. =============
  3042. S/390 system running GNU/Linux for S/390.
  3043. s390x-*-linux*
  3044. ==============
  3045. zSeries system (64-bit) running GNU/Linux for zSeries.
  3046. s390x-ibm-tpf*
  3047. ==============
  3048. zSeries system (64-bit) running TPF. This platform is supported as
  3049. cross-compilation target only.
  3050. *-*-solaris2*
  3051. =============
  3052. Support for Solaris 10 has been removed in GCC 10. Support for Solaris
  3053. 9 has been removed in GCC 5. Support for Solaris 8 has been removed in
  3054. GCC 4.8. Support for Solaris 7 has been removed in GCC 4.6.
  3055. Solaris 11.3 provides GCC 4.5.2, 4.7.3, and 4.8.2 as
  3056. '/usr/gcc/4.5/bin/gcc' or similar. Newer Solaris versions provide one
  3057. or more of GCC 5, 7, and 9. Alternatively, you can install a pre-built
  3058. GCC to bootstrap and install GCC. See the binaries page for details.
  3059. The Solaris 2 '/bin/sh' will often fail to configure 'libstdc++-v3'.
  3060. We therefore recommend using the following initial sequence of commands
  3061. % CONFIG_SHELL=/bin/ksh
  3062. % export CONFIG_SHELL
  3063. and proceed as described in the configure instructions. In addition we
  3064. strongly recommend specifying an absolute path to invoke
  3065. 'SRCDIR/configure'.
  3066. In Solaris 11, you need to check for 'system/header',
  3067. 'system/linker', and 'developer/assembler' packages.
  3068. Trying to use the linker and other tools in '/usr/ucb' to install GCC
  3069. has been observed to cause trouble. For example, the linker may hang
  3070. indefinitely. The fix is to remove '/usr/ucb' from your 'PATH'.
  3071. The build process works more smoothly with the legacy Solaris tools
  3072. so, if you have '/usr/xpg4/bin' in your 'PATH', we recommend that you
  3073. place '/usr/bin' before '/usr/xpg4/bin' for the duration of the build.
  3074. We recommend the use of the Solaris assembler or the GNU assembler,
  3075. in conjunction with the Solaris linker. The GNU 'as' versions included
  3076. in Solaris 11.3, from GNU binutils 2.23.1 or newer (in '/usr/bin/gas'
  3077. and '/usr/gnu/bin/as'), are known to work. The current version, from
  3078. GNU binutils 2.34, is known to work as well. Note that your mileage may
  3079. vary if you use a combination of the GNU tools and the Solaris tools:
  3080. while the combination GNU 'as' + Solaris 'ld' should reasonably work,
  3081. the reverse combination Solaris 'as' + GNU 'ld' may fail to build or
  3082. cause memory corruption at runtime in some cases for C++ programs. GNU
  3083. 'ld' usually works as well. Again, the current version (2.34) is known
  3084. to work, but generally lacks platform specific features, so better stay
  3085. with Solaris 'ld'. To use the LTO linker plugin ('-fuse-linker-plugin')
  3086. with GNU 'ld', GNU binutils _must_ be configured with
  3087. '--enable-largefile'.
  3088. To enable symbol versioning in 'libstdc++' with the Solaris linker,
  3089. you need to have any version of GNU 'c++filt', which is part of GNU
  3090. binutils. 'libstdc++' symbol versioning will be disabled if no
  3091. appropriate version is found. Solaris 'c++filt' from the Solaris Studio
  3092. compilers does _not_ work.
  3093. The versions of the GNU Multiple Precision Library (GMP), the MPFR
  3094. library and the MPC library bundled with Solaris 11.3 and later are
  3095. usually recent enough to match GCC's requirements. There are two
  3096. caveats:
  3097. * While the version of the GMP library in Solaris 11.3 works with
  3098. GCC, you need to configure with
  3099. '--with-gmp-include=/usr/include/gmp'.
  3100. * The version of the MPFR libary included in Solaris 11.3 is too old;
  3101. you need to provide a more recent one.
  3102. sparc*-*-*
  3103. ==========
  3104. This section contains general configuration information for all
  3105. SPARC-based platforms. In addition to reading this section, please read
  3106. all other sections that match your target.
  3107. Newer versions of the GNU Multiple Precision Library (GMP), the MPFR
  3108. library and the MPC library are known to be miscompiled by earlier
  3109. versions of GCC on these platforms. We therefore recommend the use of
  3110. the exact versions of these libraries listed as minimal versions in the
  3111. prerequisites.
  3112. sparc-sun-solaris2*
  3113. ===================
  3114. When GCC is configured to use GNU binutils 2.14 or later, the binaries
  3115. produced are smaller than the ones produced using Solaris native tools;
  3116. this difference is quite significant for binaries containing debugging
  3117. information.
  3118. Starting with Solaris 7, the operating system is capable of executing
  3119. 64-bit SPARC V9 binaries. GCC 3.1 and later properly supports this; the
  3120. '-m64' option enables 64-bit code generation. However, if all you want
  3121. is code tuned for the UltraSPARC CPU, you should try the
  3122. '-mtune=ultrasparc' option instead, which produces code that, unlike
  3123. full 64-bit code, can still run on non-UltraSPARC machines.
  3124. When configuring the GNU Multiple Precision Library (GMP), the MPFR
  3125. library or the MPC library on a Solaris 7 or later system, the canonical
  3126. target triplet must be specified as the 'build' parameter on the
  3127. configure line. This target triplet can be obtained by invoking
  3128. './config.guess' in the toplevel source directory of GCC (and not that
  3129. of GMP or MPFR or MPC). For example on a Solaris 11 system:
  3130. % ./configure --build=sparc-sun-solaris2.11 --prefix=xxx
  3131. sparc-*-linux*
  3132. ==============
  3133. sparc64-*-solaris2*
  3134. ===================
  3135. When configuring a 64-bit-default GCC on Solaris/SPARC, you must use a
  3136. build compiler that generates 64-bit code, either by default or by
  3137. specifying 'CC='gcc -m64' CXX='gcc-m64'' to 'configure'. Additionally,
  3138. you _must_ pass '--build=sparc64-sun-solaris2.11' or
  3139. '--build=sparcv9-sun-solaris2.11' because 'config.guess' misdetects this
  3140. situation, which can cause build failures.
  3141. When configuring the GNU Multiple Precision Library (GMP), the MPFR
  3142. library or the MPC library, the canonical target triplet must be
  3143. specified as the 'build' parameter on the configure line. For example
  3144. on a Solaris 11 system:
  3145. % ./configure --build=sparc64-sun-solaris2.11 --prefix=xxx
  3146. sparcv9-*-solaris2*
  3147. ===================
  3148. This is a synonym for 'sparc64-*-solaris2*'.
  3149. c6x-*-*
  3150. =======
  3151. The C6X family of processors. This port requires binutils-2.22 or
  3152. newer.
  3153. tilegx-*-linux*
  3154. ===============
  3155. The TILE-Gx processor in little endian mode, running GNU/Linux. This
  3156. port requires binutils-2.22 or newer.
  3157. tilegxbe-*-linux*
  3158. =================
  3159. The TILE-Gx processor in big endian mode, running GNU/Linux. This port
  3160. requires binutils-2.23 or newer.
  3161. tilepro-*-linux*
  3162. ================
  3163. The TILEPro processor running GNU/Linux. This port requires
  3164. binutils-2.22 or newer.
  3165. visium-*-elf
  3166. ============
  3167. CDS VISIUMcore processor. This configuration is intended for embedded
  3168. systems.
  3169. *-*-vxworks*
  3170. ============
  3171. Support for VxWorks is in flux. At present GCC supports _only_ the very
  3172. recent VxWorks 5.5 (aka Tornado 2.2) release, and only on PowerPC. We
  3173. welcome patches for other architectures supported by VxWorks 5.5.
  3174. Support for VxWorks AE would also be welcome; we believe this is merely
  3175. a matter of writing an appropriate "configlette" (see below). We are
  3176. not interested in supporting older, a.out or COFF-based, versions of
  3177. VxWorks in GCC 3.
  3178. VxWorks comes with an older version of GCC installed in
  3179. '$WIND_BASE/host'; we recommend you do not overwrite it. Choose an
  3180. installation PREFIX entirely outside $WIND_BASE. Before running
  3181. 'configure', create the directories 'PREFIX' and 'PREFIX/bin'. Link or
  3182. copy the appropriate assembler, linker, etc. into 'PREFIX/bin', and set
  3183. your PATH to include that directory while running both 'configure' and
  3184. 'make'.
  3185. You must give 'configure' the '--with-headers=$WIND_BASE/target/h'
  3186. switch so that it can find the VxWorks system headers. Since VxWorks is
  3187. a cross compilation target only, you must also specify
  3188. '--target=TARGET'. 'configure' will attempt to create the directory
  3189. 'PREFIX/TARGET/sys-include' and copy files into it; make sure the user
  3190. running 'configure' has sufficient privilege to do so.
  3191. GCC's exception handling runtime requires a special "configlette"
  3192. module, 'contrib/gthr_supp_vxw_5x.c'. Follow the instructions in that
  3193. file to add the module to your kernel build. (Future versions of
  3194. VxWorks will incorporate this module.)
  3195. x86_64-*-*, amd64-*-*
  3196. =====================
  3197. GCC supports the x86-64 architecture implemented by the AMD64 processor
  3198. (amd64-*-* is an alias for x86_64-*-*) on GNU/Linux, FreeBSD and NetBSD.
  3199. On GNU/Linux the default is a bi-arch compiler which is able to generate
  3200. both 64-bit x86-64 and 32-bit x86 code (via the '-m32' switch).
  3201. x86_64-*-solaris2*
  3202. ==================
  3203. GCC also supports the x86-64 architecture implemented by the AMD64
  3204. processor ('amd64-*-*' is an alias for 'x86_64-*-*') on Solaris 10 or
  3205. later. Unlike other systems, without special options a bi-arch compiler
  3206. is built which generates 32-bit code by default, but can generate 64-bit
  3207. x86-64 code with the '-m64' switch. Since GCC 4.7, there is also a
  3208. configuration that defaults to 64-bit code, but can generate 32-bit code
  3209. with '-m32'. To configure and build this way, you have to provide all
  3210. support libraries like 'libgmp' as 64-bit code, configure with
  3211. '--target=x86_64-pc-solaris2.11' and 'CC=gcc -m64'.
  3212. xtensa*-*-elf
  3213. =============
  3214. This target is intended for embedded Xtensa systems using the 'newlib' C
  3215. library. It uses ELF but does not support shared objects.
  3216. Designed-defined instructions specified via the Tensilica Instruction
  3217. Extension (TIE) language are only supported through inline assembly.
  3218. The Xtensa configuration information must be specified prior to
  3219. building GCC. The 'include/xtensa-config.h' header file contains the
  3220. configuration information. If you created your own Xtensa configuration
  3221. with the Xtensa Processor Generator, the downloaded files include a
  3222. customized copy of this header file, which you can use to replace the
  3223. default header file.
  3224. xtensa*-*-linux*
  3225. ================
  3226. This target is for Xtensa systems running GNU/Linux. It supports ELF
  3227. shared objects and the GNU C library (glibc). It also generates
  3228. position-independent code (PIC) regardless of whether the '-fpic' or
  3229. '-fPIC' options are used. In other respects, this target is the same as
  3230. the 'xtensa*-*-elf' target.
  3231. Microsoft Windows
  3232. =================
  3233. Intel 16-bit versions
  3234. ---------------------
  3235. The 16-bit versions of Microsoft Windows, such as Windows 3.1, are not
  3236. supported.
  3237. However, the 32-bit port has limited support for Microsoft Windows
  3238. 3.11 in the Win32s environment, as a target only. See below.
  3239. Intel 32-bit versions
  3240. ---------------------
  3241. The 32-bit versions of Windows, including Windows 95, Windows NT,
  3242. Windows XP, and Windows Vista, are supported by several different target
  3243. platforms. These targets differ in which Windows subsystem they target
  3244. and which C libraries are used.
  3245. * Cygwin *-*-cygwin: Cygwin provides a user-space Linux API emulation
  3246. layer in the Win32 subsystem.
  3247. * MinGW *-*-mingw32: MinGW is a native GCC port for the Win32
  3248. subsystem that provides a subset of POSIX.
  3249. * MKS i386-pc-mks: NuTCracker from MKS. See
  3250. <https://www.mkssoftware.com> for more information.
  3251. Intel 64-bit versions
  3252. ---------------------
  3253. GCC contains support for x86-64 using the mingw-w64 runtime library,
  3254. available from <http://mingw-w64.org/doku.php>. This library should be
  3255. used with the target triple x86_64-pc-mingw32.
  3256. Presently Windows for Itanium is not supported.
  3257. Windows CE
  3258. ----------
  3259. Windows CE is supported as a target only on Hitachi SuperH
  3260. (sh-wince-pe), and MIPS (mips-wince-pe).
  3261. Other Windows Platforms
  3262. -----------------------
  3263. GCC no longer supports Windows NT on the Alpha or PowerPC.
  3264. GCC no longer supports the Windows POSIX subsystem. However, it does
  3265. support the Interix subsystem. See above.
  3266. Old target names including *-*-winnt and *-*-windowsnt are no longer
  3267. used.
  3268. PW32 (i386-pc-pw32) support was never completed, and the project
  3269. seems to be inactive. See <http://pw32.sourceforge.net/> for more
  3270. information.
  3271. UWIN support has been removed due to a lack of maintenance.
  3272. *-*-cygwin
  3273. ==========
  3274. Ports of GCC are included with the Cygwin environment.
  3275. GCC will build under Cygwin without modification; it does not build
  3276. with Microsoft's C++ compiler and there are no plans to make it do so.
  3277. The Cygwin native compiler can be configured to target any 32-bit x86
  3278. cpu architecture desired; the default is i686-pc-cygwin. It should be
  3279. used with as up-to-date a version of binutils as possible; use either
  3280. the latest official GNU binutils release in the Cygwin distribution, or
  3281. version 2.20 or above if building your own.
  3282. *-*-mingw32
  3283. ===========
  3284. GCC will build with and support only MinGW runtime 3.12 and later.
  3285. Earlier versions of headers are incompatible with the new default
  3286. semantics of 'extern inline' in '-std=c99' and '-std=gnu99' modes.
  3287. Older systems
  3288. =============
  3289. GCC contains support files for many older (1980s and early 1990s) Unix
  3290. variants. For the most part, support for these systems has not been
  3291. deliberately removed, but it has not been maintained for several years
  3292. and may suffer from bitrot.
  3293. Starting with GCC 3.1, each release has a list of "obsoleted"
  3294. systems. Support for these systems is still present in that release,
  3295. but 'configure' will fail unless the '--enable-obsolete' option is
  3296. given. Unless a maintainer steps forward, support for these systems
  3297. will be removed from the next release of GCC.
  3298. Support for old systems as hosts for GCC can cause problems if the
  3299. workarounds for compiler, library and operating system bugs affect the
  3300. cleanliness or maintainability of the rest of GCC. In some cases, to
  3301. bring GCC up on such a system, if still possible with current GCC, may
  3302. require first installing an old version of GCC which did work on that
  3303. system, and using it to compile a more recent GCC, to avoid bugs in the
  3304. vendor compiler. Old releases of GCC 1 and GCC 2 are available in the
  3305. 'old-releases' directory on the GCC mirror sites. Header bugs may
  3306. generally be avoided using 'fixincludes', but bugs or deficiencies in
  3307. libraries and the operating system may still cause problems.
  3308. Support for older systems as targets for cross-compilation is less
  3309. problematic than support for them as hosts for GCC; if an enthusiast
  3310. wishes to make such a target work again (including resurrecting any of
  3311. the targets that never worked with GCC 2, starting from the last version
  3312. before they were removed), patches following the usual requirements
  3313. would be likely to be accepted, since they should not affect the support
  3314. for more modern targets.
  3315. For some systems, old versions of GNU binutils may also be useful,
  3316. and are available from 'pub/binutils/old-releases' on sourceware.org
  3317. mirror sites.
  3318. Some of the information on specific systems above relates to such
  3319. older systems, but much of the information about GCC on such systems
  3320. (which may no longer be applicable to current GCC) is to be found in the
  3321. GCC texinfo manual.
  3322. all ELF targets (SVR4, Solaris 2, etc.)
  3323. =======================================
  3324. C++ support is significantly better on ELF targets if you use the GNU
  3325. linker; duplicate copies of inlines, vtables and template instantiations
  3326. will be discarded automatically.
  3327. 
  3328. File: gccinstall.info, Node: Old, Next: GNU Free Documentation License, Prev: Specific, Up: Top
  3329. 10 Old installation documentation
  3330. *********************************
  3331. Note most of this information is out of date and superseded by the
  3332. previous chapters of this manual. It is provided for historical
  3333. reference only, because of a lack of volunteers to merge it into the
  3334. main manual.
  3335. * Menu:
  3336. * Configurations:: Configurations Supported by GCC.
  3337. Here is the procedure for installing GCC on a GNU or Unix system.
  3338. 1. If you have chosen a configuration for GCC which requires other GNU
  3339. tools (such as GAS or the GNU linker) instead of the standard
  3340. system tools, install the required tools in the build directory
  3341. under the names 'as', 'ld' or whatever is appropriate.
  3342. Alternatively, you can do subsequent compilation using a value of
  3343. the 'PATH' environment variable such that the necessary GNU tools
  3344. come before the standard system tools.
  3345. 2. Specify the host, build and target machine configurations. You do
  3346. this when you run the 'configure' script.
  3347. The "build" machine is the system which you are using, the "host"
  3348. machine is the system where you want to run the resulting compiler
  3349. (normally the build machine), and the "target" machine is the
  3350. system for which you want the compiler to generate code.
  3351. If you are building a compiler to produce code for the machine it
  3352. runs on (a native compiler), you normally do not need to specify
  3353. any operands to 'configure'; it will try to guess the type of
  3354. machine you are on and use that as the build, host and target
  3355. machines. So you don't need to specify a configuration when
  3356. building a native compiler unless 'configure' cannot figure out
  3357. what your configuration is or guesses wrong.
  3358. In those cases, specify the build machine's "configuration name"
  3359. with the '--host' option; the host and target will default to be
  3360. the same as the host machine.
  3361. Here is an example:
  3362. ./configure --host=sparc-sun-sunos4.1
  3363. A configuration name may be canonical or it may be more or less
  3364. abbreviated.
  3365. A canonical configuration name has three parts, separated by
  3366. dashes. It looks like this: 'CPU-COMPANY-SYSTEM'. (The three
  3367. parts may themselves contain dashes; 'configure' can figure out
  3368. which dashes serve which purpose.) For example,
  3369. 'm68k-sun-sunos4.1' specifies a Sun 3.
  3370. You can also replace parts of the configuration by nicknames or
  3371. aliases. For example, 'sun3' stands for 'm68k-sun', so
  3372. 'sun3-sunos4.1' is another way to specify a Sun 3.
  3373. You can specify a version number after any of the system types, and
  3374. some of the CPU types. In most cases, the version is irrelevant,
  3375. and will be ignored. So you might as well specify the version if
  3376. you know it.
  3377. See *note Configurations::, for a list of supported configuration
  3378. names and notes on many of the configurations. You should check
  3379. the notes in that section before proceeding any further with the
  3380. installation of GCC.
  3381. 
  3382. File: gccinstall.info, Node: Configurations, Up: Old
  3383. 10.1 Configurations Supported by GCC
  3384. ====================================
  3385. Here are the possible CPU types:
  3386. 1750a, a29k, alpha, arm, avr, cN, clipper, dsp16xx, elxsi, fr30,
  3387. h8300, hppa1.0, hppa1.1, i370, i386, i486, i586, i686, i786, i860,
  3388. i960, ip2k, m32r, m68000, m68k, m88k, mcore, mips, mipsel, mips64,
  3389. mips64el, mn10200, mn10300, ns32k, pdp11, powerpc, powerpcle, romp,
  3390. rs6000, sh, sparc, sparclite, sparc64, v850, vax, we32k.
  3391. Here are the recognized company names. As you can see, customary
  3392. abbreviations are used rather than the longer official names.
  3393. acorn, alliant, altos, apollo, apple, att, bull, cbm, convergent,
  3394. convex, crds, dec, dg, dolphin, elxsi, encore, harris, hitachi, hp,
  3395. ibm, intergraph, isi, mips, motorola, ncr, next, ns, omron, plexus,
  3396. sequent, sgi, sony, sun, tti, unicom, wrs.
  3397. The company name is meaningful only to disambiguate when the rest of
  3398. the information supplied is insufficient. You can omit it, writing just
  3399. 'CPU-SYSTEM', if it is not needed. For example, 'vax-ultrix4.2' is
  3400. equivalent to 'vax-dec-ultrix4.2'.
  3401. Here is a list of system types:
  3402. 386bsd, aix, acis, amigaos, aos, aout, aux, bosx, bsd, clix, coff,
  3403. ctix, cxux, dgux, dynix, ebmon, ecoff, elf, esix, freebsd, hms,
  3404. genix, gnu, linux, linux-gnu, hiux, hpux, iris, irix, isc, luna,
  3405. lynxos, mach, minix, msdos, mvs, netbsd, newsos, nindy, ns, osf,
  3406. osfrose, ptx, riscix, riscos, rtu, sco, sim, solaris, sunos, sym,
  3407. sysv, udi, ultrix, unicos, uniplus, unos, vms, vsta, vxworks,
  3408. winnt, xenix.
  3409. You can omit the system type; then 'configure' guesses the operating
  3410. system from the CPU and company.
  3411. You can add a version number to the system type; this may or may not
  3412. make a difference. For example, you can write 'bsd4.3' or 'bsd4.4' to
  3413. distinguish versions of BSD. In practice, the version number is most
  3414. needed for 'sysv3' and 'sysv4', which are often treated differently.
  3415. 'linux-gnu' is the canonical name for the GNU/Linux target; however
  3416. GCC will also accept 'linux'. The version of the kernel in use is not
  3417. relevant on these systems. A suffix such as 'libc1' or 'aout'
  3418. distinguishes major versions of the C library; all of the suffixed
  3419. versions are obsolete.
  3420. If you specify an impossible combination such as 'i860-dg-vms', then
  3421. you may get an error message from 'configure', or it may ignore part of
  3422. the information and do the best it can with the rest. 'configure'
  3423. always prints the canonical name for the alternative that it used. GCC
  3424. does not support all possible alternatives.
  3425. Often a particular model of machine has a name. Many machine names
  3426. are recognized as aliases for CPU/company combinations. Thus, the
  3427. machine name 'sun3', mentioned above, is an alias for 'm68k-sun'.
  3428. Sometimes we accept a company name as a machine name, when the name is
  3429. popularly used for a particular machine. Here is a table of the known
  3430. machine names:
  3431. 3300, 3b1, 3bN, 7300, altos3068, altos, apollo68, att-7300,
  3432. balance, convex-cN, crds, decstation-3100, decstation, delta,
  3433. encore, fx2800, gmicro, hp7NN, hp8NN, hp9k2NN, hp9k3NN, hp9k7NN,
  3434. hp9k8NN, iris4d, iris, isi68, m3230, magnum, merlin, miniframe,
  3435. mmax, news-3600, news800, news, next, pbd, pc532, pmax, powerpc,
  3436. powerpcle, ps2, risc-news, rtpc, sun2, sun386i, sun386, sun3, sun4,
  3437. symmetry, tower-32, tower.
  3438. Remember that a machine name specifies both the cpu type and the company
  3439. name.
  3440. 
  3441. File: gccinstall.info, Node: GNU Free Documentation License, Next: Concept Index, Prev: Old, Up: Top
  3442. GNU Free Documentation License
  3443. ******************************
  3444. Version 1.3, 3 November 2008
  3445. Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
  3446. <http://fsf.org/>
  3447. Everyone is permitted to copy and distribute verbatim copies
  3448. of this license document, but changing it is not allowed.
  3449. 0. PREAMBLE
  3450. The purpose of this License is to make a manual, textbook, or other
  3451. functional and useful document "free" in the sense of freedom: to
  3452. assure everyone the effective freedom to copy and redistribute it,
  3453. with or without modifying it, either commercially or
  3454. noncommercially. Secondarily, this License preserves for the
  3455. author and publisher a way to get credit for their work, while not
  3456. being considered responsible for modifications made by others.
  3457. This License is a kind of "copyleft", which means that derivative
  3458. works of the document must themselves be free in the same sense.
  3459. It complements the GNU General Public License, which is a copyleft
  3460. license designed for free software.
  3461. We have designed this License in order to use it for manuals for
  3462. free software, because free software needs free documentation: a
  3463. free program should come with manuals providing the same freedoms
  3464. that the software does. But this License is not limited to
  3465. software manuals; it can be used for any textual work, regardless
  3466. of subject matter or whether it is published as a printed book. We
  3467. recommend this License principally for works whose purpose is
  3468. instruction or reference.
  3469. 1. APPLICABILITY AND DEFINITIONS
  3470. This License applies to any manual or other work, in any medium,
  3471. that contains a notice placed by the copyright holder saying it can
  3472. be distributed under the terms of this License. Such a notice
  3473. grants a world-wide, royalty-free license, unlimited in duration,
  3474. to use that work under the conditions stated herein. The
  3475. "Document", below, refers to any such manual or work. Any member
  3476. of the public is a licensee, and is addressed as "you". You accept
  3477. the license if you copy, modify or distribute the work in a way
  3478. requiring permission under copyright law.
  3479. A "Modified Version" of the Document means any work containing the
  3480. Document or a portion of it, either copied verbatim, or with
  3481. modifications and/or translated into another language.
  3482. A "Secondary Section" is a named appendix or a front-matter section
  3483. of the Document that deals exclusively with the relationship of the
  3484. publishers or authors of the Document to the Document's overall
  3485. subject (or to related matters) and contains nothing that could
  3486. fall directly within that overall subject. (Thus, if the Document
  3487. is in part a textbook of mathematics, a Secondary Section may not
  3488. explain any mathematics.) The relationship could be a matter of
  3489. historical connection with the subject or with related matters, or
  3490. of legal, commercial, philosophical, ethical or political position
  3491. regarding them.
  3492. The "Invariant Sections" are certain Secondary Sections whose
  3493. titles are designated, as being those of Invariant Sections, in the
  3494. notice that says that the Document is released under this License.
  3495. If a section does not fit the above definition of Secondary then it
  3496. is not allowed to be designated as Invariant. The Document may
  3497. contain zero Invariant Sections. If the Document does not identify
  3498. any Invariant Sections then there are none.
  3499. The "Cover Texts" are certain short passages of text that are
  3500. listed, as Front-Cover Texts or Back-Cover Texts, in the notice
  3501. that says that the Document is released under this License. A
  3502. Front-Cover Text may be at most 5 words, and a Back-Cover Text may
  3503. be at most 25 words.
  3504. A "Transparent" copy of the Document means a machine-readable copy,
  3505. represented in a format whose specification is available to the
  3506. general public, that is suitable for revising the document
  3507. straightforwardly with generic text editors or (for images composed
  3508. of pixels) generic paint programs or (for drawings) some widely
  3509. available drawing editor, and that is suitable for input to text
  3510. formatters or for automatic translation to a variety of formats
  3511. suitable for input to text formatters. A copy made in an otherwise
  3512. Transparent file format whose markup, or absence of markup, has
  3513. been arranged to thwart or discourage subsequent modification by
  3514. readers is not Transparent. An image format is not Transparent if
  3515. used for any substantial amount of text. A copy that is not
  3516. "Transparent" is called "Opaque".
  3517. Examples of suitable formats for Transparent copies include plain
  3518. ASCII without markup, Texinfo input format, LaTeX input format,
  3519. SGML or XML using a publicly available DTD, and standard-conforming
  3520. simple HTML, PostScript or PDF designed for human modification.
  3521. Examples of transparent image formats include PNG, XCF and JPG.
  3522. Opaque formats include proprietary formats that can be read and
  3523. edited only by proprietary word processors, SGML or XML for which
  3524. the DTD and/or processing tools are not generally available, and
  3525. the machine-generated HTML, PostScript or PDF produced by some word
  3526. processors for output purposes only.
  3527. The "Title Page" means, for a printed book, the title page itself,
  3528. plus such following pages as are needed to hold, legibly, the
  3529. material this License requires to appear in the title page. For
  3530. works in formats which do not have any title page as such, "Title
  3531. Page" means the text near the most prominent appearance of the
  3532. work's title, preceding the beginning of the body of the text.
  3533. The "publisher" means any person or entity that distributes copies
  3534. of the Document to the public.
  3535. A section "Entitled XYZ" means a named subunit of the Document
  3536. whose title either is precisely XYZ or contains XYZ in parentheses
  3537. following text that translates XYZ in another language. (Here XYZ
  3538. stands for a specific section name mentioned below, such as
  3539. "Acknowledgements", "Dedications", "Endorsements", or "History".)
  3540. To "Preserve the Title" of such a section when you modify the
  3541. Document means that it remains a section "Entitled XYZ" according
  3542. to this definition.
  3543. The Document may include Warranty Disclaimers next to the notice
  3544. which states that this License applies to the Document. These
  3545. Warranty Disclaimers are considered to be included by reference in
  3546. this License, but only as regards disclaiming warranties: any other
  3547. implication that these Warranty Disclaimers may have is void and
  3548. has no effect on the meaning of this License.
  3549. 2. VERBATIM COPYING
  3550. You may copy and distribute the Document in any medium, either
  3551. commercially or noncommercially, provided that this License, the
  3552. copyright notices, and the license notice saying this License
  3553. applies to the Document are reproduced in all copies, and that you
  3554. add no other conditions whatsoever to those of this License. You
  3555. may not use technical measures to obstruct or control the reading
  3556. or further copying of the copies you make or distribute. However,
  3557. you may accept compensation in exchange for copies. If you
  3558. distribute a large enough number of copies you must also follow the
  3559. conditions in section 3.
  3560. You may also lend copies, under the same conditions stated above,
  3561. and you may publicly display copies.
  3562. 3. COPYING IN QUANTITY
  3563. If you publish printed copies (or copies in media that commonly
  3564. have printed covers) of the Document, numbering more than 100, and
  3565. the Document's license notice requires Cover Texts, you must
  3566. enclose the copies in covers that carry, clearly and legibly, all
  3567. these Cover Texts: Front-Cover Texts on the front cover, and
  3568. Back-Cover Texts on the back cover. Both covers must also clearly
  3569. and legibly identify you as the publisher of these copies. The
  3570. front cover must present the full title with all words of the title
  3571. equally prominent and visible. You may add other material on the
  3572. covers in addition. Copying with changes limited to the covers, as
  3573. long as they preserve the title of the Document and satisfy these
  3574. conditions, can be treated as verbatim copying in other respects.
  3575. If the required texts for either cover are too voluminous to fit
  3576. legibly, you should put the first ones listed (as many as fit
  3577. reasonably) on the actual cover, and continue the rest onto
  3578. adjacent pages.
  3579. If you publish or distribute Opaque copies of the Document
  3580. numbering more than 100, you must either include a machine-readable
  3581. Transparent copy along with each Opaque copy, or state in or with
  3582. each Opaque copy a computer-network location from which the general
  3583. network-using public has access to download using public-standard
  3584. network protocols a complete Transparent copy of the Document, free
  3585. of added material. If you use the latter option, you must take
  3586. reasonably prudent steps, when you begin distribution of Opaque
  3587. copies in quantity, to ensure that this Transparent copy will
  3588. remain thus accessible at the stated location until at least one
  3589. year after the last time you distribute an Opaque copy (directly or
  3590. through your agents or retailers) of that edition to the public.
  3591. It is requested, but not required, that you contact the authors of
  3592. the Document well before redistributing any large number of copies,
  3593. to give them a chance to provide you with an updated version of the
  3594. Document.
  3595. 4. MODIFICATIONS
  3596. You may copy and distribute a Modified Version of the Document
  3597. under the conditions of sections 2 and 3 above, provided that you
  3598. release the Modified Version under precisely this License, with the
  3599. Modified Version filling the role of the Document, thus licensing
  3600. distribution and modification of the Modified Version to whoever
  3601. possesses a copy of it. In addition, you must do these things in
  3602. the Modified Version:
  3603. A. Use in the Title Page (and on the covers, if any) a title
  3604. distinct from that of the Document, and from those of previous
  3605. versions (which should, if there were any, be listed in the
  3606. History section of the Document). You may use the same title
  3607. as a previous version if the original publisher of that
  3608. version gives permission.
  3609. B. List on the Title Page, as authors, one or more persons or
  3610. entities responsible for authorship of the modifications in
  3611. the Modified Version, together with at least five of the
  3612. principal authors of the Document (all of its principal
  3613. authors, if it has fewer than five), unless they release you
  3614. from this requirement.
  3615. C. State on the Title page the name of the publisher of the
  3616. Modified Version, as the publisher.
  3617. D. Preserve all the copyright notices of the Document.
  3618. E. Add an appropriate copyright notice for your modifications
  3619. adjacent to the other copyright notices.
  3620. F. Include, immediately after the copyright notices, a license
  3621. notice giving the public permission to use the Modified
  3622. Version under the terms of this License, in the form shown in
  3623. the Addendum below.
  3624. G. Preserve in that license notice the full lists of Invariant
  3625. Sections and required Cover Texts given in the Document's
  3626. license notice.
  3627. H. Include an unaltered copy of this License.
  3628. I. Preserve the section Entitled "History", Preserve its Title,
  3629. and add to it an item stating at least the title, year, new
  3630. authors, and publisher of the Modified Version as given on the
  3631. Title Page. If there is no section Entitled "History" in the
  3632. Document, create one stating the title, year, authors, and
  3633. publisher of the Document as given on its Title Page, then add
  3634. an item describing the Modified Version as stated in the
  3635. previous sentence.
  3636. J. Preserve the network location, if any, given in the Document
  3637. for public access to a Transparent copy of the Document, and
  3638. likewise the network locations given in the Document for
  3639. previous versions it was based on. These may be placed in the
  3640. "History" section. You may omit a network location for a work
  3641. that was published at least four years before the Document
  3642. itself, or if the original publisher of the version it refers
  3643. to gives permission.
  3644. K. For any section Entitled "Acknowledgements" or "Dedications",
  3645. Preserve the Title of the section, and preserve in the section
  3646. all the substance and tone of each of the contributor
  3647. acknowledgements and/or dedications given therein.
  3648. L. Preserve all the Invariant Sections of the Document, unaltered
  3649. in their text and in their titles. Section numbers or the
  3650. equivalent are not considered part of the section titles.
  3651. M. Delete any section Entitled "Endorsements". Such a section
  3652. may not be included in the Modified Version.
  3653. N. Do not retitle any existing section to be Entitled
  3654. "Endorsements" or to conflict in title with any Invariant
  3655. Section.
  3656. O. Preserve any Warranty Disclaimers.
  3657. If the Modified Version includes new front-matter sections or
  3658. appendices that qualify as Secondary Sections and contain no
  3659. material copied from the Document, you may at your option designate
  3660. some or all of these sections as invariant. To do this, add their
  3661. titles to the list of Invariant Sections in the Modified Version's
  3662. license notice. These titles must be distinct from any other
  3663. section titles.
  3664. You may add a section Entitled "Endorsements", provided it contains
  3665. nothing but endorsements of your Modified Version by various
  3666. parties--for example, statements of peer review or that the text
  3667. has been approved by an organization as the authoritative
  3668. definition of a standard.
  3669. You may add a passage of up to five words as a Front-Cover Text,
  3670. and a passage of up to 25 words as a Back-Cover Text, to the end of
  3671. the list of Cover Texts in the Modified Version. Only one passage
  3672. of Front-Cover Text and one of Back-Cover Text may be added by (or
  3673. through arrangements made by) any one entity. If the Document
  3674. already includes a cover text for the same cover, previously added
  3675. by you or by arrangement made by the same entity you are acting on
  3676. behalf of, you may not add another; but you may replace the old
  3677. one, on explicit permission from the previous publisher that added
  3678. the old one.
  3679. The author(s) and publisher(s) of the Document do not by this
  3680. License give permission to use their names for publicity for or to
  3681. assert or imply endorsement of any Modified Version.
  3682. 5. COMBINING DOCUMENTS
  3683. You may combine the Document with other documents released under
  3684. this License, under the terms defined in section 4 above for
  3685. modified versions, provided that you include in the combination all
  3686. of the Invariant Sections of all of the original documents,
  3687. unmodified, and list them all as Invariant Sections of your
  3688. combined work in its license notice, and that you preserve all
  3689. their Warranty Disclaimers.
  3690. The combined work need only contain one copy of this License, and
  3691. multiple identical Invariant Sections may be replaced with a single
  3692. copy. If there are multiple Invariant Sections with the same name
  3693. but different contents, make the title of each such section unique
  3694. by adding at the end of it, in parentheses, the name of the
  3695. original author or publisher of that section if known, or else a
  3696. unique number. Make the same adjustment to the section titles in
  3697. the list of Invariant Sections in the license notice of the
  3698. combined work.
  3699. In the combination, you must combine any sections Entitled
  3700. "History" in the various original documents, forming one section
  3701. Entitled "History"; likewise combine any sections Entitled
  3702. "Acknowledgements", and any sections Entitled "Dedications". You
  3703. must delete all sections Entitled "Endorsements."
  3704. 6. COLLECTIONS OF DOCUMENTS
  3705. You may make a collection consisting of the Document and other
  3706. documents released under this License, and replace the individual
  3707. copies of this License in the various documents with a single copy
  3708. that is included in the collection, provided that you follow the
  3709. rules of this License for verbatim copying of each of the documents
  3710. in all other respects.
  3711. You may extract a single document from such a collection, and
  3712. distribute it individually under this License, provided you insert
  3713. a copy of this License into the extracted document, and follow this
  3714. License in all other respects regarding verbatim copying of that
  3715. document.
  3716. 7. AGGREGATION WITH INDEPENDENT WORKS
  3717. A compilation of the Document or its derivatives with other
  3718. separate and independent documents or works, in or on a volume of a
  3719. storage or distribution medium, is called an "aggregate" if the
  3720. copyright resulting from the compilation is not used to limit the
  3721. legal rights of the compilation's users beyond what the individual
  3722. works permit. When the Document is included in an aggregate, this
  3723. License does not apply to the other works in the aggregate which
  3724. are not themselves derivative works of the Document.
  3725. If the Cover Text requirement of section 3 is applicable to these
  3726. copies of the Document, then if the Document is less than one half
  3727. of the entire aggregate, the Document's Cover Texts may be placed
  3728. on covers that bracket the Document within the aggregate, or the
  3729. electronic equivalent of covers if the Document is in electronic
  3730. form. Otherwise they must appear on printed covers that bracket
  3731. the whole aggregate.
  3732. 8. TRANSLATION
  3733. Translation is considered a kind of modification, so you may
  3734. distribute translations of the Document under the terms of section
  3735. 4. Replacing Invariant Sections with translations requires special
  3736. permission from their copyright holders, but you may include
  3737. translations of some or all Invariant Sections in addition to the
  3738. original versions of these Invariant Sections. You may include a
  3739. translation of this License, and all the license notices in the
  3740. Document, and any Warranty Disclaimers, provided that you also
  3741. include the original English version of this License and the
  3742. original versions of those notices and disclaimers. In case of a
  3743. disagreement between the translation and the original version of
  3744. this License or a notice or disclaimer, the original version will
  3745. prevail.
  3746. If a section in the Document is Entitled "Acknowledgements",
  3747. "Dedications", or "History", the requirement (section 4) to
  3748. Preserve its Title (section 1) will typically require changing the
  3749. actual title.
  3750. 9. TERMINATION
  3751. You may not copy, modify, sublicense, or distribute the Document
  3752. except as expressly provided under this License. Any attempt
  3753. otherwise to copy, modify, sublicense, or distribute it is void,
  3754. and will automatically terminate your rights under this License.
  3755. However, if you cease all violation of this License, then your
  3756. license from a particular copyright holder is reinstated (a)
  3757. provisionally, unless and until the copyright holder explicitly and
  3758. finally terminates your license, and (b) permanently, if the
  3759. copyright holder fails to notify you of the violation by some
  3760. reasonable means prior to 60 days after the cessation.
  3761. Moreover, your license from a particular copyright holder is
  3762. reinstated permanently if the copyright holder notifies you of the
  3763. violation by some reasonable means, this is the first time you have
  3764. received notice of violation of this License (for any work) from
  3765. that copyright holder, and you cure the violation prior to 30 days
  3766. after your receipt of the notice.
  3767. Termination of your rights under this section does not terminate
  3768. the licenses of parties who have received copies or rights from you
  3769. under this License. If your rights have been terminated and not
  3770. permanently reinstated, receipt of a copy of some or all of the
  3771. same material does not give you any rights to use it.
  3772. 10. FUTURE REVISIONS OF THIS LICENSE
  3773. The Free Software Foundation may publish new, revised versions of
  3774. the GNU Free Documentation License from time to time. Such new
  3775. versions will be similar in spirit to the present version, but may
  3776. differ in detail to address new problems or concerns. See
  3777. <http://www.gnu.org/copyleft/>.
  3778. Each version of the License is given a distinguishing version
  3779. number. If the Document specifies that a particular numbered
  3780. version of this License "or any later version" applies to it, you
  3781. have the option of following the terms and conditions either of
  3782. that specified version or of any later version that has been
  3783. published (not as a draft) by the Free Software Foundation. If the
  3784. Document does not specify a version number of this License, you may
  3785. choose any version ever published (not as a draft) by the Free
  3786. Software Foundation. If the Document specifies that a proxy can
  3787. decide which future versions of this License can be used, that
  3788. proxy's public statement of acceptance of a version permanently
  3789. authorizes you to choose that version for the Document.
  3790. 11. RELICENSING
  3791. "Massive Multiauthor Collaboration Site" (or "MMC Site") means any
  3792. World Wide Web server that publishes copyrightable works and also
  3793. provides prominent facilities for anybody to edit those works. A
  3794. public wiki that anybody can edit is an example of such a server.
  3795. A "Massive Multiauthor Collaboration" (or "MMC") contained in the
  3796. site means any set of copyrightable works thus published on the MMC
  3797. site.
  3798. "CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0
  3799. license published by Creative Commons Corporation, a not-for-profit
  3800. corporation with a principal place of business in San Francisco,
  3801. California, as well as future copyleft versions of that license
  3802. published by that same organization.
  3803. "Incorporate" means to publish or republish a Document, in whole or
  3804. in part, as part of another Document.
  3805. An MMC is "eligible for relicensing" if it is licensed under this
  3806. License, and if all works that were first published under this
  3807. License somewhere other than this MMC, and subsequently
  3808. incorporated in whole or in part into the MMC, (1) had no cover
  3809. texts or invariant sections, and (2) were thus incorporated prior
  3810. to November 1, 2008.
  3811. The operator of an MMC Site may republish an MMC contained in the
  3812. site under CC-BY-SA on the same site at any time before August 1,
  3813. 2009, provided the MMC is eligible for relicensing.
  3814. ADDENDUM: How to use this License for your documents
  3815. ====================================================
  3816. To use this License in a document you have written, include a copy of
  3817. the License in the document and put the following copyright and license
  3818. notices just after the title page:
  3819. Copyright (C) YEAR YOUR NAME.
  3820. Permission is granted to copy, distribute and/or modify this document
  3821. under the terms of the GNU Free Documentation License, Version 1.3
  3822. or any later version published by the Free Software Foundation;
  3823. with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
  3824. Texts. A copy of the license is included in the section entitled ``GNU
  3825. Free Documentation License''.
  3826. If you have Invariant Sections, Front-Cover Texts and Back-Cover
  3827. Texts, replace the "with...Texts." line with this:
  3828. with the Invariant Sections being LIST THEIR TITLES, with
  3829. the Front-Cover Texts being LIST, and with the Back-Cover Texts
  3830. being LIST.
  3831. If you have Invariant Sections without Cover Texts, or some other
  3832. combination of the three, merge those two alternatives to suit the
  3833. situation.
  3834. If your document contains nontrivial examples of program code, we
  3835. recommend releasing these examples in parallel under your choice of free
  3836. software license, such as the GNU General Public License, to permit
  3837. their use in free software.
  3838. 
  3839. File: gccinstall.info, Node: Concept Index, Prev: GNU Free Documentation License, Up: Top
  3840. Concept Index
  3841. *************
  3842. �[index�]
  3843. * Menu:
  3844. * Binaries: Binaries. (line 6)
  3845. * build_configargs: Configuration. (line 1699)
  3846. * Configuration: Configuration. (line 6)
  3847. * configurations supported by GCC: Configurations. (line 6)
  3848. * Downloading GCC: Downloading the source.
  3849. (line 6)
  3850. * Downloading the Source: Downloading the source.
  3851. (line 6)
  3852. * FDL, GNU Free Documentation License: GNU Free Documentation License.
  3853. (line 6)
  3854. * Host specific installation: Specific. (line 6)
  3855. * host_configargs: Configuration. (line 1703)
  3856. * Installing GCC: Binaries: Binaries. (line 6)
  3857. * Installing GCC: Building: Building. (line 6)
  3858. * Installing GCC: Configuration: Configuration. (line 6)
  3859. * Installing GCC: Testing: Testing. (line 6)
  3860. * Prerequisites: Prerequisites. (line 6)
  3861. * Specific: Specific. (line 6)
  3862. * Specific installation notes: Specific. (line 6)
  3863. * Target specific installation: Specific. (line 6)
  3864. * Target specific installation notes: Specific. (line 6)
  3865. * target_configargs: Configuration. (line 1707)
  3866. * Testing: Testing. (line 6)
  3867. * Testsuite: Testing. (line 6)
  3868. 
  3869. Tag Table:
  3870. Node: Top1696
  3871. Node: Installing GCC2254
  3872. Node: Prerequisites3888
  3873. Ref: GNAT-prerequisite5875
  3874. Node: Downloading the source15487
  3875. Node: Configuration17158
  3876. Ref: with-gnu-as33246
  3877. Ref: with-as34141
  3878. Ref: with-gnu-ld35550
  3879. Ref: WithAixSoname58220
  3880. Ref: AixLdCommand58881
  3881. Node: Building100312
  3882. Node: Testing116043
  3883. Node: Final install123930
  3884. Node: Binaries129230
  3885. Node: Specific130337
  3886. Ref: aarch64-x-x130844
  3887. Ref: alpha-x-x132864
  3888. Ref: amd64-x-solaris2133078
  3889. Ref: amdgcn-x-amdhsa133160
  3890. Ref: arc-x-elf32133686
  3891. Ref: arc-linux-uclibc133862
  3892. Ref: arm-x-eabi134003
  3893. Ref: avr134256
  3894. Ref: bfin134837
  3895. Ref: cr16135100
  3896. Ref: cris135516
  3897. Ref: dos136214
  3898. Ref: epiphany-x-elf136537
  3899. Ref: x-x-freebsd136642
  3900. Ref: ft32-x-elf138442
  3901. Ref: h8300-hms138540
  3902. Ref: hppa-hp-hpux138892
  3903. Ref: hppa-hp-hpux10141264
  3904. Ref: hppa-hp-hpux11141677
  3905. Ref: x-x-linux-gnu147079
  3906. Ref: ix86-x-linux147272
  3907. Ref: ix86-x-solaris2147585
  3908. Ref: ia64-x-linux148661
  3909. Ref: ia64-x-hpux149431
  3910. Ref: x-ibm-aix149986
  3911. Ref: TransferAixShobj153648
  3912. Ref: iq2000-x-elf157458
  3913. Ref: lm32-x-elf157598
  3914. Ref: lm32-x-uclinux157702
  3915. Ref: m32c-x-elf157830
  3916. Ref: m32r-x-elf157932
  3917. Ref: m68k-x-x158034
  3918. Ref: m68k-x-uclinux159072
  3919. Ref: microblaze-x-elf159317
  3920. Ref: mips-x-x159436
  3921. Ref: moxie-x-elf161346
  3922. Ref: msp430-x-elf161393
  3923. Ref: nds32le-x-elf161950
  3924. Ref: nds32be-x-elf162022
  3925. Ref: nvptx-x-none162091
  3926. Ref: or1k-x-elf162654
  3927. Ref: or1k-x-linux162785
  3928. Ref: powerpc-x-x162866
  3929. Ref: powerpc-x-darwin163057
  3930. Ref: powerpc-x-elf163551
  3931. Ref: powerpc-x-linux-gnu163636
  3932. Ref: powerpc-x-netbsd163731
  3933. Ref: powerpc-x-eabisim163819
  3934. Ref: powerpc-x-eabi163945
  3935. Ref: powerpcle-x-elf164021
  3936. Ref: powerpcle-x-eabisim164113
  3937. Ref: powerpcle-x-eabi164246
  3938. Ref: rl78-x-elf164329
  3939. Ref: riscv32-x-elf164435
  3940. Ref: riscv32-x-linux164624
  3941. Ref: riscv64-x-elf164781
  3942. Ref: riscv64-x-linux164970
  3943. Ref: rx-x-elf165127
  3944. Ref: s390-x-linux165173
  3945. Ref: s390x-x-linux165245
  3946. Ref: s390x-ibm-tpf165332
  3947. Ref: x-x-solaris2165463
  3948. Ref: sparc-x-x168570
  3949. Ref: sparc-sun-solaris2169072
  3950. Ref: sparc-x-linux170215
  3951. Ref: sparc64-x-solaris2170246
  3952. Ref: sparcv9-x-solaris2170964
  3953. Ref: c6x-x-x171051
  3954. Ref: tilegx-*-linux171143
  3955. Ref: tilegxbe-*-linux171285
  3956. Ref: tilepro-*-linux171428
  3957. Ref: visium-x-elf171549
  3958. Ref: x-x-vxworks171657
  3959. Ref: x86-64-x-x173180
  3960. Ref: x86-64-x-solaris2173508
  3961. Ref: xtensa-x-elf174158
  3962. Ref: xtensa-x-linux174829
  3963. Ref: windows175170
  3964. Ref: x-x-cygwin177011
  3965. Ref: x-x-mingw32177564
  3966. Ref: older177790
  3967. Ref: elf179907
  3968. Node: Old180165
  3969. Node: Configurations183298
  3970. Node: GNU Free Documentation License186836
  3971. Node: Concept Index211964
  3972. 
  3973. End Tag Table