Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Lock LibUV to commit w/ VS2017 support #333

Closed
wants to merge 2 commits into from
Closed
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
2 changes: 1 addition & 1 deletion tools/build_libuv.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pushd %build-root%
rem Clone libuv
git clone https://github.com/libuv/libuv.git
pushd libuv
git checkout -b v1.10.1 tags/v1.10.1
git checkout -b v1.13.0 tags/v1.13.0

rem The following 2 variables must be un-defined because libuv's
rem vcbuild.bat skips its VS version detection code if these are
Expand Down
3 changes: 2 additions & 1 deletion tools/build_libuv.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

#!/bin/bash

# Copyright (c) Microsoft. All rights reserved.
Expand All @@ -19,7 +20,7 @@ mkdir -p $build_root
pushd $build_root
git clone https://github.com/libuv/libuv.git
cd libuv
git checkout -b v1.11.0 tags/v1.11.0
git checkout -b v1.13.0 tags/v1.13.0
sh autogen.sh
./configure --prefix=$prefix --libdir=$libdir CFLAGS='-fPIC' CXXFLAGS='-fPIC'
make -j $(nproc)
Expand Down