Changeset 9780584 in mainline
- Timestamp:
- 2017-06-05T16:21:21Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a961619
- Parents:
- 7a99507
- Location:
- uspace
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile.common
r7a99507 r9780584 235 235 GCC_CFLAGS = $(INCLUDES_FLAGS) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ 236 236 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \ 237 -finput-charset=UTF-8 -ffreestanding -fno-builtin - nostdlib -nostdinc\238 - Wall -Wextra -Wno-clobbered -Wno-unused-parameter -Wmissing-prototypes\239 - std=gnu99 -Werror-implicit-function-declaration -Wwrite-strings\240 - pipe -ggdb -D__$(ENDIANESS)__237 -finput-charset=UTF-8 -ffreestanding -fno-builtin -ffunction-sections \ 238 -nostdlib -nostdinc -Wall -Wextra -Wno-clobbered -Wno-unused-parameter \ 239 -Wmissing-prototypes -std=gnu99 -Werror-implicit-function-declaration \ 240 -Wwrite-strings -pipe -ggdb -D__$(ENDIANESS)__ 241 241 242 242 ICC_CFLAGS = $(INCLUDES_FLAGS) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ -
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.