summaryrefslogtreecommitdiff
path: root/HOWTO
diff options
context:
space:
mode:
authorMaxim Fedorov <maximfca@gmail.com>2022-01-07 10:37:03 -0800
committerMaxim Fedorov <maximfca@gmail.com>2022-01-19 09:28:16 -0800
commit69994d56e1c454134cbc83fafe673a605daffbe2 (patch)
tree114adaa583e4f7f8555d1f69af6e35e8eebf87ec /HOWTO
parent41ef8097d2b6f891e5c3bd9e8084d9ffb9f7ed75 (diff)
downloaderlang-69994d56e1c454134cbc83fafe673a605daffbe2.tar.gz
[erts, tools] remove "emem" completely
Test suites for the tool were lost long ago. Removing "liberts.a" library as well, for it is now empty and AR on MacOS/Windows does not like empty libraries.
Diffstat (limited to 'HOWTO')
-rw-r--r--HOWTO/INSTALL-IOS.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/HOWTO/INSTALL-IOS.md b/HOWTO/INSTALL-IOS.md
index cdb0bab137..3ec368ecc7 100644
--- a/HOWTO/INSTALL-IOS.md
+++ b/HOWTO/INSTALL-IOS.md
@@ -41,7 +41,6 @@ To build with OpenSSL statically linked, run `configure` like this (note that 1.
To use the resulting `libbeam.a` it needs to be packaged into a Xcode `.xcframework` package together with all other required `.a` files. These include:
* `libbeam.a`
-* `liberts.a`
* `libz.a`
* `libcrypto.a`
@@ -49,7 +48,7 @@ Basically all .a files that have been generated by the build.
One way of creating a combined archive out of all of these is to use `libtool`:
- $ libtool -static -o liberlang.a /Path/to/libbeam.a /Path/to/liberts.a /Path/to/....a
+ $ libtool -static -o liberlang.a /Path/to/libbeam.a /Path/to/....a
This list should also include static nifs you want to include: