Skip to content

Commit

Permalink
drop boost/system stub library (rime#722)
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleoflqj authored and graphemecluster committed Oct 1, 2023
1 parent a1a1973 commit adaeddb
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 6 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ if(MSVC)
set(Boost_USE_STATIC_RUNTIME ON)
endif()

set(BOOST_COMPONENTS filesystem regex system)
set(BOOST_COMPONENTS filesystem regex)

if(BOOST_USE_SIGNALS2)
set(RIME_BOOST_SIGNALS2 1)
Expand Down
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ RUN apt update && apt install -y \
libboost-dev \
libboost-filesystem-dev \
libboost-regex-dev \
libboost-system-dev \
libboost-locale-dev \
libgoogle-glog-dev \
libgtest-dev \
Expand Down
1 change: 0 additions & 1 deletion action-install-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ dep_packages=(
libboost-filesystem-dev
libboost-locale-dev
libboost-regex-dev
libboost-system-dev
libgoogle-glog-dev
libleveldb-dev
libmarisa-dev
Expand Down
1 change: 0 additions & 1 deletion build-clang.bat
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ if %build_boost% == 1 (
stage^
--with-locale^
--with-filesystem^
--with-system^
--with-regex || exit
popd
)
Expand Down
1 change: 0 additions & 1 deletion build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ set boost_compiled_libs=--with-date_time^
--with-filesystem^
--with-locale^
--with-regex^
--with-system^
--with-thread

rem the number actually means platform toolset, not %VisualStudioVersion%
Expand Down
2 changes: 1 addition & 1 deletion install-boost.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ download_boost_source() {
[[ -f "${BOOST_ROOT}/bootstrap.sh" ]]
}

boost_libs="${boost_libs=filesystem,regex,system}"
boost_libs="${boost_libs=filesystem,regex}"
boost_cxxflags='-arch arm64 -arch x86_64'

build_boost_macos() {
Expand Down

0 comments on commit adaeddb

Please sign in to comment.