Changeset bf49001 in mainline
- Timestamp:
- 2011-05-24T03:41:01Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d1671a8
- Parents:
- 864a081 (diff), 2d2b8e6 (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. - Location:
- uspace
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r864a081 rbf49001 153 153 lib/drv \ 154 154 lib/packet \ 155 lib/net 155 lib/net \ 156 lib/posix 156 157 157 158 LIBC_BUILD = $(addsuffix .build,$(LIBC)) -
uspace/Makefile.common
r864a081 rbf49001 44 44 # EXTRA_CLEAN additional cleanup targets 45 45 # 46 # POSIX_COMPAT set to 'y' to use POSIX compatibility layer 47 # 46 48 # Optionally, for a binary: 47 49 # STATIC_NEEDED set to 'y' for init binaries, will build statically … … 104 106 LIBSOFTINT_PREFIX = $(LIB_PREFIX)/softint 105 107 108 LIBPOSIX_PREFIX = $(LIB_PREFIX)/posix 109 106 110 LIBBLOCK_PREFIX = $(LIB_PREFIX)/block 107 111 LIBFS_PREFIX = $(LIB_PREFIX)/fs … … 197 201 JOBFILE = $(LIBC_PREFIX)/../../../tools/jobfile.py 198 202 203 ifeq ($(POSIX_COMPAT),y) 204 CFLAGS = -I$(LIBPOSIX_PREFIX) 205 LIBS += $(LIBPOSIX_PREFIX)/libposix.a 206 endif 207 199 208 ifeq ($(COMPILER),gcc_cross) 200 CFLAGS = $(GCC_CFLAGS) $(EXTRA_CFLAGS)209 CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS) 201 210 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 202 211 endif 203 212 204 213 ifeq ($(COMPILER),gcc_native) 205 CFLAGS = $(GCC_CFLAGS) $(EXTRA_CFLAGS)214 CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS) 206 215 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 207 216 endif 208 217 209 218 ifeq ($(COMPILER),icc) 210 CFLAGS = $(ICC_CFLAGS) $(EXTRA_CFLAGS)219 CFLAGS += $(ICC_CFLAGS) $(EXTRA_CFLAGS) 211 220 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 212 221 endif 213 222 214 223 ifeq ($(COMPILER),clang) 215 CFLAGS = $(CLANG_CFLAGS) $(EXTRA_CFLAGS)224 CFLAGS += $(CLANG_CFLAGS) $(EXTRA_CFLAGS) 216 225 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 217 226 endif
Note:
See TracChangeset
for help on using the changeset viewer.