Simplify cross-compiling change. Update FIXES.
This commit is contained in:
parent
c83d943830
commit
55edb1b1dd
6
FIXES
6
FIXES
@ -25,6 +25,12 @@ THIS SOFTWARE.
|
|||||||
This file lists all bug fixes, changes, etc., made since the AWK book
|
This file lists all bug fixes, changes, etc., made since the AWK book
|
||||||
was sent to the printers in August, 1987.
|
was sent to the printers in August, 1987.
|
||||||
|
|
||||||
|
Mar 12, 2019:
|
||||||
|
Added very simplistic support for cross-compiling in the
|
||||||
|
makefile. We are NOT going to go in the direction of the
|
||||||
|
autotools, though. Thanks to GitHub user nee-san for
|
||||||
|
the basic change. (Merged from PR #34.)
|
||||||
|
|
||||||
Mar 5, 2019:
|
Mar 5, 2019:
|
||||||
Added support for POSIX-standard interval expressions (a.k.a.
|
Added support for POSIX-standard interval expressions (a.k.a.
|
||||||
bounds, a.k.a. repetition expressions) in regular expressions,
|
bounds, a.k.a. repetition expressions) in regular expressions,
|
||||||
|
2
makefile
2
makefile
@ -31,7 +31,7 @@ CFLAGS = -O2
|
|||||||
#CC = gcc -O4 -Wall -pedantic -fno-strict-aliasing
|
#CC = gcc -O4 -Wall -pedantic -fno-strict-aliasing
|
||||||
#CC = gcc -fprofile-arcs -ftest-coverage # then gcov f1.c; cat f1.c.gcov
|
#CC = gcc -fprofile-arcs -ftest-coverage # then gcov f1.c; cat f1.c.gcov
|
||||||
HOSTCC = gcc -g -Wall -pedantic
|
HOSTCC = gcc -g -Wall -pedantic
|
||||||
CC ?= $(HOSTCC)
|
CC = $(HOSTCC) # change this is cross-compiling.
|
||||||
|
|
||||||
# yacc options. pick one; this varies a lot by system.
|
# yacc options. pick one; this varies a lot by system.
|
||||||
#YFLAGS = -d -S
|
#YFLAGS = -d -S
|
||||||
|
Loading…
Reference in New Issue
Block a user