aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1996-04-16 09:20:17 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1996-04-16 09:20:17 -0400
commitbdf3e90e9536788b770247ebd64cc1c5d66fd5ed (patch)
tree2aac07c7c2d0128299479787b585f2ca018b046a /gcc
parent9cb30fc28953eb4097c8ba7733ffaf5f7ad9af0d (diff)
downloadgcc-bdf3e90e9536788b770247ebd64cc1c5d66fd5ed.zip
gcc-bdf3e90e9536788b770247ebd64cc1c5d66fd5ed.tar.gz
gcc-bdf3e90e9536788b770247ebd64cc1c5d66fd5ed.tar.bz2
(LIB_SPEC): Deleted.
(BSS_SECTION_ASM_OP, ASM_OUTPUT_ALIGNED_BSS): Define. From-SVN: r11810
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/m68k/linux.h29
1 files changed, 14 insertions, 15 deletions
diff --git a/gcc/config/m68k/linux.h b/gcc/config/m68k/linux.h
index 2b5ce99..8019411 100644
--- a/gcc/config/m68k/linux.h
+++ b/gcc/config/m68k/linux.h
@@ -112,21 +112,6 @@ Boston, MA 02111-1307, USA. */
"%{fPIC:-D__PIC__ -D__pic__} %{fpic:-D__PIC__ -D__pic__} %{m68881:-D__HAVE_68881__} %{posix:-D_POSIX_SOURCE}"
#endif
-#undef LIB_SPEC
-#if 1
-/* We no longer link with libc_p.a or libg.a by default. If you want
- to profile or debug the Linux C library, please add -lc_p or -ggdb
- to LDFLAGS at the link time, respectively. */
-#define LIB_SPEC \
- "%{!shared:%{!symbolic: %{mieee-fp:-lieee} %{p:-lgmon} %{pg:-lgmon} \
- %{!ggdb:-lc} %{ggdb:-lg}}}"
-#else
-#define LIB_SPEC \
- "%{!shared:%{!symbolic: \
- %{mieee-fp:-lieee} %{p:-lgmon -lc_p} %{pg:-lgmon -lc_p} \
- %{!p:%{!pg:%{!g*:-lc} %{g*:-lg}}}}}"
-#endif
-
/* Provide a LINK_SPEC appropriate for Linux. Here we provide support
for the special GCC options -static and -shared, which allow us to
link things in one of these three modes by applying the appropriate
@@ -183,6 +168,20 @@ Boston, MA 02111-1307, USA. */
if ((LOG) > 0) \
fprintf ((FILE), "\t%s \t%u\n", ALIGN_ASM_OP, 1 << (LOG));
+/* If defined, a C expression whose value is a string containing the
+ assembler operation to identify the following data as uninitialized global
+ data. */
+
+#define BSS_SECTION_ASM_OP ".section\t.bss"
+
+/* A C statement (sans semicolon) to output to the stdio stream
+ FILE the assembler definition of an uninitialized global label named
+ NAME whose size is SIZE bytes and alignment is ALIGN bytes.
+ Try to use asm_output_aligned_bss to implement this macro. */
+
+#define ASM_OUTPUT_ALIGNED_BSS(FILE, NAME, SIZE, ALIGN) \
+ asm_output_aligned_bss (FILE, NAME, SIZE, ALIGN)
+
/* Output assembler code to FILE to increment profiler label # LABELNO
for profiling a function entry. */