Lines Matching +full:gcc +full:- +full:g

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.
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.
76 * Please do not use functions or facilities that are not standard (e.g.,
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,