2009-09-13 18:02:46 -06:00
|
|
|
Here's how you build dfhack!
|
|
|
|
----------------------------
|
|
|
|
|
2010-01-18 09:44:24 -07:00
|
|
|
First, there is one dependency, regardless of the OS you use:
|
2009-09-13 18:02:46 -06:00
|
|
|
cmake - it's the build system
|
|
|
|
|
2010-02-15 23:21:38 -07:00
|
|
|
|
2010-03-26 05:20:30 -06:00
|
|
|
Dependencies
|
|
|
|
============
|
|
|
|
|
|
|
|
You'll need cmake and 'a' compiler for building the main lib and the various tools.
|
|
|
|
To build the libdfconnect on Linux, you'll have to make a 32bit build.
|
|
|
|
To build the fake SDL.dll on Windows, you'll have to use MSVC 2008 Express and make
|
|
|
|
a Release or RelWithDebInfo build.
|
|
|
|
|
|
|
|
The python bindings require SWIG and the python devel libs for building.
|
|
|
|
|
|
|
|
(Linux only) Veinlook requires the wide-character ncurses library (libncursesw)
|
|
|
|
|
2009-10-30 03:01:14 -06:00
|
|
|
Building on Linux:
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
* To run in the output folder (without installing):
|
2009-09-13 18:02:46 -06:00
|
|
|
|
2009-10-30 03:01:14 -06:00
|
|
|
building the library is simple. Enter the build folder, run the tools. Like this:
|
|
|
|
|
|
|
|
cd build
|
2010-01-18 13:50:44 -07:00
|
|
|
cmake .. -DCMAKE_BUILD_TYPE:string=Release
|
2009-10-30 03:01:14 -06:00
|
|
|
make
|
2009-09-13 18:02:46 -06:00
|
|
|
|
|
|
|
This will build the library and its tools and place them in /output.
|
|
|
|
You can also use a cmake-friendly IDE like KDevelop 4 or the cmake GUI program.
|
|
|
|
|
2009-10-30 03:01:14 -06:00
|
|
|
* To be installed into the system or packaged
|
|
|
|
|
|
|
|
cd build
|
|
|
|
cmake -DCMAKE_BUILD_TYPE:string=Release -DCMAKE_INSTALL_PREFIX=/usr -DMEMXML_DATA_PATH:path=/usr/share/dfhack ..
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
|
|
|
With this dfhack installs:
|
|
|
|
library to $CMAKE_INSTALL_PREFIX/lib
|
|
|
|
executables to $CMAKE_INSTALL_PREFIX/bin
|
|
|
|
The Memory.xml file to /usr/share/dfhack
|
|
|
|
|
2010-02-15 23:21:38 -07:00
|
|
|
See the section on the shared memory hook library (SHM).
|
2010-01-18 09:44:24 -07:00
|
|
|
|
2009-09-13 18:02:46 -06:00
|
|
|
Building on Windows:
|
|
|
|
--------------------
|
|
|
|
|
2010-03-26 05:20:30 -06:00
|
|
|
You need cmake. Get the win32 installer version from the official site:
|
|
|
|
http://www.cmake.org/cmake/resources/software.html
|
2009-09-13 18:02:46 -06:00
|
|
|
It has the usual installer wizard thing.
|
|
|
|
|
2010-03-26 05:20:30 -06:00
|
|
|
|
2009-09-13 18:02:46 -06:00
|
|
|
* Using mingw:
|
|
|
|
|
|
|
|
You also need a compiler. I build dfhack using mingw. You can get it from the mingw site:
|
|
|
|
Get the automated installer, it will download newest version of mingw and set things up nicely.
|
|
|
|
You'll have to add C:\MinGW\ to your PATH variable.
|
|
|
|
|
|
|
|
- Building:
|
|
|
|
open up cmd and navigate to the dfhack\build folder, run cmake and the mingw version of make:
|
|
|
|
cd build
|
|
|
|
cmake .. -G"MinGW Makefiles" -DCMAKE_BUILD_TYPE:string=Release
|
|
|
|
mingw32-make
|
|
|
|
|
2010-03-26 05:20:30 -06:00
|
|
|
|
2009-10-21 20:14:16 -06:00
|
|
|
* Using MSVC
|
|
|
|
|
|
|
|
open up cmd and navigate to the dfhack\build folder, run cmake:
|
|
|
|
cd build
|
|
|
|
cmake ..
|
|
|
|
|
2010-03-26 05:20:30 -06:00
|
|
|
This will generate MSVC solution and project files.
|
|
|
|
Note that: you are working in the /build folder. Files added to projects will
|
|
|
|
end up there! (and that's wrong). Any changes to the build system should
|
2009-10-21 20:14:16 -06:00
|
|
|
be done by changing cmake configs and running cmake on them!
|
|
|
|
|
2010-03-26 05:20:30 -06:00
|
|
|
Alo, you'll have to copy the Memory.xml file to the build output folders
|
|
|
|
MSVC generates. For example from 'output/' to 'output/Release/'
|
|
|
|
|
|
|
|
|
2009-09-13 18:02:46 -06:00
|
|
|
* Using some other compiler:
|
|
|
|
|
|
|
|
I'm afraid you are on your own. dfhack wasn't tested with any other compiler.
|
|
|
|
Try using a different cmake generator that's intended for your tools.
|
|
|
|
|
2010-02-15 23:21:38 -07:00
|
|
|
|
|
|
|
Building the shared memory hook library (SHM)
|
|
|
|
---------------------------------------------
|
|
|
|
|
2010-03-26 05:20:30 -06:00
|
|
|
Unlike the rest of DFHack, The SHM needs special treatment when it comes to
|
|
|
|
compilation. Because it shares the memory space with DF itself, it has to be
|
|
|
|
built with the same tools as DF and use the same C and C++/STL libraries.
|
2010-02-15 23:21:38 -07:00
|
|
|
|
2010-03-26 05:20:30 -06:00
|
|
|
For DF 40d15 - 40d19_2 on Windows, use MSVC 2008. You can get the Express
|
|
|
|
edition for free from Microsoft.
|
2010-02-15 23:21:38 -07:00
|
|
|
|
2010-03-26 05:20:30 -06:00
|
|
|
Windows dependencies can be determined by a tool like depends.exe (google it).
|
|
|
|
Both the fake SDL.dll and DF have to use the same version of the C runtime
|
|
|
|
(MSVCRT).
|
|
|
|
The SHM can only be debugged using a RelWithDebInfo build!
|
2010-02-15 23:21:38 -07:00
|
|
|
|
2010-03-26 05:20:30 -06:00
|
|
|
Linux dependencies can be determined by setting the LD_DEBUG variable and
|
|
|
|
running ./df:
|
|
|
|
$export LD_DEBUG=versions
|
|
|
|
$./df
|
2010-02-15 23:21:38 -07:00
|
|
|
|
|
|
|
Example of (a part of a) relevant output from a working SHM installation:
|
|
|
|
24472: checking for version `GLIBC_2.0' in file /opt/lib32/lib/libpthread.so.0 [0] required by file ./dwarfort.exe [0]
|
|
|
|
24472: checking for version `GCC_3.0' in file ./libs/libgcc_s.so.1 [0] required by file ./dwarfort.exe [0]
|
|
|
|
24472: checking for version `GLIBC_2.0' in file ./libs/libgcc_s.so.1 [0] required by file ./dwarfort.exe [0]
|
|
|
|
24472: checking for version `GLIBC_2.1' in file /opt/lib32/lib/libm.so.6 [0] required by file ./dwarfort.exe [0]
|
|
|
|
24472: checking for version `GLIBC_2.0' in file /opt/lib32/lib/libm.so.6 [0] required by file ./dwarfort.exe [0]
|
|
|
|
24472: checking for version `GLIBC_2.1.3' in file /opt/lib32/lib/libc.so.6 [0] required by file ./dwarfort.exe [0]
|
|
|
|
24472: checking for version `GLIBC_2.3.4' in file /opt/lib32/lib/libc.so.6 [0] required by file ./dwarfort.exe [0]
|
|
|
|
24472: checking for version `GLIBC_2.4' in file /opt/lib32/lib/libc.so.6 [0] required by file ./dwarfort.exe [0]
|
|
|
|
24472: checking for version `GLIBC_2.0' in file /opt/lib32/lib/libc.so.6 [0] required by file ./dwarfort.exe [0]
|
|
|
|
24472: checking for version `GLIBCXX_3.4.9' in file ./libs/libstdc++.so.6 [0] required by file ./dwarfort.exe [0]
|
|
|
|
24472: checking for version `CXXABI_1.3' in file ./libs/libstdc++.so.6 [0] required by file ./dwarfort.exe [0]
|
|
|
|
24472: checking for version `GLIBCXX_3.4' in file ./libs/libstdc++.so.6 [0] required by file ./dwarfort.exe [0]
|
|
|
|
24472: checking for version `CXXABI_1.3' in file ./libs/libstdc++.so.6 [0] required by file ./libs/libdfconnect.so [0]
|
|
|
|
24472: checking for version `GLIBCXX_3.4' in file ./libs/libstdc++.so.6 [0] required by file ./libs/libdfconnect.so [0]
|
|
|
|
24472: checking for version `GLIBC_2.1.3' in file /opt/lib32/lib/libc.so.6 [0] required by file ./libs/libdfconnect.so [0]
|
|
|
|
24472: checking for version `GLIBC_2.2' in file /opt/lib32/lib/libc.so.6 [0] required by file ./libs/libdfconnect.so [0]
|
|
|
|
24472: checking for version `GLIBC_2.3.4' in file /opt/lib32/lib/libc.so.6 [0] required by file ./libs/libdfconnect.so [0]
|
|
|
|
24472: checking for version `GLIBC_2.0' in file /opt/lib32/lib/libc.so.6 [0] required by file ./libs/libdfconnect.so [0]
|
|
|
|
|
2010-03-26 05:20:30 -06:00
|
|
|
libdfconnect is the SHM. Both are compiled against the same C++ library and
|
|
|
|
share the same CXXABI version.
|
2010-02-15 23:21:38 -07:00
|
|
|
|
|
|
|
Precompiled SHM libraries are provided in binary releases.
|
|
|
|
|
|
|
|
* Checking strings support
|
|
|
|
|
2010-03-26 05:20:30 -06:00
|
|
|
Strings are one of the important C++ types and a great indicator that the SHM
|
|
|
|
works. Tools like Dwarf Therapist depend on string support. Reading of strings
|
|
|
|
can be checked by running any of the tools that deal with materials.
|
2010-02-15 23:21:38 -07:00
|
|
|
|
2010-03-26 05:20:30 -06:00
|
|
|
String writing is best tested with a fresh throw-away fort and dfrenamer.
|
|
|
|
Embark, give one dwarf a very long name using dfrenamer and save/exit.
|
|
|
|
If DF crashes during the save sequence, your SHM is not compatible with DF and
|
|
|
|
the throw-away fort is most probably lost.
|
2010-02-15 23:21:38 -07:00
|
|
|
|
|
|
|
|
2009-09-13 18:02:46 -06:00
|
|
|
Build targets
|
|
|
|
-------------
|
2010-02-15 23:21:38 -07:00
|
|
|
|
2010-03-26 05:20:30 -06:00
|
|
|
dfhack has a few build targets.
|
|
|
|
If you're only after the library run 'make dfhack'.
|
2009-09-13 18:02:46 -06:00
|
|
|
'make' will build everything.
|
2010-03-26 05:20:30 -06:00
|
|
|
'make expbench' will build the expbench testing program and the library.
|
2010-02-15 23:21:38 -07:00
|
|
|
|
2009-09-13 18:02:46 -06:00
|
|
|
Build types
|
|
|
|
-----------
|
2010-02-15 23:21:38 -07:00
|
|
|
|
2009-09-13 18:02:46 -06:00
|
|
|
cmake allows you to pick a build type by changing this variable: CMAKE_BUILD_TYPE
|
|
|
|
|
|
|
|
cmake .. -DCMAKE_BUILD_TYPE:string=BUILD_TYPE
|
|
|
|
|
2010-03-26 05:20:30 -06:00
|
|
|
Without specifying a build type or 'None', cmake uses the CMAKE_CXX_FLAGS
|
|
|
|
variable for building.
|
|
|
|
Valid an useful build types include 'Release', 'Debug' and 'RelWithDebInfo'.
|
|
|
|
There are others, but they aren't really that useful.
|
2009-09-13 18:02:46 -06:00
|
|
|
|
2010-01-18 09:44:24 -07:00
|
|
|
Have fun.
|