mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-09-10 06:49:04 +02:00
ca86fb222e
* fix compile-error: add missing header Bug: #28557 Signed-off-by: Pepper Gray <hello@peppergray.xyz> * fix compile-error: add missing header Bug: #28559 Signed-off-by: Pepper Gray <hello@peppergray.xyz> * fix compile-error: add missing header Bug: #28560 Signed-off-by: Pepper Gray <hello@peppergray.xyz> * fix compile-error: add missing header Bug: #28561 Signed-off-by: Pepper Gray <hello@peppergray.xyz> * fix compile-error: add missing header Bug: #28562 Signed-off-by: Pepper Gray <hello@peppergray.xyz> * fix compile-error: add missing header Bug: #28564 Signed-off-by: Pepper Gray <hello@peppergray.xyz> --------- Signed-off-by: Pepper Gray <hello@peppergray.xyz>
27 lines
652 B
C++
27 lines
652 B
C++
#include <clocale>
|
|
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <string>
|
|
|
|
int main(int argc, char** argv) {
|
|
std::setlocale(LC_NUMERIC, "C");
|
|
|
|
std::string filename = "main";
|
|
if (argc >= 1) {
|
|
filename = argv[0];
|
|
}
|
|
|
|
// Get only the program name from the full path
|
|
size_t pos = filename.find_last_of("/\\");
|
|
if (pos != std::string::npos) {
|
|
filename = filename.substr(pos+1);
|
|
}
|
|
|
|
fprintf(stdout, "\n");
|
|
fprintf(stdout, "WARNING: The binary '%s' is deprecated.\n", filename.c_str());
|
|
fprintf(stdout, "Please use 'llama-mtmd-cli' instead.\n");
|
|
fprintf(stdout, "\n");
|
|
|
|
return EXIT_FAILURE;
|
|
}
|