From cc92c90d913a7bb9c93362df60bc376ffe32af7a Mon Sep 17 00:00:00 2001 From: Lucas Date: Sat, 9 Sep 2023 10:54:58 -0700 Subject: [PATCH] Added notes about waf execution in BUILD.TXT --- BUILD.TXT | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/BUILD.TXT b/BUILD.TXT index 3b3ebc2..4c6e360 100755 --- a/BUILD.TXT +++ b/BUILD.TXT @@ -6,11 +6,26 @@ To see a full list of options, run: ./waf -h +Note: if attempting to run waf as an executable as shown above results in a +message like this: + +/usr/bin/env: ‘python’: No such file or directory + +then try calling python directly: + +python waf + +or + +python3 waf + +For more background information about waf, visit the gitlab page at +https://gitlab.com/ita1024/./waf/ Configuring ----------- -To perform the configure checks, run: +To perform the configuration checks, run: ./waf configure @@ -51,6 +66,9 @@ To install, run: This will install the compiled library and headers to wherever your prefix was specified. (See configure flags) +This command may have to be run with root priviledges for certain prefix +directories depending on your system setup. + Uninstalling ------------