Changeset 5c1b3cd in mainline for uspace/Makefile.common
- Timestamp:
- 2013-03-16T21:48:33Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6b0cfa1
- Parents:
- 71fe7e9d (diff), f597bc4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile.common
r71fe7e9d r5c1b3cd 103 103 104 104 LIBC_PREFIX = $(LIB_PREFIX)/c 105 LIBC_INCLUDES_FLAGS = \ 106 -I$(LIBC_PREFIX)/include \ 107 -I$(LIBC_PREFIX)/arch/$(UARCH)/include \ 108 -I$(ROOT_PATH)/abi/include 105 109 LIBSOFTFLOAT_PREFIX = $(LIB_PREFIX)/softfloat 106 110 LIBSOFTINT_PREFIX = $(LIB_PREFIX)/softint … … 182 186 find . -name '*.lo' -follow -exec rm \{\} \; 183 187 184 GCC_CFLAGS = -I$(LIBC_PREFIX)/include-O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \188 GCC_CFLAGS = $(LIBC_INCLUDES_FLAGS) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ 185 189 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \ 186 190 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \ … … 189 193 -pipe -g -D__$(ENDIANESS)__ 190 194 191 ICC_CFLAGS = -I$(LIBC_PREFIX)/include-O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \195 ICC_CFLAGS = $(LIBC_INCLUDES_FLAGS) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ 192 196 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \ 193 197 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \ … … 196 200 -pipe -g -D__$(ENDIANESS)__ 197 201 198 CLANG_CFLAGS = -I$(LIBC_PREFIX)/include-O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \202 CLANG_CFLAGS = $(LIBC_INCLUDES_FLAGS) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ 199 203 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \ 200 204 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \
Note:
See TracChangeset
for help on using the changeset viewer.