Changeset 3875f106 in mainline
- Timestamp:
- 2018-11-09T13:36:27Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1a5fe4f
- Parents:
- 9c75a99d
- git-author:
- Jiri Svoboda <jiri@…> (2018-10-09 06:34:48)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-11-09 13:36:27)
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/xcw/bin/helenos-bld-config
r9c75a99d r3875f106 47 47 case ".$1" in 48 48 (.--cc) extract_field "CC" "$MAKEFILE_COMMON";; 49 (.--ld) extract_field "LD" "$MAKEFILE_COMMON";; 49 50 (.--uarch) extract_field "UARCH" "$MAKEFILE_CONFIG";; 50 51 (.--endian) -
tools/xcw/demo/Makefile
r9c75a99d r3875f106 43 43 44 44 CC = helenos-cc 45 CFLAGS = -std=gnu99 -Wall `helenos-pkg-config --cflags libgui libdraw libmath` 45 LD = helenos-ld 46 CFLAGS = -std=gnu11 -Wall `helenos-pkg-config --cflags libgui libdraw libmath` \ 47 -D_HELENOS_SOURCE 46 48 LIBS = `helenos-pkg-config --libs libgui libdraw libmath` 47 49 output = viewer … … 55 57 56 58 $(output): $(objects) 57 $( CC) -o $@ $^ $(LIBS)59 $(LD) -o $@ $^ $(LIBS) 58 60 59 61 %.o: %.c -
uspace/lib/c/include/string.h
r9c75a99d r3875f106 36 36 #define LIBC_STRING_H_ 37 37 38 #if def _HELENOS_SOURCE38 #if defined(_HELENOS_SOURCE) && !defined(_REALLY_WANT_STRING_H) 39 39 #error Please use str.h and mem.h instead 40 40 #endif
Note:
See TracChangeset
for help on using the changeset viewer.