Skip to content

Commit 773534d

Browse files
committed
Make build script and llvm-tools build dependency optional too
1 parent 72cc46e commit 773534d

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ features = ["unicode"]
2525
optional = true
2626

2727
[build-dependencies]
28-
llvm-tools = "0.1"
28+
llvm-tools = { version = "0.1", optional = true }
2929

3030
[features]
3131
default = []
32-
binary = ["xmas-elf", "x86_64", "usize_conversions", "fixedvec"]
32+
binary = ["xmas-elf", "x86_64", "usize_conversions", "fixedvec", "llvm-tools"]
3333
vga_320x200 = ["font8x8"]
3434
recursive_page_table = []
3535
map_physical_memory = []

build.rs

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
1-
use std::{
2-
env,
3-
fs::File,
4-
io::Write,
5-
path::{Path, PathBuf},
6-
process::{self, Command},
7-
};
1+
#[cfg(not(feature = "binary"))]
2+
fn main() {}
83

4+
#[cfg(feature = "binary")]
95
fn main() {
6+
use std::{
7+
env,
8+
fs::File,
9+
io::Write,
10+
path::{Path, PathBuf},
11+
process::{self, Command},
12+
};
13+
1014
let target = env::var("TARGET").expect("TARGET not set");
1115
if Path::new(&target)
1216
.file_stem()
1317
.expect("target has no file stem")
1418
!= "x86_64-bootloader"
1519
{
16-
return;
20+
panic!("The bootloader must be compiled for the `x86_64-bootloader.json` target.");
1721
}
1822

1923
let out_dir = PathBuf::from(env::var("OUT_DIR").expect("OUT_DIR not set"));

0 commit comments

Comments
 (0)