Skip to content

Commit 0b05734

Browse files
authored
Update build_glibc_with_lse.md
minor editorial amends
1 parent 04b9952 commit 0b05734

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/learning-paths/servers-and-cloud-computing/glibc-with-lse/build_glibc_with_lse.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ You have now successfully built glibc from source without LSE.
5050

5151
Now lets look at how you can build it with LSE support.
5252

53-
## Build glibc With LSE
53+
## Build glibc with LSE
5454
To build glibc with LSE, you should add `CFLAGS` and `CXXFLAGS` to the configure command.
5555

56-
You can do this one of two ways. One way is to use "-mcpu=native" which tells the compiler to detect the architecture/micro-architecture of your machine. The other way is to pass the exact architecture option of your machine to the compiler using "-mcpu=neoverse-n2+lse"
56+
You can do this one of two ways. One way is to use "-mcpu=native" which tells the compiler to detect the architecture/micro-architecture of your machine. The other way is to pass the exact architecture option of your machine to the compiler using "-mcpu=neoverse-n2+lse".
5757

58-
Both ways to configure are shown below:
58+
Both ways are shown below:
5959

6060
```bash
6161
sudo bash ~/glibc/configure --prefix=/usr --disable-werror CC=gcc-10 CXX=g++-10 CFLAGS="-mcpu=native -O3" CXXFLAGS="-mcpu=native -O3"

0 commit comments

Comments
 (0)