Skip to content

Commit 5970cf8

Browse files
committed
fix readme
1 parent 9919517 commit 5970cf8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This is a library providing a more idiomatic C++ API wrapping the C API provided
1414

1515
### Step 1: Downloading
1616

17-
You can download a [source bundle](https://github.com/getargv/getargv.cpp/archive/refs/tags/0.1.tar.gz), or an [installer package](https://github.com/getargv/getargv.cpp/releases/download/0.1/libgetargv++-macos-13.dmg) from GitHub.
17+
You can download a [source bundle](https://github.com/getargv/getargv.cpp/archive/refs/tags/0.7.tar.gz), or an [installer package](https://github.com/getargv/getargv.cpp/releases/download/0.7/libgetargv++-macos-13.dmg) from GitHub.
1818

1919
### Step 2: Installing
2020

@@ -29,7 +29,7 @@ echo | clang++ -c -v -x c++ - 2>&1 | sed -Ee '/search starts here/,/End of searc
2929
```
3030

3131
> [!IMPORTANT]
32-
> On Apple Silicon (ARM) Macs, Homebrew installs native packages in `/opt`, and puts Intel libraries in `/usr/local`, so your compiler will only automatically pick up Intel libraries, which is almost certainly not what you want. You need to explicitly exclude `/usr/local` from your search paths in this case and add `/opt/`.
32+
> On Apple Silicon (ARM) Macs, Homebrew installs native packages in `/opt`, and puts Intel libraries in `/usr/local`, so your compiler will only automatically pick up Intel libraries, which is almost certainly not what you want. You need to explicitly exclude `/usr/local` from your search paths in this case and add `/opt/`, the `CPATH` environment variable might be helpful to you in doing this.
3333
3434
### System Requirements
3535

@@ -81,4 +81,4 @@ std::cout << byte;
8181

8282
## Safety
8383

84-
This library attempts to provide guardrails where possible to avoid undefined behaviour, but C++ is not very well suited to the task, so care must still be taken.
84+
This library attempts to provide guardrails where possible to help avoid undefined behaviour, but C++ is not very well suited to this task, so care must still be taken.

0 commit comments

Comments
 (0)