FIPS support is broken for 32-bit non-windows platforms
jyn514 opened this issue · 0 comments
jyn514 commented
Lines 169 to 177 in 1507689
needs to instead be
let toolchain_file = if cfg!(feature = "fips") {
format!("{}/util/32-bit-toolchain.cmake", BORING_SSL_DIR)
} else {
format!("{}/src/util/32-bit-toolchain.cmake", BORING_SSL_DIR)
};
boringssl_cmake
.define("CMAKE_TOOLCHAIN_FILE", pwd.join(toolchain_file).as_os_str());