We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 444c4ad commit ddeaedeCopy full SHA for ddeaede
docs/Buidling-ls1-Brads-Env.md
@@ -115,6 +115,19 @@ export UNAME_M="cosmocc"
115
printf "\n**********\n*\n* FINISHED: Prepare to make llama.cpp with Cosmo.\n*\n**********\n\n"
116
```
117
118
+---
119
+### Make openssl with Cosmo
120
+We need cross-architectire `libssl` and `libcrypto` static libraries to support SSL in `llama-server-one`.
121
+```
122
+cp -r /usr/include/openssl/ ./cosmocc/include/
123
+cp -r /usr/include/x86_64-linux-gnu/openssl/* ./cosmocc/include/openssl
124
+git clone https://github.com/openssl/openssl.git
125
+cd openssl
126
+./Configure no-asm no-dso no-afalgeng no-shared no-pinshared no-apps
127
+make
128
+cd ..
129
130
+
131
---
132
### Make llama.cpp with Cosmo
133
0 commit comments