We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dde441 commit 65eb260Copy full SHA for 65eb260
pineappl_fastnlo/build.rs
@@ -65,7 +65,8 @@ fn main() {
65
.file("src/fastnlo.cpp")
66
.include(fnlo_include_path.trim())
67
.includes(lhapdf_include_paths)
68
- .std("c++11") // apparently not supported by MSVC, but fastNLO probably can't be compiled on Windows
+ // TODO: find a way to compile with the same standard that fastNLO was compiled with
69
+ .std("c++17")
70
.compile("fnlo-bridge");
71
72
println!("cargo:rerun-if-changed=src/lib.rs");
0 commit comments