Skip to content

Commit a1c72e7

Browse files
committed
Don't build the tools
1 parent 1763e5f commit a1c72e7

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

aws-lc-fips-sys/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ include = [
3030
"!/aws-lc/tests/**",
3131
"!/aws-lc/third_party/**",
3232
"!/aws-lc/util/**",
33+
"!/aws-lc/tool/**",
34+
"!/aws-lc/tool-openssl/**",
3335
"/aws-lc/tests/compiler_features_tests/**.c",
3436
"/aws-lc/third_party/fiat/**/LICENSE",
3537
"/aws-lc/third_party/fiat/**/*.h",

aws-lc-fips-sys/builder/cmake_builder.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ impl CmakeBuilder {
177177

178178
// Build flags that minimize our crate size.
179179
cmake_cfg.define("BUILD_TESTING", "OFF");
180+
cmake_cfg.define("BUILD_TOOL", "OFF");
180181
if cfg!(feature = "ssl") {
181182
cmake_cfg.define("BUILD_LIBSSL", "ON");
182183
} else {

aws-lc-sys/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ include = [
2828
"!/aws-lc/tests/**",
2929
"!/aws-lc/third_party/**",
3030
"!/aws-lc/util/**",
31+
"!/aws-lc/tool/**",
32+
"!/aws-lc/tool-openssl/**",
3133
"/aws-lc/tests/compiler_features_tests/**.c",
3234
"/aws-lc/third_party/fiat/**/LICENSE",
3335
"/aws-lc/third_party/fiat/**/*.h",

aws-lc-sys/builder/cmake_builder.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ impl CmakeBuilder {
110110

111111
// Build flags that minimize our crate size.
112112
cmake_cfg.define("BUILD_TESTING", "OFF");
113+
cmake_cfg.define("BUILD_TOOL", "OFF");
113114
if cfg!(feature = "ssl") {
114115
cmake_cfg.define("BUILD_LIBSSL", "ON");
115116
} else {

0 commit comments

Comments
 (0)