Skip to content

Instantly share code, notes, and snippets.

@ichramm
Created November 22, 2012 12:35
Show Gist options
  • Save ichramm/4130973 to your computer and use it in GitHub Desktop.
Save ichramm/4130973 to your computer and use it in GitHub Desktop.
Compiles and installs boost with selected libraries
#!/bin/bash
# should run as root
./bootstrap.sh
./b2 --show-libraries
./b2 --build-type=complete \
--layout=versioned \
--with-chrono \
--with-date_time \
--with-exception \
--with-filesystem \
--with-iostreams \
--with-program_options \
--with-random \
--with-regex \
--with-signals \
--with-system \
--with-thread \
--with-timer \
threading=multi \
link=shared \
install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment