You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
R4SAS 93b6c6d85c
1.1-train
4 years ago
windows init restructured 1.1 release 4 years ago
.gitignore init restructured 1.1 release 4 years ago
Makefile 1.1-train 4 years ago
Makefile.mingw 1.1-train 4 years ago
README.md 1.1-train 4 years ago
sygcpp.cpp init restructured 1.1 release 4 years ago

README.md

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-openssl
  • Compile application
make
  • Run it using sygcpp.exe

How build on Linux

  • Install required packages
sudo apt-get install make g++ libssl-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.