Changeset edd688e in rtems


Ignore:
Timestamp:
03/27/03 18:46:05 (21 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
10a82e7
Parents:
109fc26
Message:

2003-03-27 Joel Sherrill <joel@…>

  • bootloader/Makefile.am: Eliminate EABI CFLAGS from those used to compile the bootloader.
Location:
c/src/lib/libbsp/powerpc/motorola_powerpc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/powerpc/motorola_powerpc/ChangeLog

    r109fc26 redd688e  
     12003-03-27      Joel Sherrill <joel@OARcorp.com>
     2
     3        * bootloader/Makefile.am: Eliminate EABI CFLAGS from those used to
     4        compile the bootloader.
     5
    162003-03-18  Till Straumann <strauman@slac.stanford.edu>
    27
  • c/src/lib/libbsp/powerpc/motorola_powerpc/bootloader/Makefile.am

    r109fc26 redd688e  
    2424DEFAULT_INCLUDES =
    2525
     26# Remove references to EABI when compiling bootloader
     27BOOTLOADER_CPU_FLAGS=$(subst -msdata=eabi,,$(subst -meabi,,$(CPU_CFLAGS)))
    2628AM_CPPFLAGS = -D__BOOT__ -DDEBUG
    2729AM_CFLAGS = \
     
    2931    -msoft-float -mstrict-align -fno-builtin -Wall -mmultiple \
    3032    -mstring -O2 -fomit-frame-pointer -ffixed-r13 -mno-sdata \
    31     $(CPU_CFLAGS)
     33    $(BOOTLOADER_CPU_CFLAGS)
    3234AM_CCASFLAGS = $(AM_CPPFLAGS) \
    3335    $(GCC_SPECS) -specs bsp_specs -qrtems -mrelocatable \
    34     -DASM $(CPU_CFLAGS)
     36    -DASM $(BOOTLOADER_CPU_CFLAGS)
    3537
    3638#
Note: See TracChangeset for help on using the changeset viewer.