You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@command -v clang++ >/dev/null 2>&1|| { echo>&2"Please install clang++ with 'sudo apt-get install clang' or 'brew install llvm'";exit 1; }
139
+
@command -v clang++ >/dev/null 2>&1|| { echo-e >&2"Clang++ is not installed. Please install clang++ to continue.\nOn Debian / Ubuntu: 'sudo apt-get install clang' or 'brew install llvm'\nOn Centos: 'sudo yum install clang'";exit 1; }
145
140
146
141
check-cmake:
147
-
@command -v cmake >/dev/null 2>&1|| { echo>&2"Please install cmake with 'sudo apt-get install cmake' or 'brew install cmake'";exit 1; }
142
+
@command -v cmake >/dev/null 2>&1|| { echo-e >&2"Cmake is not installed. Please install cmake to continue.\nOn Debian / Ubuntu: 'sudo apt-get install cmake' or 'brew install cmake'\nOn Centos: 'sudo yum install cmake'";exit 1; }
148
143
149
144
check-python:
150
-
@command -v python3 >/dev/null 2>&1|| { echo>&2"Python needs to be installed and in your path.";exit 1; }
145
+
@command -v python3 >/dev/null 2>&1|| { echo-e >&2"Python is not installed. Please install python to continue.\nOn Debian / Ubuntu: 'sudo apt-get install python'\nOn Centos: 'sudo yum install python'";exit 1; }
151
146
152
147
check-linux-vulkan:
153
148
@echo "Checking system type and Vulkan availability..."
@@ -156,7 +151,7 @@ check-linux-vulkan:
156
151
echo"Vulkan is installed.";\
157
152
vulkaninfo;\
158
153
else\
159
-
echo"Vulkan is not installed. Please install Vulkan drivers to continue. On Debian / Ubuntu: sudo apt install libvulkan1 mesa-vulkan-drivers vulkan-tools";\
154
+
echo-e "Vulkan is not installed. Please install Vulkan drivers to continue.\nOn Debian / Ubuntu: 'sudo apt install libvulkan1 mesa-vulkan-drivers vulkan-tools'.\nOn Centos: 'sudo yum install vulkan vulkan-tools.'";\
0 commit comments