Changeset cd9531d3 in mainline


Ignore:
Timestamp:
2019-06-25T14:46:25Z (5 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2bb6d04
Parents:
687108b
Message:

Make mips32 and mips32eb the same UARCH, same as is with KARCH and BARCH

Files:
17 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • HelenOS.config

    r687108b rcd9531d3  
    229229% User space architecture
    230230@ "mips32"
    231 ! [PLATFORM=mips32&(MACHINE=msim|MACHINE=lmalta)] UARCH (choice)
    232 
    233 % User space architecture
    234 @ "mips32eb"
    235 ! [PLATFORM=mips32&MACHINE=bmalta] UARCH (choice)
     231! [PLATFORM=mips32] UARCH (choice)
    236232
    237233% User space architecture
  • uspace/lib/c/arch/mips32/Makefile.common

    r687108b rcd9531d3  
    3131LDFLAGS += -Wl,--gc-sections
    3232
    33 ENDIANESS = LE
    34 
    35 
    3633ifeq ($(MACHINE),msim)
     34        ENDIANESS = LE
    3735        COMMON_CFLAGS += -march=r4000
    3836endif
    3937
    4038ifeq ($(MACHINE),lmalta)
     39        ENDIANESS = LE
    4140        COMMON_CFLAGS += -march=4kc
    4241endif
    4342
     43ifeq ($(MACHINE),bmalta)
     44        ENDIANESS = BE
     45        COMMON_CFLAGS += -march=4kc
     46endif
Note: See TracChangeset for help on using the changeset viewer.