diff options
author | slaren <slarengh@gmail.com> | 2023-11-02 13:10:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-02 14:10:33 +0200 |
commit | 21958bb393a654591ed26f339791b752d58f5c8b (patch) | |
tree | c10e6b1ff15a4fa0155fb53c2157d0eafd6078b9 | |
parent | 2756c4fbffab097736d5116007872d86456a544a (diff) |
cmake : disable LLAMA_NATIVE by default (#3906)
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 611ed3f4..3c49d645 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -44,7 +44,7 @@ endif() # general option(LLAMA_STATIC "llama: static link libraries" OFF) -option(LLAMA_NATIVE "llama: enable -march=native flag" ON) +option(LLAMA_NATIVE "llama: enable -march=native flag" OFF) option(LLAMA_LTO "llama: enable link time optimization" OFF) # debug |