From e2d2a43a7f7e6104692d37762e14c33fac681648 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Thu, 9 Jun 2016 12:46:25 +0700 Subject: [PATCH] add note about Windows timer resolution with Go 1.6 --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 3023f648c..62e02aa32 100644 --- a/README.md +++ b/README.md @@ -60,3 +60,7 @@ See the [example server](example/main.go) or our [fork](https://github.com/lucas http.Handle("/", http.FileServer(http.Dir(wwwDir))) h2quic.ListenAndServeQUIC("localhost:4242", "/path/to/cert/chain.pem", "/path/to/privkey.pem", nil) ``` + +## Building on Windows + +Due to the low Windows timer resolution (see [StackOverflow question](http://stackoverflow.com/questions/37706834/high-resolution-timers-millisecond-precision-in-go-on-windows)) available with Go 1.6.x, some optimizations might not work when compiled with this version of the compiler. Please use Go 1.7 on Windows.