Skip to content

Commit

Permalink
Merge pull request lcompilers#2361 from OculusMode/macos-warning-fix
Browse files Browse the repository at this point in the history
Added MacOS warning in readme file
  • Loading branch information
certik committed Oct 3, 2023
2 parents e4e83cc + 16c27a9 commit 37eca1a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,21 @@ Please follow the below steps for Windows:
cd integration_tests
./run_tests.py
```
- Troubleshooting on MacOS latest version:
- In case of recently updated MacOS, you may get a warning like below in some test cases:
```bash
ld: warning: object file (test_list_index2.out.tmp.o) was built for newer macOS version (14.0) than being linked (13.3)
```
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.

```bash
git clean -dfx
sudo rm -rf /Library/Developer/CommandLineTools # make sure you know what you're doing here
sudo xcode-select --install
./build.sh
./run_tests.py
```


### Windows

Expand Down

0 comments on commit 37eca1a

Please sign in to comment.