Changeset 2e08dce in mainline
- Timestamp:
- 2011-04-09T18:39:10Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7ab6fc2
- Parents:
- 3baec29
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
r3baec29 r2e08dce 124 124 125 125 RD_APPS_NON_ESSENTIAL = \ 126 $(USPACE_PATH)/app/cpp/cpp \ 126 127 $(USPACE_PATH)/app/edit/edit \ 127 128 $(USPACE_PATH)/app/kill/kill \ -
uspace/app/pcc/cc/cpp/Makefile
r3baec29 r2e08dce 37 37 EXTRA_CFLAGS = -I$(LIBCOMPAT_PREFIX) -I$(MIPDIR) -I$(ARCHDIR) 38 38 EXTRA_CLEAN = y.tab.c y.tab.h 39 DEFS = -DCPP_DEBUG -Dfree=free 39 DEFS = -DCPP_DEBUG -Dfree=free -DCPPBUF=16384 40 40 BINARY = cpp 41 41 -
uspace/app/pcc/cc/cpp/cpp.c
r3baec29 r2e08dce 275 275 error("Can't creat %s", argv[1]); 276 276 } else 277 ofd = 1; /* stdout */277 ofd = fileno(stdout); 278 278 istty = isatty(ofd); 279 279 -
uspace/app/pcc/cc/cpp/token.c
r3baec29 r2e08dce 800 800 error("Limit for nested includes exceeded"); 801 801 } else { 802 ic->infil = 0; 802 error("Reading from stdin is disabled on HelenOS."); 803 ic->infil = fileno(stdin); 803 804 ic->orgfn = ic->fname = (const usch *)"<stdin>"; 804 805 }
Note:
See TracChangeset
for help on using the changeset viewer.