We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
wasmer config --pkg-config
1 parent 6711a36 commit 835b500Copy full SHA for 835b500
CHANGELOG.md
@@ -13,6 +13,7 @@
13
14
### Fixed
15
- [#2097](https://github.com/wasmerio/wasmer/pull/2097) Fix how string's length is computed in `wasm_cpu_features_add` in the C API.
16
+- [#2101](https://github.com/wasmerio/wasmer/pull/2101) cflags emitted by `wasmer config --pkg-config` are now correct.
17
18
## 1.0.2 - 2021-02-04
19
lib/cli/src/commands/config.rs
@@ -56,7 +56,7 @@ impl Config {
56
let bindir = prefix.join("bin").display().to_string();
57
let includedir = prefix.join("include").display().to_string();
58
let libdir = prefix.join("lib").display().to_string();
59
- let cflags = format!("-I{}/wasmer", includedir);
+ let cflags = format!("-I{}", includedir);
60
let libs = format!("-L{} -lwasmer", libdir);
61
62
if self.pkg_config {
0 commit comments