diff options
| author | Pjotr Prins | 2025-11-25 14:38:44 +0100 |
|---|---|---|
| committer | Pjotr Prins | 2025-11-25 14:38:44 +0100 |
| commit | be88d7a399660f3c4ddd6bce502f5b39c61b3298 (patch) | |
| tree | 708638e5f2e97c746659414944196121409264de /premake5.lua | |
| parent | f03c82ea21acda54de8cced07ba8150cfafb3769 (diff) | |
| download | pangemma-be88d7a399660f3c4ddd6bce502f5b39c61b3298.tar.gz | |
Fixing openblas regression by bringing in optimized package
Diffstat (limited to 'premake5.lua')
| -rw-r--r-- | premake5.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/premake5.lua b/premake5.lua index 1091cd8..3ccbdbc 100644 --- a/premake5.lua +++ b/premake5.lua @@ -39,10 +39,14 @@ workspace "PanGemma" filter "configurations:Debug" defines { "DEBUG" } + buildoptions { pkg_cpp_flags } + linkoptions { pkg_linker_flags } symbols "On" filter "configurations:Release" defines { "NDEBUG", "HAVE_INLINE" } + buildoptions { pkg_cpp_flags } + linkoptions { pkg_linker_flags } buildoptions { "-pthread", "-Wall" } optimize "Speed" |
