Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@ jobs:
$env:Path += ";C:\Program Files (x86)\zlib\bin"
- name: Install boost
run: |
Invoke-WebRequest "https://sourceforge.net/projects/boost/files/boost/1.87.0/boost_1_87_0.zip/download" -OutFile "boost_1_87_0.zip"
Invoke-WebRequest "https://archives.boost.io/release/1.87.0/source/boost_1_87_0.zip" -OutFile "boost_1_87_0.zip"
Expand-Archive "boost_1_87_0.zip" -Force
cd .\boost_1_87_0\
cd .\boost_1_87_0\boost_1_87_0\
.\bootstrap.bat
.\b2 toolset=msvc-14.2 address-model=64 install define=_WIN32_WINNT=0x0601 define=BOOST_WINAPI_VERSION_WIN7 link=static
- name: Install protobuf
Expand Down
6 changes: 3 additions & 3 deletions windows-localproxy-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@
* `nmake`
* `nmake install` ( install protobuf inside C:\Program Files (x86)\ )
* Download and install boost
* Download from https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.gz
* Extract boost_1_76_0.tar.gz
* Download from https://archives.boost.io/release/1.87.0/source/boost_1_87_0.zip
* Extract boost_1_87_0.zip
* Use Visual Studio native tool command prompt
* `cd path/to/boost_1_76_0`
* `cd path/to/boost_1_87_0`
* `bootstrap.bat`
* `.\b2 toolset=msvc address-model={32 | 64} install define=BOOST_WINAPI_VERSION_WIN10` ( installs boost inside C:\)
* Replace `BOOST_WINAPI_VERSION_WIN10` with the appropriate macro from [here](https://www.boost.org/doc/libs/develop/libs/winapi/doc/html/winapi/config.html)
Expand Down
Loading