From d1e2d34589c3f4742a90ff12c525b080e5879727 Mon Sep 17 00:00:00 2001 From: "jaeseung.bae" Date: Mon, 16 Oct 2023 14:38:01 +0900 Subject: [PATCH] chore: update static build --- docs/finschia-tutorials/installation.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/finschia-tutorials/installation.md b/docs/finschia-tutorials/installation.md index 06c77a5f..367a68b4 100644 --- a/docs/finschia-tutorials/installation.md +++ b/docs/finschia-tutorials/installation.md @@ -26,12 +26,17 @@ source ~/.bash_profile ## Static build(Optional) -### CentOS +* Install static library(Optional) + * For CentOS, you may need to install static library ```bash -# May need to install static libraries for linking +# Optional: If you don't have library installed $ sudo yum install glibc-static.x86_64 libstdc++-static -y +``` + +* Build statically +```bash # Build statically LINK_STATICALLY=true make build ```