Changes between Version 20 and Version 21 of Building/libtorrent
- Timestamp:
- 10/18/2015 08:59:16 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Building/libtorrent
v20 v21 23 23 cd libtorrent-rasterbar 24 24 }}} 25 26 3. Build: 25 2. Configure: 27 26 {{{ 28 27 ./configure --enable-python-binding --with-libgeoip --with-libiconv 28 }}} 29 - ''Logging:'' Add `--enable-logging=default` to get logs in the current working directory. `verbose` and `error` can also be used. 30 - ''Debug:'' To create a debug build add `--enable-debug=yes`. 31 - ''VCS:'' For source code directly from git, run `./autotool.sh` to create the `configure` script (requires `autoconf`, `automake` & `libtool` packages). 32 3. Build: 33 {{{ 29 34 make -j$(nproc) 30 35 }}} 31 - ''Logging:'' Add `--enable-logging=default` to get logs in the current working directory. `verbose` and `error` can also be used.32 36 - ''CPU Cores:'' The `make` option `-j$(nproc)` will utilize all available cpu cores. 33 - ''VCS:'' For source code directly from git/svn, run `./autotool.sh` to create the `configure` script.34 37 35 38 4. Install library and python bindings: