From 90f6158b836943f717397ae9db650b5f2a88ba85 Mon Sep 17 00:00:00 2001 From: Alan Shreve Date: Thu, 15 May 2014 21:19:53 -0700 Subject: [PATCH] remove flags for debugging from Makefile that were causing compiler crashes on build. fixes #126 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1ae84c7d..77579b41 100644 --- a/Makefile +++ b/Makefile @@ -8,13 +8,13 @@ deps: assets go get -tags '$(BUILDTAGS)' -d -v ngrok/... server: deps - go install -gcflags "-N -l" -tags '$(BUILDTAGS)' ngrok/main/ngrokd + go install -tags '$(BUILDTAGS)' ngrok/main/ngrokd fmt: go fmt ngrok/... client: deps - go install -gcflags "-N -l" -tags '$(BUILDTAGS)' ngrok/main/ngrok + go install -tags '$(BUILDTAGS)' ngrok/main/ngrok assets: client-assets server-assets