Skip to content

Commit 7bdd9b5

Browse files
authored
Merge pull request #184 from dtolnay/fallback
Support building C++ code generator with panic=abort
2 parents 18cd757 + 761a5fc commit 7bdd9b5

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

gen/build/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ travis-ci = { repository = "dtolnay/cxx" }
1414
anyhow = "1.0"
1515
cc = "1.0.49"
1616
codespan-reporting = "0.9"
17-
proc-macro2 = { version = "1.0", features = ["span-locations"] }
17+
proc-macro2 = { version = "1.0.11", features = ["span-locations"] }
1818
quote = "1.0"
1919
syn = { version = "1.0", features = ["full"] }
2020

gen/cmd/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ travis-ci = { repository = "dtolnay/cxx" }
1717
[dependencies]
1818
anyhow = "1.0"
1919
codespan-reporting = "0.9"
20-
proc-macro2 = { version = "1.0", features = ["span-locations"] }
20+
proc-macro2 = { version = "1.0.11", features = ["span-locations"] }
2121
quote = "1.0"
2222
structopt = "0.3"
2323
syn = { version = "1.0", features = ["full"] }

gen/src/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ fn generate(path: &Path, opt: Opt, header: bool) -> Vec<u8> {
4141
Err(err) => format_err(path, "", Error::Io(err)),
4242
};
4343
match (|| -> Result<_> {
44+
proc_macro2::fallback::force();
4445
let syntax = syn::parse_file(&source)?;
4546
let bridge = find_bridge_mod(syntax)?;
4647
let namespace = bridge.namespace;

third-party/BUCK

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ rust_library(
8383

8484
rust_library(
8585
name = "proc-macro2",
86-
srcs = glob(["vendor/proc-macro2-1.0.10/src/**"]),
86+
srcs = glob(["vendor/proc-macro2-1.0.11/src/**"]),
8787
visibility = ["PUBLIC"],
8888
features = [
8989
"proc-macro",
@@ -99,7 +99,7 @@ rust_library(
9999

100100
rust_library(
101101
name = "quote",
102-
srcs = glob(["vendor/quote-1.0.3/src/**"]),
102+
srcs = glob(["vendor/quote-1.0.4/src/**"]),
103103
visibility = ["PUBLIC"],
104104
features = ["proc-macro"],
105105
deps = [":proc-macro2"],

third-party/BUILD

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ rust_library(
8888

8989
rust_library(
9090
name = "proc-macro2",
91-
srcs = glob(["vendor/proc-macro2-1.0.10/src/**"]),
91+
srcs = glob(["vendor/proc-macro2-1.0.11/src/**"]),
9292
crate_features = [
9393
"proc-macro",
9494
"span-locations",
@@ -104,7 +104,7 @@ rust_library(
104104

105105
rust_library(
106106
name = "quote",
107-
srcs = glob(["vendor/quote-1.0.3/src/**"]),
107+
srcs = glob(["vendor/quote-1.0.4/src/**"]),
108108
crate_features = ["proc-macro"],
109109
visibility = ["//visibility:public"],
110110
deps = [":proc-macro2"],

third-party/Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)