Changeset dfecf88 in mainline


Ignore:
Timestamp:
2010-02-16T17:42:36Z (14 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
836d0689
Parents:
fb52db8
Message:

abs32le workaround: avoid feeding the assembler with @progbits

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/Makefile.build

    rfb52db8 rdfecf88  
    9191## Cross-platform assembly to start a symtab.data section
    9292#
    93 SYMTAB_SECTION = ".section symtab.data, \"a\", $(ATSIGN)progbits;"
     93ifeq ($(KARCH),abs32le)
     94        SYMTAB_SECTION = ".section symtab.data, \"a\";"
     95else
     96        SYMTAB_SECTION = ".section symtab.data, \"a\", $(ATSIGN)progbits;"
     97endif
    9498
    9599## Simple detection for the type of the host system
Note: See TracChangeset for help on using the changeset viewer.