Skip to content

Commit 4cb0e35

Browse files
committed
string options
1 parent 2c3df16 commit 4cb0e35

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ option(LLAMA_BUILD "Build llama.cpp shared library and install alongside python
88
if (LLAMA_BUILD)
99
set(BUILD_SHARED_LIBS "On")
1010
if (APPLE)
11-
set(LLAMA_AVX OFF)
12-
set(LLAMA_AVX2 OFF)
13-
set(LLAMA_FMA OFF)
14-
set(LLAMA_F16C OFF)
11+
set(LLAMA_AVX "Off")
12+
set(LLAMA_AVX2 "Off")
13+
set(LLAMA_FMA "Off")
14+
set(LLAMA_F16C "Off")
1515
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=native -mtune=native")
1616
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native -mtune=native")
1717
endif()

0 commit comments

Comments
 (0)