Strict Standards: Declaration of action_plugin_importoldchangelog::register() should be compatible with DokuWiki_Action_Plugin::register($controller) in /DISK2/WWW/pavel-rimsky.cz/helenos/lib/plugins/importoldchangelog/action.php on line 8 Strict Standards: Declaration of action_plugin_importoldindex::register() should be compatible with DokuWiki_Action_Plugin::register($controller) in /DISK2/WWW/pavel-rimsky.cz/helenos/lib/plugins/importoldindex/action.php on line 0 Deprecated: Function split() is deprecated in /DISK2/WWW/pavel-rimsky.cz/helenos/inc/auth.php on line 154 Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /DISK2/WWW/pavel-rimsky.cz/helenos/inc/auth.php on line 456 Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /DISK2/WWW/pavel-rimsky.cz/helenos/inc/auth.php on line 456 Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /DISK2/WWW/pavel-rimsky.cz/helenos/inc/auth.php on line 453 Strict Standards: Only variables should be passed by reference in /DISK2/WWW/pavel-rimsky.cz/helenos/doku.php on line 71 linker_script [HelenOS UltraSPARC port]
 

linker script

OUTPUT_FORMAT("elf64-sparc")           /* format of the output (linked) file */
ENTRY(start)                           /* entry point name (its body is defined in the source file) */

/* we create output section called ".boot", it will be loaded to address 0x4000 */
SECTIONS {
        .boot 0x4000: AT (0x4000) {
                *(BOOTSTRAP);           /* if any input source file contains the "BOOTSTRAP" section, place it as the first in the output file */
                *(.text);               /* if any input source file contains the ".text" section, place it as the second in the output file */
                *(.rodata);             /* ... */
                *(.rodata.*);
                *(.data);               /* initialized data */
                *(.sdata);
                *(.sdata2);
                *(.sbss);
                *(.bss);                /* uninitialized static variables */
                *(COMMON);
         }

        /DISCARD/ : {
                *(.comment);
                *(.note*);
        }

}
 
linker_script.txt · Last modified: 2008/05/03 21:38 by 83.208.68.45
 
Recent changes RSS feed Creative Commons License Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki
Strict Standards: Only variables should be passed by reference in /DISK2/WWW/pavel-rimsky.cz/helenos/doku.php on line 79