STXXL
1.4.0
|
Precondition: Make sure GNU make
, CMake
>= 2.6.4, git
and a C++ compiler are installed. See Supported Compilers and Platforms which systems and compilers are currently supported.
There are three methods to use STXXL:
local/
directory within the STXXL directory tree.find_package()
mechanism.There are quite some Options for Build Configuration, which you can use when building STXXL with CMake.
my-project
. $ git clone http://github.com/stxxl/stxxl.git my-project
build
subdirectory, including the example in local/
. $ mkdir my-project/build $ cd my-project/build $ cmake -DCMAKE_BUILD_TYPE=Debug .. <lots of output by cmake> $ make <lots of compilation messages>
test1
in local/
(inside my-project/build/) $ cd local $ ./test1 <lots of output>
For your own prototype project you can immediately start modifying test1.cpp
or create a new .cpp in local/
. The CMake scripts will automatically compile and link all .cpp files in local/
correctly with STXXL.
The CMake file has many build options (see Options for Build Configuration). Maybe the most important are BUILD_TESTS
and BUILD_EXAMPLES
. By setting them with "-DBUILD_EXAMPLES=ON -DBUILD_TESTS=ON"
on the CMake line, additional subprojects are added to the build.
The second method is for including STXXL in a larger program as a subproject. This is particularly easy with CMake: one can just add_directory(stxxl)
in a CMakeLists.txt. The following guide shows how to start a simple CMake project and use STXXL in a subdirectory.
The advantage of this method is that the STXXL is a subproject of your's. Thereby it will always be compiled with the same set of CFLAGS or CMAKE_BUILD_TYPE as your project. This is most convenient for developing projects, as the STXXL has a lot of debug code. When running experiments or going into production, the whole project must be built with CMAKE_BUILD_TYPE=Release
or similar to remove the debug code.
"my-project"
and clone the STXXL inside it. $ mkdir my-project $ cd my-project $ git clone http://github.com/stxxl/stxxl.git
CMakeLists.txt
inside your my-project
folder with the following sample content: # CMakeLists.txt example for STXXL project(my-project) cmake_minimum_required(VERSION 2.8) # disallow in-source builds if("${PROJECT_SOURCE_DIR}" STREQUAL "${PROJECT_BINARY_DIR}") message(SEND_ERROR "In-source builds are not allowed.") endif("${PROJECT_SOURCE_DIR}" STREQUAL "${PROJECT_BINARY_DIR}") # enable warnings (always good) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -W -Wall") # include the STXXL library in my-project add_subdirectory(stxxl) # apply STXXL CXXFLAGS to our configuration set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${STXXL_CXX_FLAGS}") # add STXXL includes path include_directories(${STXXL_INCLUDE_DIRS}) # build a program and link it with STXXL. add_executable(project main.cpp) target_link_libraries(project ${STXXL_LIBRARIES})
test1.cpp
from STXXL to the new project as main.cpp
and build it. $ cp stxxl/local/test1.cpp main.cpp $ mkdir build $ cd build $ cmake -DCMAKE_BUILD_TYPE=Debug .. <lots of output by cmake> $ make <lots of compilation messages>
project
$ ./project
STXXL compiles into a static (and optionally shared) library plus template include files, which may be included in binary distributions.
If a binary STXXL package is installed, the following few CMake lines will automatically detect it and configure a program to build with the appropriate CXXFLAGS, include directories and libraries:
# search for stxxl-config.cmake which contains the library's configuration find_package(STXXL REQUIRED) # print some info (this can be removed) message(STATUS "STXXL_CXX_FLAGS: ${STXXL_CXX_FLAGS}") message(STATUS "STXXL_INCLUDE_DIRS: ${STXXL_INCLUDE_DIRS}") message(STATUS "STXXL_LIBRARIES: ${STXXL_LIBRARIES}") # apply CXXFLAGS to our configuration set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${STXXL_CXX_FLAGS}") # add STXXL include directory include_directories(${STXXL_INCLUDE_DIRS}) # create and executable and linke with STXXL add_executable(your_program main.cpp) target_link_libraries(your_program ${STXXL_LIBRARIES})
We have create a simple example project, which contains the lines above and an example program. The source is available via github:
git clone http://github.com/stxxl/myproject.git
See the README at http://github.com/stxxl/myproject
For STXXL is function beyond very simple examples, you must define the disk configuration file . The simplest method is to create a file named '.stxxl'
the same directory as you execute the program. A basic configuration might be:
# file path,maximum capacity of the disk,access method disk=/tmp/stxxl,1G,syscall unlink
Please see Disk Configuration Files for further available options.
Package maintainers should make sure that both Debug and Release static libraries are available via the distribution package system. We currently cannot keep a stable binary interface for the library, thus providing versioned shared libraries is not a good idea.
"-DBUILD_STATIC_LIBS=ON -DBUILD_SHARED_LIBS=OFF"
.CMAKE_INSTALL_PREFIX
.stxxl_tool
(since we do not provide shared libraries). Alternatively, the tool can packaged in an additional tools
package, thus leaving the binary package empty. The test1
binary must not be included.lib/cmake/stxxl
, which must be included in the development package. pkg-config
file, which installs by default into lib/pkgconfig/
as stxxl.pc
and stxxl_debug.pc
A typical build sequence would be
mkdir debug; cd debug cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_STATIC_LIBS=ON $SRCDIR make -j4 && make install cd .. mkdir release; cd release cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_STATIC_LIBS=ON $SRCDIR make -j4 && make install
When building in this order the stxxl_tool will be built twice, and the Debug binary will be overwritten with the Release binary.