<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/toolsrc, branch 2020.01</title>
<subtitle>Forked from https://github.com/microsoft/vcpkg</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/'/>
<entry>
<title>Add support for building with MinGW (#9137)</title>
<updated>2020-01-17T23:36:08+00:00</updated>
<author>
<name>Cristian Adam</name>
<email>cristian.adam@gmail.com</email>
</author>
<published>2020-01-17T23:36:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=38b959022cec1b865489d97a697eda84b49cc4e5'/>
<id>38b959022cec1b865489d97a697eda84b49cc4e5</id>
<content type='text'>
* Add support for building with MinGW

Tested with MSYS2 MinGW 8.3.0, gcc-mcf.lhmouse MinGW 9.2.1,
and StephanTLavavej/mingw-distro!

* Add MinGW toolchain

From your MinGW configured shell you could just use vcpkg to
configure packages.

An x64-mingw triplet would look like:
```
set(VCPKG_TARGET_ARCHITECTURE x64)
set(VCPKG_CRT_LINKAGE dynamic)
set(VCPKG_LIBRARY_LINKAGE static)
set(VCPKG_ENV_PASSTHROUGH PATH)

set(VCPKG_CMAKE_SYSTEM_NAME MinGW)
```

* Add MinGW community tripplets

x64 tested with https://github.com/StephanTLavavej/mingw-distro
x86, arm64, arm tested with https://github.com/mstorsjo/llvm-mingw
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add support for building with MinGW

Tested with MSYS2 MinGW 8.3.0, gcc-mcf.lhmouse MinGW 9.2.1,
and StephanTLavavej/mingw-distro!

* Add MinGW toolchain

From your MinGW configured shell you could just use vcpkg to
configure packages.

An x64-mingw triplet would look like:
```
set(VCPKG_TARGET_ARCHITECTURE x64)
set(VCPKG_CRT_LINKAGE dynamic)
set(VCPKG_LIBRARY_LINKAGE static)
set(VCPKG_ENV_PASSTHROUGH PATH)

set(VCPKG_CMAKE_SYSTEM_NAME MinGW)
```

* Add MinGW community tripplets

x64 tested with https://github.com/StephanTLavavej/mingw-distro
x86, arm64, arm tested with https://github.com/mstorsjo/llvm-mingw
</pre>
</div>
</content>
</entry>
<entry>
<title>Community Triplets 🤝 (#7976)</title>
<updated>2020-01-17T22:21:19+00:00</updated>
<author>
<name>Victor Romero</name>
<email>romerosanchezv@gmail.com</email>
</author>
<published>2020-01-17T22:21:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=f56645c3fd9a1561c430e90ce00836489b372ef8'/>
<id>f56645c3fd9a1561c430e90ce00836489b372ef8</id>
<content type='text'>
* Move untested triplets to Community Triplets

* Document community triplets

* Load community triplets by default and alert when using one

* [triplets] Merge documentation of community triplets

* Bump version
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Move untested triplets to Community Triplets

* Document community triplets

* Load community triplets by default and alert when using one

* [triplets] Merge documentation of community triplets

* Bump version
</pre>
</div>
</content>
</entry>
<entry>
<title>[toolsrc] Added missing @ to FATAL_ERROR message (#9720)</title>
<updated>2020-01-16T23:11:27+00:00</updated>
<author>
<name>Kristof</name>
<email>kristof@daja.hu</email>
</author>
<published>2020-01-16T23:11:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=24a97b16e70400b874299f9d58f571f215090444'/>
<id>24a97b16e70400b874299f9d58f571f215090444</id>
<content type='text'>
To install a specific version of a package via homebrew, an `@` symbol must be placed in-between the package name and its version.
Added missing symbol to `toolsrc/CMakeLists.txt`

See homebrew console output for reference:
```
Kristofs-Mac-Pro:vcpkg kristofdaja$ brew search gcc
==&gt; Formulae
gcc                     gcc@5                   gcc@7                   x86_64-elf-gcc
gcc@4.9                 gcc@6                   gcc@8
```</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To install a specific version of a package via homebrew, an `@` symbol must be placed in-between the package name and its version.
Added missing symbol to `toolsrc/CMakeLists.txt`

See homebrew console output for reference:
```
Kristofs-Mac-Pro:vcpkg kristofdaja$ brew search gcc
==&gt; Formulae
gcc                     gcc@5                   gcc@7                   x86_64-elf-gcc
gcc@4.9                 gcc@6                   gcc@8
```</pre>
</div>
</content>
</entry>
<entry>
<title>[VCPKG] WinHTTPOption for company Proxy not correctly taken into account (#9372)</title>
<updated>2020-01-16T21:56:28+00:00</updated>
<author>
<name>xabbudm</name>
<email>dmuhle@gmail.com</email>
</author>
<published>2020-01-16T21:56:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=e3dfd4a9fa25c05abcf166a1b3bb260b542ed598'/>
<id>e3dfd4a9fa25c05abcf166a1b3bb260b542ed598</id>
<content type='text'>
* fixes to get vcpkg up and running when behind corporate proxy

* clean up of code to check if HTTP_PROXY environment variable is set

*  fixed compiler errors for non win32 systems

* [vcpkg] Simplify HTTPS_PROXY code for WinHTTP

Co-authored-by: Robert Schumacher &lt;roschuma@microsoft.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* fixes to get vcpkg up and running when behind corporate proxy

* clean up of code to check if HTTP_PROXY environment variable is set

*  fixed compiler errors for non win32 systems

* [vcpkg] Simplify HTTPS_PROXY code for WinHTTP

Co-authored-by: Robert Schumacher &lt;roschuma@microsoft.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Minor edit to help message for cli depend-info option. Fix for #9534. (#9536)</title>
<updated>2020-01-14T00:57:03+00:00</updated>
<author>
<name>Darrell</name>
<email>dbird.public@gmail.com</email>
</author>
<published>2020-01-14T00:57:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=28eee51adb36f2165be846e77ef7b3ee5b3f8789'/>
<id>28eee51adb36f2165be846e77ef7b3ee5b3f8789</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Introduce new policy to skip post verification of dll exports (#9642)</title>
<updated>2020-01-14T00:31:58+00:00</updated>
<author>
<name>martin-s</name>
<email>webmaster@macside.net</email>
</author>
<published>2020-01-14T00:31:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=299c7c730ca759ef3dee365a2ecd7c3dd39db8a6'/>
<id>299c7c730ca759ef3dee365a2ecd7c3dd39db8a6</id>
<content type='text'>
* - Introduce new policy to skip post verification of dll exports (see issue #9641).

* - Fixed line endings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* - Introduce new policy to skip post verification of dll exports (see issue #9641).

* - Fixed line endings.
</pre>
</div>
</content>
</entry>
<entry>
<title>Contributing: Fix a typo (#9566)</title>
<updated>2020-01-09T22:31:48+00:00</updated>
<author>
<name>Maher Jendoubi</name>
<email>maher.jendoubi@gmail.com</email>
</author>
<published>2020-01-09T22:31:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=891a840ffa22d7d2631a0c67ec4f0b001e1c19ed'/>
<id>891a840ffa22d7d2631a0c67ec4f0b001e1c19ed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow ARM64 to build x86 things (#9578)</title>
<updated>2020-01-09T22:27:03+00:00</updated>
<author>
<name>Curtis J Bezault</name>
<email>curtbezault@gmail.com</email>
</author>
<published>2020-01-09T22:27:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=7b61b7b515cc077e2ce76505cad94c4268ef2bb4'/>
<id>7b61b7b515cc077e2ce76505cad94c4268ef2bb4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[vcpkg] Removed unused template function. (#9287)</title>
<updated>2019-12-21T01:26:40+00:00</updated>
<author>
<name>dpoliarush</name>
<email>polyarush.dmytro@gmail.com</email>
</author>
<published>2019-12-21T01:26:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=37265f7a45489d065ed02891cbfd2becb741712b'/>
<id>37265f7a45489d065ed02891cbfd2becb741712b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #9080 from dan-shaw/telemetry-update</title>
<updated>2019-11-23T00:08:34+00:00</updated>
<author>
<name>Robert Schumacher</name>
<email>roschuma@microsoft.com</email>
</author>
<published>2019-11-23T00:08:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=cda348b6a3f1850a905b983cbf93642dc24cbc4a'/>
<id>cda348b6a3f1850a905b983cbf93642dc24cbc4a</id>
<content type='text'>
[vcpkg] update telemetry</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[vcpkg] update telemetry</pre>
</div>
</content>
</entry>
</feed>
