Browse Source

remove flags for debugging from Makefile that were causing compiler crashes on build. fixes #126

Alan Shreve 11 years ago
parent
commit
90f6158b83
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Makefile

+ 2 - 2
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