diff options
author | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2015-11-24 16:06:30 +0000 |
---|---|---|
committer | Szabolcs Nagy <nsz@gcc.gnu.org> | 2015-11-24 16:06:30 +0000 |
commit | 16a21ab32693a8a42f1d20e36e0d10e9c99d7f86 (patch) | |
tree | c68f423d99be5073ae4281595b533fcbba5e076a /gcc | |
parent | f5c345fc414ea8404e8ca34f8b820f8d8d512727 (diff) | |
download | gcc-16a21ab32693a8a42f1d20e36e0d10e9c99d7f86.zip gcc-16a21ab32693a8a42f1d20e36e0d10e9c99d7f86.tar.gz gcc-16a21ab32693a8a42f1d20e36e0d10e9c99d7f86.tar.bz2 |
[AArch64] Documentation fix for -fpic
gcc/
* doc/invoke.texi (-fpic): Add the AArch64 limit.
(-fPIC): Add AArch64.
From-SVN: r230819
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/invoke.texi | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5d18534..8fb9152 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-11-24 Szabolcs Nagy <szabolcs.nagy@arm.com> + + * doc/invoke.texi (-fpic): Add the AArch64 limit. + (-fPIC): Add AArch64. + 2015-11-24 Tom de Vries <tom@codesourcery.com> * tree-ssa-loop-im.c (tree_ssa_lim): Make static. diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 53f1fe2..53a0467 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -24332,7 +24332,7 @@ loader is not part of GCC; it is part of the operating system). If the GOT size for the linked executable exceeds a machine-specific maximum size, you get an error message from the linker indicating that @option{-fpic} does not work; in that case, recompile with @option{-fPIC} -instead. (These maximums are 8k on the SPARC and 32k +instead. (These maximums are 8k on the SPARC, 28k on AArch64 and 32k on the m68k and RS/6000. The x86 has no such limit.) Position-independent code requires special support, and therefore works @@ -24347,7 +24347,7 @@ are defined to 1. @opindex fPIC If supported for the target machine, emit position-independent code, suitable for dynamic linking and avoiding any limit on the size of the -global offset table. This option makes a difference on the m68k, +global offset table. This option makes a difference on AArch64, m68k, PowerPC and SPARC@. Position-independent code requires special support, and therefore works |