Changeset 9780584 in mainline for uspace/lib/c
- Timestamp:
- 2017-06-05T16:21:21Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a961619
- Parents:
- 7a99507
- Location:
- uspace/lib/c/arch
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/amd64/Makefile.common
r7a99507 r9780584 29 29 GCC_CFLAGS += -mno-tls-direct-seg-refs -fno-omit-frame-pointer 30 30 CLANG_CFLAGS += -fno-omit-frame-pointer 31 LFLAGS += --gc-sections 31 32 32 33 ENDIANESS = LE -
uspace/lib/c/arch/arm32/Makefile.common
r7a99507 r9780584 28 28 # 29 29 30 GCC_CFLAGS += -ffixed-r9 -mtp=soft -fno-omit-frame-pointer -mapcs-frame -march=$(subst _,-,$(PROCESSOR_ARCH)) 30 GCC_CFLAGS += -ffixed-r9 -mtp=soft -fno-omit-frame-pointer -mapcs-frame \ 31 -march=$(subst _,-,$(PROCESSOR_ARCH)) 32 LFLAGS += --gc-sections 31 33 32 34 ifeq ($(CONFIG_FPU),y) -
uspace/lib/c/arch/ia32/Makefile.common
r7a99507 r9780584 28 28 29 29 ifeq ($(PROCESSOR),i486) 30 GCC_CFLAGS += -march=i486 -mno-tls-direct-seg-refs -fno-omit-frame-pointer30 GCC_CFLAGS += -march=i486 31 31 else 32 GCC_CFLAGS += -march=pentium -mno-tls-direct-seg-refs -fno-omit-frame-pointer32 GCC_CFLAGS += -march=pentium 33 33 endif 34 34 35 GCC_CFLAGS += -mno-tls-direct-seg-refs -fno-omit-frame-pointer 35 36 CLANG_CFLAGS += -fno-omit-frame-pointer 37 LFLAGS += --gc-sections 36 38 37 39 ENDIANESS = LE -
uspace/lib/c/arch/mips32/Makefile.common
r7a99507 r9780584 30 30 BASE_LIBS += $(LIBSOFTFLOAT_PREFIX)/libsoftfloat.a 31 31 AS_PROLOG = .module softfloat;.abicalls; 32 LFLAGS += --gc-sections 32 33 33 34 ENDIANESS = LE -
uspace/lib/c/arch/mips32eb/Makefile.common
r7a99507 r9780584 30 30 BASE_LIBS += $(LIBSOFTFLOAT_PREFIX)/libsoftfloat.a 31 31 AS_PROLOG = .module softfloat;.abicalls; 32 LFLAGS += --gc-sections 32 33 33 34 ENDIANESS = BE -
uspace/lib/c/arch/ppc32/Makefile.common
r7a99507 r9780584 27 27 # 28 28 29 30 29 ifeq ($(CONFIG_FPU),y) 31 30 FLOATS=hard … … 37 36 BASE_LIBS += $(LIBSOFTFLOAT_PREFIX)/libsoftfloat.a 38 37 AFLAGS += -a32 38 LFLAGS += --gc-sections 39 39 40 40 ENDIANESS = BE -
uspace/lib/c/arch/sparc64/Makefile.common
r7a99507 r9780584 35 35 GCC_CFLAGS += -m64 -mcmodel=medlow 36 36 37 LFLAGS += -no-check-sections 37 LFLAGS += -no-check-sections --gc-sections 38 38 39 39 ENDIANESS = BE
Note:
See TracChangeset
for help on using the changeset viewer.