Improve iOS README.

GitOrigin-RevId: 5141bd0bb172f72c7cda70dba249d4c3f0d90849
This commit is contained in:
levlam 2018-10-31 15:15:16 +03:00
parent 6b3b190037
commit 035e4a69ed
2 changed files with 3 additions and 1 deletions

View File

@ -27,6 +27,8 @@ cd <path to TDLib sources>/example/ios
./build-openssl.sh
```
Here we use scripts from [Python Apple support](https://github.com/pybee/Python-Apple-support), but any other OpenSSL builds should work too.
[Python Apple support](https://github.com/pybee/Python-Apple-support) has known problems with spaces in the path to the current directory, so
you need to ensure that there is no spaces in the path.
Built libraries should be stored in `third_party/openssl/<platform>`, because the next script will rely on this location.
* Build TDLib for iOS, watchOS, tvOS and macOS:
```

View File

@ -163,7 +163,7 @@ class Client::Impl final {
auto response = receive_unlocked(timeout);
is_locked = receive_lock_.exchange(false);
CHECK(is_locked);
LOG(td_requests) << "End to wait for updates, returning object " << response.id << ' ' << response.object.get();
VLOG(td_requests) << "End to wait for updates, returning object " << response.id << ' ' << response.object.get();
return response;
}