summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom St Denis <tom.stdenis@amd.com>2019-03-26 11:52:41 -0400
committerTom St Denis <tom.stdenis@amd.com>2019-03-26 11:52:41 -0400
commit75de25b3308bef174acc7a9dcf71c87e24014766 (patch)
treedbdbba47dcf8848cae11bcea204e2ba154fb3150
parent5053d1025f5e32ca4bc34be782565aca03260458 (diff)
update build instructions for turning off llvm/drm
Signed-off-by: Tom St Denis <tom.stdenis@amd.com>
-rw-r--r--README4
-rw-r--r--doc/sphinx/source/build.rst4
2 files changed, 4 insertions, 4 deletions
diff --git a/README b/README
index 3c8a70e..e4aed40 100644
--- a/README
+++ b/README
@@ -50,12 +50,12 @@ tool on multi-user systems.
NOTE: You may disable LLVM dependencies by adding UMR_NO_LLVM to your
environment. e.g.,
- $ UMR_NO_LLVM=1 cmake ../
+ $ cmake -DUMR_NO_LLVM=ON ../
NOTE: You may disable libDRM dependencies by adding UMR_NO_DRM to your
environment. e.g.,
- $ UMR_NO_DRM=1 cmake ../
+ $ cmake -DUMR_NO_DRM=ON ../
Running umr
------------
diff --git a/doc/sphinx/source/build.rst b/doc/sphinx/source/build.rst
index 85f0364..505e7c3 100644
--- a/doc/sphinx/source/build.rst
+++ b/doc/sphinx/source/build.rst
@@ -84,7 +84,7 @@ You may disable LLVM dependencies by adding UMR_NO_LLVM to your shell environmen
::
- $ UMR_NO_LLVM=1 cmake .
+ $ cmake -DUMR_NO_LLVM=ON .
This will disable shader disassembly and result in "..." being printed for all opcode decodes.
@@ -92,6 +92,6 @@ You may disable libDRM dependencies by adding UMR_NO_DRM to your shell environme
::
- $ UMR_NO_DRM=1 cmake .
+ $ cmake -DUMR_NO_DRM=ON .
This will disable libdrm support which will render some "--top" output nonsensical.