Go to file
r4sas fba53c52ae
openssl -> libsodium
Signed-off-by: r4sas <r4sas@i2pmail.org>
2020-08-18 13:32:07 +00:00
windows update windows resource file 2020-08-18 13:28:54 +00:00
.gitignore init restructured 1.1 release 2020-08-17 11:38:24 +03:00
Makefile fix linux build 2020-08-18 13:24:14 +00:00
Makefile.mingw move to libsodium 2020-08-18 16:10:28 +03:00
README.md move to libsodium 2020-08-18 16:10:28 +03:00
sygcpp.cpp openssl -> libsodium 2020-08-18 13:32:07 +00:00

SYGCPP

How build on windows under MSYS2 shell

  • Run MSYS2 MinGW 64-bit shell
  • Install required packages
pacman -S make mingw-w64-x86_64-gcc mingw-w64-x86_64-libsodium
  • Compile application
make
  • Run it using sygcpp.exe

How build on Linux

  • Install required packages
sudo apt-get install make g++ libsodium-dev
  • Compile application
make
  • Run it using ./sygcpp

Note: If you want compile static binary, add STATIC=yes or STATIC=full to make command. That works only on Linux.