Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release profile on x64 Windows generated without optimization flags when building under dev Cargo profile #240

Open
vlovich opened this issue Feb 13, 2025 · 1 comment

Comments

@vlovich
Copy link

vlovich commented Feb 13, 2025

This is with cmake 3.31.4

I observed that if I build llama.cpp from the command line:

mkdir build
cd build
cmake.exe ../ -DCMAKE_BUILD_TYPE=Release -DLLAMA_BUILD_TESTS=OFF -DLLAMA_BUILD_SERVER=OFF
cmake.exe --build . -j 32 --config Release

the compiler flags comes out to:

CMAKE_CXX_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3 /GR /EHsc
CMAKE_CXX_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG
CMAKE_C_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3
CMAKE_C_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG

by contrast, llama-cpp-rs's build script which uses this crate ends up generating:

CMAKE_CXX_FLAGS:STRING= -nologo -MD -Brepro
CMAKE_CXX_FLAGS_RELEASE:STRING= -nologo -MD -Brepro
CMAKE_C_FLAGS:STRING= -nologo -MD -Brepro
CMAKE_C_FLAGS_RELEASE:STRING= -nologo -MD -Brepro

when building the dev Cargo profile which seems wrong - optimizations shouldn't disappear from the Release CMake profile just because we're building under dev. The flags revert to the correct settings when built under release.

Filed upstream ticket to track it in both repos utilityai/llama-cpp-rs#649 but I suspect the fault has to lie with this crate since the build.rs isn't doing anything that would explain a change in this behavior.

@vlovich vlovich changed the title Release profile on x64 Windows generated without optimization flags when building under dev profile Release profile on x64 Windows generated without optimization flags when building under dev Cargo profile Feb 13, 2025
@vlovich
Copy link
Author

vlovich commented Feb 13, 2025

I think this is partially the culprit

cmake-rs/src/lib.rs

Lines 738 to 761 in fd56c5a

// The visual studio generator apparently doesn't respect
// `CMAKE_C_FLAGS` but does respect `CMAKE_C_FLAGS_RELEASE` and
// such. We need to communicate /MD vs /MT, so set those vars
// here.
//
// Note that for other generators, though, this *overrides*
// things like the optimization flags, which is bad.
if generator.is_none() && msvc {
let flag_var_alt = format!("CMAKE_{}_FLAGS_{}", kind, build_type_upcase);
if !self.defined(&flag_var_alt) {
let mut flagsflag = OsString::from("-D");
flagsflag.push(&flag_var_alt);
flagsflag.push("=");
flagsflag.push(extra);
for arg in compiler.args() {
if skip_arg(arg) {
continue;
}
flagsflag.push(" ");
flagsflag.push(arg);
}
cmd.arg(flagsflag);
}
}
which uses

cmake-rs/src/lib.rs

Lines 716 to 719 in fd56c5a

let skip_arg = |arg: &OsStr| match arg.to_str() {
Some(s) => s.starts_with("-O") || s.starts_with("/O") || s == "-g",
None => false,
};

Obviously the optimization flags are being stripped and there's even a warning about it, but unclear why it's only stripped in debug builds as you'd think this would strip it in both. Not sure if

cmake-rs/src/lib.rs

Lines 518 to 533 in fd56c5a

c_cfg
.cargo_metadata(false)
.cpp(false)
.opt_level(0)
.debug(false)
.warnings(false)
.host(&host)
.no_default_flags(ndk || self.no_default_flags);
if !ndk {
c_cfg.target(&target);
}
let mut cxx_cfg = self.cxx_cfg.clone().unwrap_or_default();
cxx_cfg
.cargo_metadata(false)
.cpp(true)
.opt_level(0)
is at all related either as the optimization level is initialized to off.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant