Update daprdocs/content/en/developing-applications/debugging/debug-k8s/debug-dapr-services.md

This commit is contained in:
Aaron Crawfis 2021-04-20 09:34:10 -07:00 committed by GitHub
parent 9a91ff76cc
commit 5c1f8463c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -30,6 +30,7 @@ cd dapr
make release GOOS=linux GOARCH=amd64 DEBUG=1
```
>On Windows download [MingGW](https://sourceforge.net/projects/mingw/files/MinGW/Extension/make/mingw32-make-3.80-3/) and use `ming32-make.exe` instead of `make`.
>On Windows download [MingGW](https://sourceforge.net/projects/mingw/files/MinGW/Extension/make/mingw32-make-3.80-3/) and use `ming32-make.exe` instead of `make`.
In the above command, 'DEBUG' is specified to '1' to disable compiler optimization. 'GOOS=linux' and 'GOARCH=amd64' are also necessary since the binaries will be packaged into Linux-based Docker image in the next step.