Skip to content

Commit

Permalink
Fix escaping of variables
Browse files Browse the repository at this point in the history
  • Loading branch information
countzero committed Jun 28, 2023
1 parent 077c3bd commit 65495cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rebuild_llama.cpp.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ $lines = @(
"# "
"if (LLAMA_BLAS AND DEFINED LLAMA_BLAS_VENDOR)"
" if (`${LLAMA_BLAS_VENDOR} MATCHES `"OpenBLAS`")"
" set(LLAMA_EXTRA_INCLUDES ${LLAMA_EXTRA_INCLUDES} `"$(Resolve-UnixPath "./vendor/OpenBLAS/include")`")"
" set(LLAMA_EXTRA_LIBS ${LLAMA_EXTRA_LIBS} `"$(Resolve-UnixPath "./vendor/OpenBLAS/lib/libopenblas.dll.a")`")"
" set(LLAMA_EXTRA_INCLUDES `${LLAMA_EXTRA_INCLUDES} `"$(Resolve-UnixPath "./vendor/OpenBLAS/include")`")"
" set(LLAMA_EXTRA_LIBS `${LLAMA_EXTRA_LIBS} `"$(Resolve-UnixPath "./vendor/OpenBLAS/lib/libopenblas.dll.a")`")"
" add_compile_definitions(GGML_USE_OPENBLAS)"
" endif()"
"endif()"
Expand Down

0 comments on commit 65495cf

Please sign in to comment.