You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -173,6 +173,21 @@ Please follow the below steps for Windows:
173
173
cd integration_tests
174
174
./run_tests.py
175
175
```
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
0 commit comments