about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPjotr Prins2025-06-26 18:27:44 +0200
committerPjotr Prins2025-06-26 18:27:44 +0200
commit0469e7aa533aab9cdbc03f9772ada24420a6d854 (patch)
tree13af3d268b30bd26cd8a70eca3644b813d18bf3c
parent5da8f9d671f2a578c6cce284efcb3d6e595b07d4 (diff)
downloadpangemma-0469e7aa533aab9cdbc03f9772ada24420a6d854.tar.gz
Enforce OPENBLAS and add verbosity
-rw-r--r--premake5.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/premake5.lua b/premake5.lua
index ad10760..560eb2a 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -1,6 +1,6 @@
 -- Run with
 --
---   premake5 gmake && make -j 8
+--   premake5 gmake2 && make verbose=1
 --   LD_LIBRARY_PATH=$GUIX_ENVIRONMENT/lib ./build/bin/Debug/PanGemma
 
 workspace "PanGemma"
@@ -8,6 +8,7 @@ workspace "PanGemma"
 
 project "PanGemma"
    kind "ConsoleApp"
+   defines { "OPENBLAS" }
    language "C++"
    objdir "build/"
    targetdir "build/bin/%{cfg.buildcfg}"