diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-03-28 23:08:14 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-03-28 23:08:14 +0100 |
commit | 90f7edfcb116ce88d9a90b377a39928e05c270d3 (patch) | |
tree | 015be731f1097f1dd0cdae5d28c68c1fb44299cb | |
parent | 998db86f455b90f8cc39042a10f48324f29ce0ba (diff) | |
download | weechat-90f7edfcb116ce88d9a90b377a39928e05c270d3.zip |
Update INSTALL file
-rw-r--r-- | INSTALL | 23 |
1 files changed, 15 insertions, 8 deletions
@@ -1,20 +1,27 @@ WeeChat - Installation instructions =================================== -You can build WeeChat with autotools or cmake. - -- with autotools: - ./autogen.sh (for cloned git repository only) - ./configure ("./configure --help" for options) - make - make install (as root for installation in system directories) +You can build WeeChat with cmake (recommended way) or autotools. - with cmake: + mkdir build cd build - cmake .. ("ccmake .." for options) + cmake .. -DPREFIX=/where/you/want/install -DCMAKE_BUILD_TYPE=Debug + make + make install (as root for installation in system directories) + +- with autotools: + + ./autogen.sh (for cloned git repository only, not devel package) + ./configure --prefix=/where/you/want/install make make install (as root for installation in system directories) +If you want to report bugs/crashs to developers, please: +- compile with debug info (built type Debug for cmake, default for autotools), +- enable core files (for bash shell, add "ulimit -c unlimited" to your ~/.bashrc). + + See AUTHORS for support, feel free to contact us for any problem. |