Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 37eca1a

Browse files
authored
Merge pull request #2361 from OculusMode/macos-warning-fix
Added MacOS warning in readme file
2 parents e4e83cc + 16c27a9 commit 37eca1a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,21 @@ Please follow the below steps for Windows:
173173
cd integration_tests
174174
./run_tests.py
175175
```
176+
- Troubleshooting on MacOS latest version:
177+
- In case of recently updated MacOS, you may get a warning like below in some test cases:
178+
```bash
179+
ld: warning: object file (test_list_index2.out.tmp.o) was built for newer macOS version (14.0) than being linked (13.3)
180+
```
181+
This leads to mismatch of hashes with expected output in some test cases, this can be resolved by updating command line tools. Below is a snippet for the same.
182+
183+
```bash
184+
git clean -dfx
185+
sudo rm -rf /Library/Developer/CommandLineTools # make sure you know what you're doing here
186+
sudo xcode-select --install
187+
./build.sh
188+
./run_tests.py
189+
```
190+
176191

177192
### Windows
178193

0 commit comments

Comments
 (0)