Changeset e211ea04 in mainline
- Timestamp:
- 2018-01-04T20:50:52Z (7 years ago)
- Children:
- 847844a
- Parents:
- 46577995
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:52)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/Makefile
r46577995 re211ea04 87 87 INCLUDES_FLAGS = $(addprefix -I,$(INCLUDES)) 88 88 89 DEFS = -DKERNEL -DRELEASE=$(RELEASE) "-DCOPYRIGHT=$(COPYRIGHT)" "-DNAME=$(NAME)" -D__$(BITS)_BITS__ -D__$(ENDIANESS)__ 89 DEFS = -DKERNEL -DRELEASE=$(RELEASE) "-DCOPYRIGHT=$(COPYRIGHT)" "-DNAME=$(NAME)" -D__$(BITS)_BITS__ -D__$(ENDIANESS)__ -D__OPAQUE_ERRNO__ 90 90 91 91 COMMON_CFLAGS = $(INCLUDES_FLAGS) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \ -
uspace/Makefile.common
r46577995 re211ea04 177 177 -ffreestanding -fno-builtin -nostdlib -nostdinc -fexec-charset=UTF-8 \ 178 178 -finput-charset=UTF-8 -D__$(ENDIANESS)__ -fno-common \ 179 -fdebug-prefix-map=$(realpath $(ROOT_PATH))=. 179 -fdebug-prefix-map=$(realpath $(ROOT_PATH))=. \ 180 -D__OPAQUE_ERRNO__ 180 181 181 182 GCC_CFLAGS = -ffunction-sections -Wall -Wextra -Wno-clobbered \ -
uspace/lib/c/generic/vfs/vfs.c
r46577995 re211ea04 1279 1279 async_wait_for(req, &rc_orig); 1280 1280 1281 // XXX: Workaround for GCC diagnostics. 1282 *handle = -1; 1283 1281 1284 if (rc_orig != EOK) 1282 1285 return (errno_t) rc_orig;
Note:
See TracChangeset
for help on using the changeset viewer.