Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Replace std::bind with lambdas#598

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
glynos merged 3 commits intocpp-netlib:masterfromdeanberris:remove-bind
Feb 8, 2016
Merged
Show file tree
Hide file tree
Changes from1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
Revert "Updated build scripts so that we don't build boost."
This reverts commit10874f3.
  • Loading branch information
@deanberris
deanberris committedFeb 8, 2016
commit5410c5fb8f5d64c3f969c1b10650cab589056192
2 changes: 2 additions & 0 deletionsbuild.sh
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,6 +6,8 @@ cd build
cmake -DCMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE \
-DBUILD_SHARED_LIBS=$BUILD_SHARED_LIBS \
-DCPP-NETLIB_ENABLE_HTTPS=$ENABLE_HTTPS \
-DBOOST_INCLUDEDIR="${HOME}/${CC}-boost_${BOOST_VERSION}/include" \
-DBOOST_LIBRARYDIR="${HOME}/${CC}-boost_${BOOST_VERSION}/lib" \
-DCMAKE_CXX_FLAGS="-std=c++11 ${CMAKE_CXX_FLAGS}" \
..
make -j2
Expand Down
8 changes: 7 additions & 1 deletioninstall-boost.sh
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
#!/bin/sh
set -e

if [ ! -d "${BOOST_ROOT}" ]; then
if [ ! -d "${HOME}/${CC}-boost_${BOOST_VERSION}/include" ]; then
wget -O boost_${BOOST_VERSION}.tar.bz2 http://sourceforge.net/projects/boost/files/boost/${BOOST_VER}/boost_${BOOST_VERSION}.tar.bz2/download
tar jxf boost_${BOOST_VERSION}.tar.bz2
cd boost_${BOOST_VERSION}
./bootstrap.sh --with-toolset=$TOOLSET --prefix=${HOME}/${CC}-boost_${BOOST_VERSION}
./b2 --stagedir=. -j4 --layout=tagged variant=debug,release link=shared threading=multi address-model=64 cxxflags='-std=c++11' install >boost-build.log 2>&1
cd ..
rm -rf boost_${BOOST_VERSION}
rm -rf boost_${BOOST_VERSION}.tar.bz2
fi

[8]ページ先頭

©2009-2025 Movatter.jp