PR ld/10864

* ld.texinfo (Entry Point): Mention that the default entry symbol
        is not 'start' on some targets.
This commit is contained in:
Nick Clifton 2009-11-10 16:34:53 +00:00
parent 7d2552b4b6
commit 3ab904c416
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2009-11-10 Nick Clifton <nickc@redhat.com>
PR ld/10864
* ld.texinfo (Entry Point): Mention that the default entry symbol
is not 'start' on some targets.
2009-11-06 H.J. Lu <hongjiu.lu@intel.com>
PR ld/10912

View File

@ -2921,7 +2921,9 @@ the @samp{-e} @var{entry} command-line option;
@item
the @code{ENTRY(@var{symbol})} command in a linker script;
@item
the value of the symbol @code{start}, if defined;
the value of a target specific symbol, if it is defined; For many
targets this is @code{start}, but PE and BeOS based systems for example
check a list of possible entry symbols, matching the first one found.
@item
the address of the first byte of the @samp{.text} section, if present;
@item