-
Notifications
You must be signed in to change notification settings - Fork 130
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
Comments
I think this is partially the culprit Lines 738 to 761 in fd56c5a
Lines 716 to 719 in fd56c5a
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 Lines 518 to 533 in fd56c5a
|
vlovich
added a commit
to vlovich/llama-cpp-rs
that referenced
this issue
Feb 13, 2025
AsbjornOlling
pushed a commit
to nobodywho-ooo/llama-cpp-rs
that referenced
this issue
Feb 26, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is with cmake 3.31.4
I observed that if I build llama.cpp from the command line:
the compiler flags comes out to:
by contrast, llama-cpp-rs's build script which uses this crate ends up generating:
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.
The text was updated successfully, but these errors were encountered: