move the compiler-rt submodule to the root
This commit is contained in:
parent
5b2585403d
commit
dfc1a7d814
3 changed files with 2 additions and 3 deletions
2
library/compiler-builtins/.gitmodules
vendored
2
library/compiler-builtins/.gitmodules
vendored
|
|
@ -1,3 +1,3 @@
|
|||
[submodule "compiler-rt/compiler-rt-cdylib/compiler-rt"]
|
||||
path = c/compiler-rt
|
||||
path = compiler-rt
|
||||
url = https://github.com/rust-lang/compiler-rt
|
||||
|
|
|
|||
|
|
@ -37,7 +37,6 @@ mod c {
|
|||
|
||||
use std::collections::BTreeMap;
|
||||
use std::env;
|
||||
use std::io::Write;
|
||||
use std::path::Path;
|
||||
|
||||
struct Sources {
|
||||
|
|
@ -413,7 +412,7 @@ mod c {
|
|||
Path::new(".")
|
||||
};
|
||||
|
||||
let src_dir = root.join("c/compiler-rt/lib/builtins");
|
||||
let src_dir = root.join("compiler-rt/lib/builtins");
|
||||
for src in sources.map.values() {
|
||||
let src = src_dir.join(src);
|
||||
cfg.file(&src);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue