@@ -41,27 +41,27 @@ Download the executable for your platform from [here](https://github.com/aminya/
4141An example that installs llvm, cmake, ninja, ccache, and vcpkg:
4242
4343``` ps1
44- # windows example (open shell as admin)
45- curl.exe -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup_cpp_windows .exe"
46- .\setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
44+ # windows example (open PowerShell as admin)
45+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup-cpp-x64-windows .exe"
46+ ./setup-cpp-x64-windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
4747
4848RefreshEnv.cmd # activate cpp environment variables
4949```
5050
5151``` ps1
5252# linux example
53- wget "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup_cpp_linux "
54- chmod +x setup_cpp_linux
55- sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
53+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup-cpp-x64-linux "
54+ chmod +x ./setup-cpp-x64-linux
55+ sudo ./setup-cpp-x64-linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
5656
5757source ~/.cpprc # activate cpp environment variables
5858```
5959
6060``` ps1
61- # mac example
62- wget "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup_cpp_mac "
63- chmod +x setup_cpp_mac
64- sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
61+ # macos example
62+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup-cpp-x64-macos "
63+ chmod +x ./setup-cpp-x64-macos
64+ sudo ./setup-cpp-x64-macos --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6565
6666source ~/.cpprc # activate cpp environment variables
6767```
@@ -170,11 +170,11 @@ FROM ubuntu:22.04 AS base
170170WORKDIR "/"
171171RUN apt-get update -qq
172172RUN apt-get install -y --no-install-recommends wget
173- RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup_cpp_linux "
174- RUN chmod +x ./setup_cpp_linux
173+ RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup-cpp-x64-linux "
174+ RUN chmod +x ./setup-cpp-x64-linux
175175
176176# install llvm, cmake, ninja, and ccache
177- RUN ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true --make true
177+ RUN ./setup-cpp-x64-linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true --make true
178178
179179CMD source ~/.cpprc
180180ENTRYPOINT [ "/bin/bash" ]
@@ -262,9 +262,9 @@ stages:
262262 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
263263
264264.setup-cpp : &setup-cpp |
265- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup_cpp_linux "
266- chmod +x setup_cpp_linux
267- ./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
265+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.25.1/setup-cpp-x64-linux "
266+ chmod +x setup-cpp-x64-linux
267+ ./setup-cpp-x64-linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
268268 source ~/.cpprc
269269
270270.test : &test |
0 commit comments