Changeset 65b4aac1 in mainline
- Timestamp:
- 2011-07-23T20:14:32Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- df217a6
- Parents:
- e16e2ba4 (diff), cfbb5d18 (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:
-
- 47 added
- 2 edited
-
Makefile (modified) (1 diff)
-
Makefile.common (modified) (3 diffs)
-
lib/posix/Makefile (added)
-
lib/posix/assert.h (added)
-
lib/posix/ctype.c (added)
-
lib/posix/ctype.h (added)
-
lib/posix/errno.c (added)
-
lib/posix/errno.h (added)
-
lib/posix/fcntl.c (added)
-
lib/posix/fcntl.h (added)
-
lib/posix/float.h (added)
-
lib/posix/fnmatch.c (added)
-
lib/posix/fnmatch.h (added)
-
lib/posix/internal/common.h (added)
-
lib/posix/inttypes.h (added)
-
lib/posix/iso646.h (added)
-
lib/posix/limits.h (added)
-
lib/posix/locale.c (added)
-
lib/posix/locale.h (added)
-
lib/posix/math.c (added)
-
lib/posix/math.h (added)
-
lib/posix/pwd.c (added)
-
lib/posix/pwd.h (added)
-
lib/posix/signal.c (added)
-
lib/posix/signal.h (added)
-
lib/posix/stdbool.h (added)
-
lib/posix/stddef.h (added)
-
lib/posix/stdint.h (added)
-
lib/posix/stdio.c (added)
-
lib/posix/stdio.h (added)
-
lib/posix/stdio/scanf.c (added)
-
lib/posix/stdlib.c (added)
-
lib/posix/stdlib.h (added)
-
lib/posix/stdlib/strtol.c (added)
-
lib/posix/stdlib/strtold.c (added)
-
lib/posix/string.c (added)
-
lib/posix/string.h (added)
-
lib/posix/strings.c (added)
-
lib/posix/strings.h (added)
-
lib/posix/sys/mman.h (added)
-
lib/posix/sys/stat.c (added)
-
lib/posix/sys/stat.h (added)
-
lib/posix/sys/types.h (added)
-
lib/posix/sys/wait.c (added)
-
lib/posix/sys/wait.h (added)
-
lib/posix/time.c (added)
-
lib/posix/time.h (added)
-
lib/posix/unistd.c (added)
-
lib/posix/unistd.h (added)
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
re16e2ba4 r65b4aac1 175 175 lib/usbdev \ 176 176 lib/usbhid \ 177 lib/usbvirt 177 lib/usbvirt \ 178 lib/posix 178 179 179 180 LIBC_BUILD = $(addsuffix .build,$(LIBC)) -
uspace/Makefile.common
re16e2ba4 r65b4aac1 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 … … 213 217 JOBFILE = $(LIBC_PREFIX)/../../../tools/jobfile.py 214 218 219 ifeq ($(POSIX_COMPAT),y) 220 CFLAGS = -I$(LIBPOSIX_PREFIX) 221 LIBS += $(LIBPOSIX_PREFIX)/libposix.a 222 endif 223 215 224 ifeq ($(COMPILER),gcc_cross) 216 CFLAGS = $(GCC_CFLAGS) $(EXTRA_CFLAGS)225 CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS) 217 226 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 218 227 endif 219 228 220 229 ifeq ($(COMPILER),gcc_native) 221 CFLAGS = $(GCC_CFLAGS) $(EXTRA_CFLAGS)230 CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS) 222 231 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 223 232 endif 224 233 225 234 ifeq ($(COMPILER),icc) 226 CFLAGS = $(ICC_CFLAGS) $(EXTRA_CFLAGS)235 CFLAGS += $(ICC_CFLAGS) $(EXTRA_CFLAGS) 227 236 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 228 237 endif 229 238 230 239 ifeq ($(COMPILER),clang) 231 CFLAGS = $(CLANG_CFLAGS) $(EXTRA_CFLAGS)240 CFLAGS += $(CLANG_CFLAGS) $(EXTRA_CFLAGS) 232 241 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 233 242 endif
Note:
See TracChangeset
for help on using the changeset viewer.
