Skip to content

Commit ea0c165

Browse files
committed
Typo fixes in configure_cmake comments
Signed-off-by: Eddy Petrișor <[email protected]>
1 parent 82239b0 commit ea0c165

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bootstrap/native.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -353,15 +353,15 @@ fn configure_cmake(builder: &Builder,
353353
// definitely causes problems since all the env vars are pointing to
354354
// 32-bit libraries.
355355
//
356-
// To hack aroudn this... again... we pass an argument that's
356+
// To hack around this... again... we pass an argument that's
357357
// unconditionally passed in the sccache shim. This'll get CMake to
358358
// correctly diagnose it's doing a 32-bit compilation and LLVM will
359359
// internally configure itself appropriately.
360360
if builder.config.llvm_clang_cl.is_some() && target.contains("i686") {
361361
cfg.env("SCCACHE_EXTRA_ARGS", "-m32");
362362
}
363363

364-
// If ccache is configured we inform the build a little differently hwo
364+
// If ccache is configured we inform the build a little differently how
365365
// to invoke ccache while also invoking our compilers.
366366
} else if let Some(ref ccache) = builder.config.ccache {
367367
cfg.define("CMAKE_C_COMPILER", ccache)

0 commit comments

Comments
 (0)