You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
4.1 KiB
HTML
94 lines
4.1 KiB
HTML
4 years ago
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>Symbol-Renaming Pragmas - Using the GNU Compiler Collection (GCC)</title>
|
||
|
<meta http-equiv="Content-Type" content="text/html">
|
||
|
<meta name="description" content="Using the GNU Compiler Collection (GCC)">
|
||
|
<meta name="generator" content="makeinfo 4.13">
|
||
|
<link title="Top" rel="start" href="index.html#Top">
|
||
|
<link rel="up" href="Pragmas.html#Pragmas" title="Pragmas">
|
||
|
<link rel="prev" href="Solaris-Pragmas.html#Solaris-Pragmas" title="Solaris Pragmas">
|
||
|
<link rel="next" href="Structure_002dPacking-Pragmas.html#Structure_002dPacking-Pragmas" title="Structure-Packing Pragmas">
|
||
|
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
|
||
|
<!--
|
||
|
Copyright (C) 1988-2015 Free Software Foundation, Inc.
|
||
|
|
||
|
Permission is granted to copy, distribute and/or modify this document
|
||
|
under the terms of the GNU Free Documentation License, Version 1.3 or
|
||
|
any later version published by the Free Software Foundation; with the
|
||
|
Invariant Sections being ``Funding Free Software'', the Front-Cover
|
||
|
Texts being (a) (see below), and with the Back-Cover Texts being (b)
|
||
|
(see below). A copy of the license is included in the section entitled
|
||
|
``GNU Free Documentation License''.
|
||
|
|
||
|
(a) The FSF's Front-Cover Text is:
|
||
|
|
||
|
A GNU Manual
|
||
|
|
||
|
(b) The FSF's Back-Cover Text is:
|
||
|
|
||
|
You have freedom to copy and modify this GNU Manual, like GNU
|
||
|
software. Copies published by the Free Software Foundation raise
|
||
|
funds for GNU development.-->
|
||
|
<meta http-equiv="Content-Style-Type" content="text/css">
|
||
|
<style type="text/css"><!--
|
||
|
pre.display { font-family:inherit }
|
||
|
pre.format { font-family:inherit }
|
||
|
pre.smalldisplay { font-family:inherit; font-size:smaller }
|
||
|
pre.smallformat { font-family:inherit; font-size:smaller }
|
||
|
pre.smallexample { font-size:smaller }
|
||
|
pre.smalllisp { font-size:smaller }
|
||
|
span.sc { font-variant:small-caps }
|
||
|
span.roman { font-family:serif; font-weight:normal; }
|
||
|
span.sansserif { font-family:sans-serif; font-weight:normal; }
|
||
|
--></style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="node">
|
||
|
<a name="Symbol-Renaming-Pragmas"></a>
|
||
|
<a name="Symbol_002dRenaming-Pragmas"></a>
|
||
|
<p>
|
||
|
Next: <a rel="next" accesskey="n" href="Structure_002dPacking-Pragmas.html#Structure_002dPacking-Pragmas">Structure-Packing Pragmas</a>,
|
||
|
Previous: <a rel="previous" accesskey="p" href="Solaris-Pragmas.html#Solaris-Pragmas">Solaris Pragmas</a>,
|
||
|
Up: <a rel="up" accesskey="u" href="Pragmas.html#Pragmas">Pragmas</a>
|
||
|
<hr>
|
||
|
</div>
|
||
|
|
||
|
<h4 class="subsection">6.60.7 Symbol-Renaming Pragmas</h4>
|
||
|
|
||
|
<p>GCC supports a <code>#pragma</code> directive that changes the name used in
|
||
|
assembly for a given declaration. While this pragma is supported on all
|
||
|
platforms, it is intended primarily to provide compatibility with the
|
||
|
Solaris system headers. This effect can also be achieved using the asm
|
||
|
labels extension (see <a href="Asm-Labels.html#Asm-Labels">Asm Labels</a>).
|
||
|
|
||
|
<dl>
|
||
|
<dt><code>redefine_extname </code><var>oldname</var> <var>newname</var><dd><a name="index-pragma_002c-redefine_005fextname-4176"></a>
|
||
|
This pragma gives the C function <var>oldname</var> the assembly symbol
|
||
|
<var>newname</var>. The preprocessor macro <code>__PRAGMA_REDEFINE_EXTNAME</code>
|
||
|
is defined if this pragma is available (currently on all platforms).
|
||
|
</dl>
|
||
|
|
||
|
<p>This pragma and the asm labels extension interact in a complicated
|
||
|
manner. Here are some corner cases you may want to be aware of:
|
||
|
|
||
|
<ol type=1 start=1>
|
||
|
<li>This pragma silently applies only to declarations with external
|
||
|
linkage. Asm labels do not have this restriction.
|
||
|
|
||
|
<li>In C++, this pragma silently applies only to declarations with
|
||
|
“C” linkage. Again, asm labels do not have this restriction.
|
||
|
|
||
|
<li>If either of the ways of changing the assembly name of a
|
||
|
declaration are applied to a declaration whose assembly name has
|
||
|
already been determined (either by a previous use of one of these
|
||
|
features, or because the compiler needed the assembly name in order to
|
||
|
generate code), and the new name is different, a warning issues and
|
||
|
the name does not change.
|
||
|
|
||
|
<li>The <var>oldname</var> used by <code>#pragma redefine_extname</code> is
|
||
|
always the C-language name.
|
||
|
</ol>
|
||
|
|
||
|
</body></html>
|
||
|
|