Skip to content

Commit

Permalink
Fix minor details in README
Browse files Browse the repository at this point in the history
  • Loading branch information
serge-sans-paille committed Nov 19, 2022
1 parent 07df435 commit 68d5d3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ int main(int argc, char* argv[])
}
```

Do not forget to enable AVX extension when building the example. With gcc or clang, this is done with the `-march=native` flag,
Do not forget to enable AVX extension when building the example. With gcc or clang, this is done with the `-mavx` flag,
on MSVC you have to pass the `/arch:AVX` option.

This example outputs:
Expand Down Expand Up @@ -136,7 +136,7 @@ int main(int argc, char* argv[])
}
```

Do not forget to enable AVX extension when building the example. With gcc or clang, this is done with the `-march=native` flag,
Do not forget to enable AVX extension when building the example. With gcc or clang, this is done with the `-mavx` flag,
on MSVC you have to pass the `/arch:AVX` option.

This example outputs:
Expand Down

0 comments on commit 68d5d3e

Please sign in to comment.