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; }
102
140
103
141
check-cmake:
104
-
@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; }
105
143
106
144
check-python:
107
-
@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; }
108
146
109
147
check-linux-vulkan:
110
148
@echo "Checking system type and Vulkan availability..."
@@ -113,7 +151,7 @@ check-linux-vulkan:
113
151
echo"Vulkan is installed.";\
114
152
vulkaninfo;\
115
153
else\
116
-
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