Merge pull request #548 from chinedufn/shorten-specifier

Fix LLVM ERROR (seemingly only on mac?)
This commit is contained in:
Nick Fitzgerald 2018-07-25 09:13:12 -07:00 committed by GitHub
commit 606429165f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ impl ToTokens for ast::Program {
(quote! {
#[allow(non_upper_case_globals)]
#[link_section = "__wasm_bindgen_unstable"]
#[link_section = "__wasm_bindgen,unstable"]
#[doc(hidden)]
pub static #generated_static_name: [u8; #generated_static_length] =
*#generated_static_value;

View File

@ -287,7 +287,7 @@ fn extract_programs(module: &mut Module) -> Result<Vec<shared::Program>, Error>
Section::Custom(ref s) => s,
_ => continue,
};
if custom.name() != "__wasm_bindgen_unstable" {
if custom.name() != "__wasm_bindgen,unstable" {
continue;
}
to_remove.push(i);