Skip to content

Commit 9546dde

Browse files
authored
Added comment in code snippet
1 parent 37d7252 commit 9546dde

File tree

1 file changed

+2
-0
lines changed
  • articles/ai-services/speech-service/includes/quickstarts/platform

1 file changed

+2
-0
lines changed

articles/ai-services/speech-service/includes/quickstarts/platform/go-linux.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,13 @@ The following steps enable your Go environment to find the Speech SDK. In both s
2626

2727
```sh
2828
export CGO_CFLAGS="-I$SPEECHSDK_ROOT/include/c_api"
29+
# Replace "<architecture>" with what corresponds to your setup with either "x86", "x64", "arm32" or "arm64"
2930
export CGO_LDFLAGS="-L$SPEECHSDK_ROOT/lib/<architecture> -lMicrosoft.CognitiveServices.Speech.core"
3031
```
3132

3233
1. To run applications and the SDK, you need to tell the operating system where to find the libraries.
3334

3435
```sh
36+
# Replace "<architecture>" with what corresponds to your setup with either "x86", "x64", "arm32" or "arm64"
3537
export LD_LIBRARY_PATH="$SPEECHSDK_ROOT/lib/<architecture>:$LD_LIBRARY_PATH"
3638
```

0 commit comments

Comments
 (0)