Skip to content

Commit 6be12a8

Browse files
authored
Merge pull request #68 from rust-osdev/binary-feature
Only include dependencies when `binary` feature is enabled
2 parents 6946452 + 773534d commit 6be12a8

File tree

4 files changed

+25
-16
lines changed

4 files changed

+25
-16
lines changed

Cargo.toml

+10-5
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@ repository = "https://github.com/rust-osdev/bootloader"
88
edition = "2018"
99
build = "build.rs"
1010

11+
[[bin]]
12+
name = "bootloader"
13+
required-features = ["binary"]
14+
1115
[dependencies]
12-
xmas-elf = "0.6.2"
13-
x86_64 = "0.7.2"
14-
usize_conversions = "0.2.0"
15-
fixedvec = "0.2.3"
16+
xmas-elf = { version = "0.6.2", optional = true }
17+
x86_64 = { version = "0.7.2", optional = true }
18+
usize_conversions = { version = "0.2.0", optional = true }
19+
fixedvec = { version = "0.2.3", optional = true }
1620

1721
[dependencies.font8x8]
1822
version = "0.2.4"
@@ -21,10 +25,11 @@ features = ["unicode"]
2125
optional = true
2226

2327
[build-dependencies]
24-
llvm-tools = "0.1"
28+
llvm-tools = { version = "0.1", optional = true }
2529

2630
[features]
2731
default = []
32+
binary = ["xmas-elf", "x86_64", "usize_conversions", "fixedvec", "llvm-tools"]
2833
vga_320x200 = ["font8x8"]
2934
recursive_page_table = []
3035
map_physical_memory = []

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ As an example, you can build the bootloader with example kernel from the `exampl
3030
cd example-kernel
3131
cargo xbuild
3232
cd ..
33-
KERNEL=example-kernel/target/x86_64-example-kernel/debug/example-kernel cargo xbuild --release
33+
KERNEL=example-kernel/target/x86_64-example-kernel/debug/example-kernel cargo xbuild --release --features binary
3434
```
3535

36-
This results in a bootloader executable at `target/x86_64-bootloader.json/release/bootloader`. This executable is still an ELF file, which can't be run directly.
36+
The `binary` feature is required to enable the dependencies required for compiling the bootloader executable. The command results in a bootloader executable at `target/x86_64-bootloader.json/release/bootloader`. This executable is still an ELF file, which can't be run directly.
3737

3838
## Run
3939

azure-pipelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ steps:
9494
workingDirectory: test-kernel
9595
displayName: 'Build Test Kernel'
9696

97-
- script: cargo xbuild --release
97+
- script: cargo xbuild --bin bootloader --features binary --release
9898
displayName: 'Build Bootloader'
9999
env: { KERNEL: "test-kernel/target/x86_64-test-kernel/debug/test-kernel" }
100100

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)