Skip to content

Commit 75f0ab5

Browse files
authored
Merge pull request rust-lang#482 from antoyo/master
Sync from fork
2 parents 7ff5d39 + 287894f commit 75f0ab5

22 files changed

+543
-587
lines changed

.github/workflows/ci.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,14 @@ jobs:
8080
./y.sh prepare --only-libcore
8181
./y.sh build
8282
cargo test
83-
./y.sh clean all
83+
84+
- name: Run y.sh cargo build
85+
run: |
86+
./y.sh cargo build --manifest-path tests/hello-world/Cargo.toml
87+
88+
- name: Clean
89+
run: |
90+
./y.sh clean all
8491
8592
- name: Prepare dependencies
8693
run: |
@@ -96,7 +103,10 @@ jobs:
96103
./y.sh test --release --clean --build-sysroot ${{ matrix.commands }}
97104
98105
- name: Check formatting
99-
run: cargo fmt -- --check
106+
run: |
107+
cargo fmt -- --check
108+
cd build_system
109+
cargo fmt -- --check
100110
101111
- name: clippy
102112
run: |

.github/workflows/m68k.yml

+8-7
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,7 @@ jobs:
5454
run: curl -LO https://github.com/cross-cg-gcc-tools/cross-gcc/releases/latest/download/gcc-m68k-13.deb
5555

5656
- name: Download VM artifact
57-
uses: dawidd6/action-download-artifact@v2
58-
with:
59-
workflow: m68k.yml
60-
name: debian-m68k
61-
repo: cross-cg-gcc-tools/vms
62-
branch: master
63-
event: push
57+
run: curl -LO https://github.com/cross-cg-gcc-tools/vms/releases/latest/download/debian-m68k.img
6458

6559
- name: Setup path to libgccjit
6660
run: |
@@ -88,6 +82,13 @@ jobs:
8882
sudo mount debian-m68k.img vm
8983
sudo cp $(which qemu-m68k-static) vm/usr/bin/
9084
85+
- name: Build sample project with target defined as JSON spec
86+
run: |
87+
./y.sh prepare --only-libcore --cross
88+
./y.sh build --target-triple m68k-unknown-linux-gnu --target ${{ github.workspace }}/target_specs/m68k-unknown-linux-gnu.json
89+
./y.sh cargo build --manifest-path=./tests/hello-world/Cargo.toml --target ${{ github.workspace }}/target_specs/m68k-unknown-linux-gnu.json
90+
./y.sh clean all
91+
9192
- name: Build
9293
run: |
9394
./y.sh prepare --only-libcore --cross

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ jobs:
6262
git config --global user.email "[email protected]"
6363
git config --global user.name "User"
6464
./y.sh prepare
65-
# FIXME(antoyo): we cannot enable LTO for stdarch tests currently because of some failing LTO tests using proc-macros.
66-
echo -n 'lto = "fat"' >> build_sysroot/Cargo.toml
6765
6866
- name: Add more failing tests because of undefined symbol errors (FIXME)
6967
run: cat tests/failing-lto-tests.txt >> tests/failing-ui-tests.txt
7068

7169
- name: Run tests
7270
run: |
71+
# FIXME(antoyo): we cannot enable LTO for stdarch tests currently because of some failing LTO tests using proc-macros.
72+
echo -n 'lto = "fat"' >> build_system/build_sysroot/Cargo.toml
7373
EMBED_LTO_BITCODE=1 ./y.sh test --release --clean --release-sysroot --build-sysroot ${{ matrix.commands }}

.github/workflows/stdarch.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,10 @@ jobs:
8989
- name: Run stdarch tests
9090
if: ${{ !matrix.cargo_runner }}
9191
run: |
92-
cd build_sysroot/sysroot_src/library/stdarch/
93-
CHANNEL=release TARGET=x86_64-unknown-linux-gnu CG_RUSTFLAGS="-Ainternal_features" ../../../../y.sh cargo test
92+
CHANNEL=release TARGET=x86_64-unknown-linux-gnu CG_RUSTFLAGS="-Ainternal_features" ./y.sh cargo test --manifest-path build/build_sysroot/sysroot_src/library/stdarch/Cargo.toml
9493
9594
- name: Run stdarch tests
9695
if: ${{ matrix.cargo_runner }}
9796
run: |
98-
cd build_sysroot/sysroot_src/library/stdarch/
9997
# FIXME: these tests fail when the sysroot is compiled with LTO because of a missing symbol in proc-macro.
100-
STDARCH_TEST_EVERYTHING=1 CHANNEL=release CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER="${{ matrix.cargo_runner }}" TARGET=x86_64-unknown-linux-gnu CG_RUSTFLAGS="-Ainternal_features" ../../../../y.sh cargo test -- --skip rtm --skip tbm --skip sse4a
98+
STDARCH_TEST_EVERYTHING=1 CHANNEL=release CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER="${{ matrix.cargo_runner }}" TARGET=x86_64-unknown-linux-gnu CG_RUSTFLAGS="-Ainternal_features" ./y.sh cargo test --manifest-path build/build_sysroot/sysroot_src/library/stdarch/Cargo.toml -- --skip rtm --skip tbm --skip sse4a

.gitignore

-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@ perf.data
66
perf.data.old
77
*.events
88
*.string*
9-
/build_sysroot/sysroot
10-
/build_sysroot/sysroot_src
11-
/build_sysroot/Cargo.lock
12-
/build_sysroot/test_target/Cargo.lock
139
gimple*
1410
*asm
1511
res

build_sysroot/Cargo.toml build_system/build_sysroot/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
authors = ["bjorn3 <[email protected]>"]
2+
authors = ["rustc_codegen_gcc devs"]
33
name = "sysroot"
44
version = "0.0.0"
55
resolver = "2"
@@ -18,5 +18,5 @@ rustc-std-workspace-alloc = { path = "./sysroot_src/library/rustc-std-workspace-
1818
rustc-std-workspace-std = { path = "./sysroot_src/library/rustc-std-workspace-std" }
1919

2020
[profile.release]
21-
debug = true
21+
debug = "limited"
2222
#lto = "fat" # TODO(antoyo): re-enable when the failing LTO tests regarding proc-macros are fixed.
File renamed without changes.

build_system/src/build.rs

+33-46
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
use crate::config::{Channel, ConfigInfo};
2-
use crate::utils::{run_command, run_command_with_output_and_env, walk_dir};
2+
use crate::utils::{
3+
copy_file, create_dir, get_sysroot_dir, run_command, run_command_with_output_and_env, walk_dir,
4+
};
35
use std::collections::HashMap;
46
use std::ffi::OsStr;
57
use std::fs;
@@ -55,8 +57,7 @@ impl BuildArg {
5557
}
5658
}
5759

58-
pub fn build_sysroot(env: &HashMap<String, String>, config: &ConfigInfo) -> Result<(), String> {
59-
let start_dir = Path::new("build_sysroot");
60+
fn cleanup_sysroot_previous_build(start_dir: &Path) {
6061
// Cleanup for previous run
6162
// Clean target dir except for build scripts and incremental cache
6263
let _ = walk_dir(
@@ -100,6 +101,26 @@ pub fn build_sysroot(env: &HashMap<String, String>, config: &ConfigInfo) -> Resu
100101
let _ = fs::remove_file(start_dir.join("Cargo.lock"));
101102
let _ = fs::remove_file(start_dir.join("test_target/Cargo.lock"));
102103
let _ = fs::remove_dir_all(start_dir.join("sysroot"));
104+
}
105+
106+
pub fn create_build_sysroot_content(start_dir: &Path) -> Result<(), String> {
107+
if !start_dir.is_dir() {
108+
create_dir(start_dir)?;
109+
}
110+
copy_file("build_system/build_sysroot/Cargo.toml", &start_dir.join("Cargo.toml"))?;
111+
112+
let src_dir = start_dir.join("src");
113+
if !src_dir.is_dir() {
114+
create_dir(&src_dir)?;
115+
}
116+
copy_file("build_system/build_sysroot/lib.rs", &start_dir.join("src/lib.rs"))
117+
}
118+
119+
pub fn build_sysroot(env: &HashMap<String, String>, config: &ConfigInfo) -> Result<(), String> {
120+
let start_dir = get_sysroot_dir();
121+
122+
cleanup_sysroot_previous_build(&start_dir);
123+
create_build_sysroot_content(&start_dir)?;
103124

104125
// Builds libs
105126
let mut rustflags = env.get("RUSTFLAGS").cloned().unwrap_or_default();
@@ -110,7 +131,6 @@ pub fn build_sysroot(env: &HashMap<String, String>, config: &ConfigInfo) -> Resu
110131
if config.no_default_features {
111132
rustflags.push_str(" -Csymbol-mangling-version=v0");
112133
}
113-
let mut env = env.clone();
114134

115135
let mut args: Vec<&dyn AsRef<OsStr>> = vec![&"cargo", &"build", &"--target", &config.target];
116136

@@ -127,18 +147,13 @@ pub fn build_sysroot(env: &HashMap<String, String>, config: &ConfigInfo) -> Resu
127147
"debug"
128148
};
129149

150+
let mut env = env.clone();
130151
env.insert("RUSTFLAGS".to_string(), rustflags);
131-
run_command_with_output_and_env(&args, Some(start_dir), Some(&env))?;
152+
run_command_with_output_and_env(&args, Some(&start_dir), Some(&env))?;
132153

133154
// Copy files to sysroot
134155
let sysroot_path = start_dir.join(format!("sysroot/lib/rustlib/{}/lib/", config.target_triple));
135-
fs::create_dir_all(&sysroot_path).map_err(|error| {
136-
format!(
137-
"Failed to create directory `{}`: {:?}",
138-
sysroot_path.display(),
139-
error
140-
)
141-
})?;
156+
create_dir(&sysroot_path)?;
142157
let copier = |dir_to_copy: &Path| {
143158
// FIXME: should not use shell command!
144159
run_command(&[&"cp", &"-r", &dir_to_copy, &sysroot_path], None).map(|_| ())
@@ -151,43 +166,20 @@ pub fn build_sysroot(env: &HashMap<String, String>, config: &ConfigInfo) -> Resu
151166

152167
// Copy the source files to the sysroot (Rust for Linux needs this).
153168
let sysroot_src_path = start_dir.join("sysroot/lib/rustlib/src/rust");
154-
fs::create_dir_all(&sysroot_src_path).map_err(|error| {
155-
format!(
156-
"Failed to create directory `{}`: {:?}",
157-
sysroot_src_path.display(),
158-
error
159-
)
160-
})?;
161-
run_command(
162-
&[
163-
&"cp",
164-
&"-r",
165-
&start_dir.join("sysroot_src/library/"),
166-
&sysroot_src_path,
167-
],
168-
None,
169-
)?;
169+
create_dir(&sysroot_src_path)?;
170+
run_command(&[&"cp", &"-r", &start_dir.join("sysroot_src/library/"), &sysroot_src_path], None)?;
170171

171172
Ok(())
172173
}
173174

174175
fn build_codegen(args: &mut BuildArg) -> Result<(), String> {
175176
let mut env = HashMap::new();
176177

177-
env.insert(
178-
"LD_LIBRARY_PATH".to_string(),
179-
args.config_info.gcc_path.clone(),
180-
);
181-
env.insert(
182-
"LIBRARY_PATH".to_string(),
183-
args.config_info.gcc_path.clone(),
184-
);
178+
env.insert("LD_LIBRARY_PATH".to_string(), args.config_info.gcc_path.clone());
179+
env.insert("LIBRARY_PATH".to_string(), args.config_info.gcc_path.clone());
185180

186181
if args.config_info.no_default_features {
187-
env.insert(
188-
"RUSTFLAGS".to_string(),
189-
"-Csymbol-mangling-version=v0".to_string(),
190-
);
182+
env.insert("RUSTFLAGS".to_string(), "-Csymbol-mangling-version=v0".to_string());
191183
}
192184

193185
let mut command: Vec<&dyn AsRef<OsStr>> = vec![&"cargo", &"rustc"];
@@ -212,12 +204,7 @@ fn build_codegen(args: &mut BuildArg) -> Result<(), String> {
212204
// We voluntarily ignore the error.
213205
let _ = fs::remove_dir_all("target/out");
214206
let gccjit_target = "target/out/gccjit";
215-
fs::create_dir_all(gccjit_target).map_err(|error| {
216-
format!(
217-
"Failed to create directory `{}`: {:?}",
218-
gccjit_target, error
219-
)
220-
})?;
207+
create_dir(gccjit_target)?;
221208

222209
println!("[BUILD] sysroot");
223210
build_sysroot(&env, &args.config_info)?;

build_system/src/cargo.rs

+5-22
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ fn args() -> Result<Option<Vec<String>>, String> {
1616
}
1717
let args = std::env::args().skip(2).collect::<Vec<_>>();
1818
if args.is_empty() {
19-
return Err(
20-
"Expected at least one argument for `cargo` subcommand, found none".to_string(),
21-
);
19+
return Err("Expected at least one argument for `cargo` subcommand, found none".to_string());
2220
}
2321
Ok(Some(args))
2422
}
@@ -48,17 +46,10 @@ pub fn run() -> Result<(), String> {
4846
let current_exe = std::env::current_exe()
4947
.and_then(|path| path.canonicalize())
5048
.map_err(|error| format!("Failed to get current exe path: {:?}", error))?;
51-
let mut parent_dir = current_exe
52-
.components()
53-
.map(|comp| comp.as_os_str())
54-
.collect::<Vec<_>>();
49+
let mut parent_dir = current_exe.components().map(|comp| comp.as_os_str()).collect::<Vec<_>>();
5550
// We run this script from "build_system/target/release/y", so we need to remove these elements.
5651
for to_remove in &["y", "release", "target", "build_system"] {
57-
if parent_dir
58-
.last()
59-
.map(|part| part == to_remove)
60-
.unwrap_or(false)
61-
{
52+
if parent_dir.last().map(|part| part == to_remove).unwrap_or(false) {
6253
parent_dir.pop();
6354
} else {
6455
return Err(format!(
@@ -69,11 +60,7 @@ pub fn run() -> Result<(), String> {
6960
}
7061
let parent_dir = PathBuf::from(parent_dir.join(&OsStr::new("/")));
7162
std::env::set_current_dir(&parent_dir).map_err(|error| {
72-
format!(
73-
"Failed to go to `{}` folder: {:?}",
74-
parent_dir.display(),
75-
error
76-
)
63+
format!("Failed to go to `{}` folder: {:?}", parent_dir.display(), error)
7764
})?;
7865

7966
let mut env: HashMap<String, String> = std::env::vars().collect();
@@ -92,11 +79,7 @@ pub fn run() -> Result<(), String> {
9279

9380
// We go back to the original folder since we now have set up everything we needed.
9481
std::env::set_current_dir(&current_dir).map_err(|error| {
95-
format!(
96-
"Failed to go back to `{}` folder: {:?}",
97-
current_dir.display(),
98-
error
99-
)
82+
format!("Failed to go back to `{}` folder: {:?}", current_dir.display(), error)
10083
})?;
10184

10285
let rustflags = env.get("RUSTFLAGS").cloned().unwrap_or_default();

build_system/src/clean.rs

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::utils::{remove_file, run_command};
1+
use crate::utils::{get_sysroot_dir, remove_file, run_command};
22

33
use std::fs::remove_dir_all;
44
use std::path::Path;
@@ -42,11 +42,12 @@ fn usage() {
4242
}
4343

4444
fn clean_all() -> Result<(), String> {
45+
let build_sysroot = get_sysroot_dir();
4546
let dirs_to_remove = [
46-
"target",
47-
"build_sysroot/sysroot",
48-
"build_sysroot/sysroot_src",
49-
"build_sysroot/target",
47+
"target".into(),
48+
build_sysroot.join("sysroot"),
49+
build_sysroot.join("sysroot_src"),
50+
build_sysroot.join("target"),
5051
];
5152
for dir in dirs_to_remove {
5253
let _ = remove_dir_all(dir);
@@ -56,10 +57,11 @@ fn clean_all() -> Result<(), String> {
5657
let _ = remove_dir_all(Path::new(crate::BUILD_DIR).join(dir));
5758
}
5859

59-
let files_to_remove = ["build_sysroot/Cargo.lock", "perf.data", "perf.data.old"];
60+
let files_to_remove =
61+
[build_sysroot.join("Cargo.lock"), "perf.data".into(), "perf.data.old".into()];
6062

6163
for file in files_to_remove {
62-
let _ = remove_file(file);
64+
let _ = remove_file(&file);
6365
}
6466

6567
println!("Successfully ran `clean all`");

0 commit comments

Comments
 (0)