• Home
  • Raw
  • Download

Lines Matching +full:gcc +full:- +full:8 +full:- +full:make

5 (Addison-Wesley, 2024, ISBN-13 978-0138269722, ISBN-10 0138269726).
9 This version of Awk handles UTF-8 and comma-separated values (CSV) input.
18 UTF-8 sequences may appear in literal strings and regular expressions.
19 Aribtrary characters may be included with `\u` followed by 1 to 8 hexadecimal digits.
23 Regular expressions may include UTF-8 code points, including `\u`.
27 The option `--csv` turns on CSV processing of input:
29 double-quote (`"`) characters, quoted fields may contain embedded newlines.
30 Double-quotes in fields have to be doubled and enclosed in quoted fields.
34 field-splitting in `split` is determined by CSV mode.
68 Please _also_ open an issue in the GitHub issue tracker, to make
79 * Please run the test suite and make sure that your changes pass before
83 1. Run `oldawk=nawk make check > check.out 2>&1`.
84 …1. Search for `BAD` or `error` in the result. In general, look over it manually to make sure there…
88 This allows us to do testing, and to make any additional edits or changes
95 make
99 bison -d awkgram.y
100 awkgram.y: warning: 44 shift/reduce conflicts [-Wconflicts-sr]
101 awkgram.y: warning: 85 reduce/reduce conflicts [-Wconflicts-rr]
102 awkgram.y: note: rerun with option '-Wcounterexamples' to generate conflict counterexamples
103 gcc -g -Wall -pedantic -Wcast-qual -O2 -c -o awkgram.tab.o awkgram.tab.c
104 gcc -g -Wall -pedantic -Wcast-qual -O2 -c -o b.o b.c
105 gcc -g -Wall -pedantic -Wcast-qual -O2 -c -o main.o main.c
106 gcc -g -Wall -pedantic -Wcast-qual -O2 -c -o parse.o parse.c
107 gcc -g -Wall -pedantic -Wcast-qual -O2 maketab.c -o maketab
109 gcc -g -Wall -pedantic -Wcast-qual -O2 -c -o proctab.o proctab.c
110 gcc -g -Wall -pedantic -Wcast-qual -O2 -c -o tran.o tran.c
111 gcc -g -Wall -pedantic -Wcast-qual -O2 -c -o lib.o lib.c
112 gcc -g -Wall -pedantic -Wcast-qual -O2 -c -o run.o run.c
113 gcc -g -Wall -pedantic -Wcast-qual -O2 -c -o lex.o lex.c
114gcc -g -Wall -pedantic -Wcast-qual -O2 awkgram.tab.o b.o main.o parse.o proctab.o tran.o lib.o r…
125 compiled this without any changes using `gcc -Wall` and/or local C
130 This compiles without change on Macintosh OS X using `gcc` and
133 You can also use `make CC=g++` to build with the GNU C++ compiler,