From e20131dac9bd01799ce4397cdf7e67f40001356d Mon Sep 17 00:00:00 2001 From: Ben Smith Date: Thu, 23 Feb 2017 16:19:52 -0800 Subject: Switch C files to CC files (#309) Mostly this involves adding additional casts. Though there are a few more substantial changes: * The default method for relocating parser stacks no longer works because Bison assumes that C++ values can't be memcpy'd. Ours can, but there's no easy way to make the generated code do the right thing, so we do it manually * Removed all uses of WabtBool and replaced with bool * Renamed all uses of export and mutable -> export_ and mutable_ * Casting an invalid value to an enum triggers ubsan, so we have to be a little more careful about when we do it (see binary-reader.c:read_sections()) * It's illegal to forward-declare enums, so we just #include instead. * Designated initializers are not allowed in g++, so we have to switch them to lazily initialized structures instead. Pretty horrible, so it will be nice to have a better solution for C++. --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index da60a7ec..81209dbb 100644 --- a/Makefile +++ b/Makefile @@ -142,13 +142,13 @@ clean: test-everything: .PHONY: update-bison update-re2c -update-bison: src/prebuilt/ast-parser-gen.c -update-re2c: src/prebuilt/ast-lexer-gen.c +update-bison: src/prebuilt/ast-parser-gen.cc +update-re2c: src/prebuilt/ast-lexer-gen.cc -src/prebuilt/ast-parser-gen.c: src/ast-parser.y +src/prebuilt/ast-parser-gen.cc: src/ast-parser.y bison -o $@ $< --defines=src/prebuilt/ast-parser-gen.h --report=state -src/prebuilt/ast-lexer-gen.c: src/ast-lexer.c +src/prebuilt/ast-lexer-gen.cc: src/ast-lexer.cc re2c --no-generation-date -bc -o $@ $< # defaults with simple names -- cgit v1.2.3