Skip to content

Commit afae806

Browse files
committed
Moved embedded code snippet comment out of the block
1 parent 9546dde commit afae806

File tree

1 file changed

+7
-5
lines changed
  • articles/ai-services/speech-service/includes/quickstarts/platform

1 file changed

+7
-5
lines changed

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

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: eur
88

99
## Platform requirements
1010

11-
The Speech SDK for Go only supports **Ubuntu 18.04/20.04/22.04**, **Debian 9/10/11**, **Red Hat Enterprise Linux (RHEL) 8**, and **CentOS 8** on the x64 architecture when used with Linux.
11+
The Speech SDK for Go only supports **Ubuntu 18.04/20.04/22.04**, **Debian 9/10/11**, **Red Hat Enterprise Linux (RHEL) 8**, and **CentOS 8** on the x64 architecture when used with Linux.
1212

1313
[!INCLUDE [Linux distributions](linux-distributions.md)]
1414

@@ -22,17 +22,19 @@ You must install the [Go binary version 1.13 or later](https://go.dev/dl/).
2222

2323
The following steps enable your Go environment to find the Speech SDK. In both steps, replace `<architecture>` with the processor architecture of your CPU. This will be `x86`, `x64`, `arm32`, or `arm64`.
2424

25-
1. Because the bindings rely on `cgo`, you need to set the environment variables so Go can find the SDK.
25+
1. Because the bindings rely on `cgo`, you need to set the environment variables so Go can find the SDK.
26+
27+
**Important:** Replace `<architecture>` in the code snippet below with what corresponds to your setup with either "x86", "x64", "arm32" or "arm64"
2628

2729
```sh
2830
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"
3031
export CGO_LDFLAGS="-L$SPEECHSDK_ROOT/lib/<architecture> -lMicrosoft.CognitiveServices.Speech.core"
3132
```
3233

33-
1. To run applications and the SDK, you need to tell the operating system where to find the libraries.
34+
2. To run applications and the SDK, you need to tell the operating system where to find the libraries.
35+
36+
**Important:** Replace `<architecture>` in the code snippet below with what corresponds to your setup with either "x86", "x64", "arm32" or "arm64"
3437

3538
```sh
36-
# Replace "<architecture>" with what corresponds to your setup with either "x86", "x64", "arm32" or "arm64"
3739
export LD_LIBRARY_PATH="$SPEECHSDK_ROOT/lib/<architecture>:$LD_LIBRARY_PATH"
3840
```

0 commit comments

Comments
 (0)