Skip to content

Commit

Permalink
Merge pull request nodejs#43 from pgriess/error-reporting
Browse files Browse the repository at this point in the history
Facility to report detailed parsing errors.
  • Loading branch information
pgriess committed Jun 19, 2011
2 parents ddbbc07 + 9114e58 commit 0aa3e52
Show file tree
Hide file tree
Showing 4 changed files with 309 additions and 47 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
CPPFLAGS?=-Wall -Wextra -Werror -I.
OPT_DEBUG=$(CPPFLAGS) -O0 -g -DHTTP_PARSER_STRICT=1
OPT_FAST=$(CPPFLAGS) -O3 -DHTTP_PARSER_STRICT=0
OPT_DEBUG=$(CPPFLAGS) -O0 -g -DHTTP_PARSER_STRICT=1 -DHTTP_PARSER_DEBUG=1
OPT_FAST=$(CPPFLAGS) -O3 -DHTTP_PARSER_STRICT=0 -DHTTP_PARSER_DEBUG=0

CC?=gcc
AR?=ar
Expand Down
Loading

0 comments on commit 0aa3e52

Please sign in to comment.