Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/cranelift/assembler-x64/src/main.rs
1693 views
1
//! Print the path to the generated code.
2
3
fn main() {
4
let paths: Vec<std::path::PathBuf> = include!(concat!(env!("OUT_DIR"), "/generated-files.rs"));
5
for path in paths {
6
println!("{}", path.display());
7
}
8
}
9
10