Команды SFK


    1        2        3        4        5        6        7        8        9        10    

Раздел 10. Help - Помощь
help chain | help chars | help colors | help compile | help nocase | help office | help options | help patterns | help select | help shell | help unicode | help var | samp |

Help:   Рус   |   Eng        

Команда: help compile
sfk compile on any linux system:

   To compile SFK on any linux system like 64 bit ubuntu
   follow these steps:

   1. make sure a C++ compiler is installed:
      sudo apt-get install g++

   2. download the sfk source code .tar.gz
      wget http://stahlworks.com/sfk.tar.gz

   3. compile by
      gzip -d sfk.tar.gz
      tar xvf sfk.tar
      cd sfk-1.9.8
      ./configure
      make

   4. IF configure/make don't work for any reason
      try a manual compile by:
      g++ -osfk -s sfk.cpp sfkext.cpp sfkpack.cpp

sfk compile on Windows:

   MSVC 14 or higher:
      cl sfk.cpp sfkext.cpp sfkpack.cpp kernel32.lib user32.lib gdi32.lib ws2_32.lib advapi32.lib shell32.lib

   mingw/gcc:
      g++ -osfk.exe sfk.cpp sfkext.cpp sfkpack.cpp -lkernel32 -luser32 -lgdi32 -lws2_32 -ladvapi32 -lshell32