Skip to content

Commit

Permalink
build: pack boost.regex with binaries (#389)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wu Tao authored and qinzuoyan committed Sep 4, 2019
1 parent 6dfd6e9 commit 38dccf6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/pack_client.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ copy_file `get_boost_lib $custom_boost_lib system` ${pack}/lib
ln -sf `ls ${pack}/lib | grep libboost_system` ${pack}/lib/libboost_system.so
copy_file `get_boost_lib $custom_boost_lib filesystem` ${pack}/lib
ln -sf `ls ${pack}/lib | grep libboost_filesystem` ${pack}/lib/libboost_filesystem.so
copy_file `get_boost_lib $custom_boost_lib regex` ${pack}/lib
ln -sf `ls ${pack}/lib | grep libboost_regex` ${pack}/lib/libboost_regex.so

cp -v -r ./src/include ${pack}

Expand Down
1 change: 1 addition & 0 deletions scripts/pack_server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ copy_file ./src/server/config.ini ${pack}/bin

copy_file `get_boost_lib $custom_boost_lib system` ${pack}/bin
copy_file `get_boost_lib $custom_boost_lib filesystem` ${pack}/bin
copy_file `get_boost_lib $custom_boost_lib regex` ${pack}/bin
copy_file `get_stdcpp_lib $custom_gcc` ${pack}/bin
copy_file `get_system_lib server snappy` ${pack}/bin/`get_system_libname server snappy`
copy_file `get_system_lib server crypto` ${pack}/bin/`get_system_libname server crypto`
Expand Down
1 change: 1 addition & 0 deletions scripts/pack_tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ copy_file ./rdsn/thirdparty/output/lib/libPoco*.so.48 ${pack}/DSN_ROOT/lib/
copy_file ./rdsn/thirdparty/output/lib/libtcmalloc_and_profiler.so.4 ${pack}/DSN_ROOT/lib/
copy_file `get_boost_lib $custom_boost_lib system` ${pack}/DSN_ROOT/lib/
copy_file `get_boost_lib $custom_boost_lib filesystem` ${pack}/DSN_ROOT/lib/
copy_file `get_boost_lib $custom_boost_lib regex` ${pack}/DSN_ROOT/lib/
copy_file `get_stdcpp_lib $custom_gcc` ${pack}/DSN_ROOT/lib/
copy_file `get_system_lib shell snappy` ${pack}/DSN_ROOT/lib/`get_system_libname shell snappy`
copy_file `get_system_lib shell crypto` ${pack}/DSN_ROOT/lib/`get_system_libname shell crypto`
Expand Down

0 comments on commit 38dccf6

Please sign in to comment.