summaryrefslogtreecommitdiff
path: root/x86_64-linux-android/lib/ldscripts/i386linux.x
diff options
context:
space:
mode:
Diffstat (limited to 'x86_64-linux-android/lib/ldscripts/i386linux.x')
-rw-r--r--x86_64-linux-android/lib/ldscripts/i386linux.x51
1 files changed, 0 insertions, 51 deletions
diff --git a/x86_64-linux-android/lib/ldscripts/i386linux.x b/x86_64-linux-android/lib/ldscripts/i386linux.x
deleted file mode 100644
index 5a4d711..0000000
--- a/x86_64-linux-android/lib/ldscripts/i386linux.x
+++ /dev/null
@@ -1,51 +0,0 @@
-/* Default linker script, for normal executables */
-/* Copyright (C) 2014-2016 Free Software Foundation, Inc.
- Copying and distribution of this script, with or without modification,
- are permitted in any medium without royalty provided the copyright
- notice and this notice are preserved. */
-OUTPUT_FORMAT("a.out-i386-linux", "a.out-i386-linux",
- "a.out-i386-linux")
-OUTPUT_ARCH(i386)
-SEARCH_DIR("=/tmp/0fe86a71df169d70953725703f46cac3/i386-linux-androidaout/lib");
-PROVIDE (__stack = 0);
-SECTIONS
-{
- . = 0x1020;
- .text :
- {
- CREATE_OBJECT_SYMBOLS
- *(.text)
- /* The next six sections are for SunOS dynamic linking. The order
- is important. */
- *(.dynrel)
- *(.hash)
- *(.dynsym)
- *(.dynstr)
- *(.rules)
- *(.need)
- _etext = .;
- __etext = .;
- }
- . = ALIGN(0x1000);
- .data :
- {
- /* The first three sections are for SunOS dynamic linking. */
- *(.dynamic)
- *(.got)
- *(.plt)
- *(.data)
- *(.linux-dynamic) /* For Linux dynamic linking. */
- CONSTRUCTORS
- _edata = .;
- __edata = .;
- }
- .bss :
- {
- __bss_start = .;
- *(.bss)
- *(COMMON)
- . = ALIGN(4);
- _end = . ;
- __end = . ;
- }
-}