Changeset cd9531d3 in mainline
- Timestamp:
- 2019-06-25T14:46:25Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2bb6d04
- Parents:
- 687108b
- Files:
-
- 17 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
r687108b rcd9531d3 229 229 % User space architecture 230 230 @ "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) 236 232 237 233 % User space architecture -
uspace/lib/c/arch/mips32/Makefile.common
r687108b rcd9531d3 31 31 LDFLAGS += -Wl,--gc-sections 32 32 33 ENDIANESS = LE34 35 36 33 ifeq ($(MACHINE),msim) 34 ENDIANESS = LE 37 35 COMMON_CFLAGS += -march=r4000 38 36 endif 39 37 40 38 ifeq ($(MACHINE),lmalta) 39 ENDIANESS = LE 41 40 COMMON_CFLAGS += -march=4kc 42 41 endif 43 42 43 ifeq ($(MACHINE),bmalta) 44 ENDIANESS = BE 45 COMMON_CFLAGS += -march=4kc 46 endif
Note:
See TracChangeset
for help on using the changeset viewer.