Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
R
rust-rocksdb
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangzongwu
rust-rocksdb
Commits
019e91ba
Commit
019e91ba
authored
Oct 30, 2019
by
Connor
Committed by
Nick Cameron
Oct 30, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove update_titan feature (#365)
Signed-off-by:
Connor1996
<
zbk602423539@gmail.com
>
parent
91785960
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
11 deletions
+0
-11
Cargo.toml
Cargo.toml
+0
-1
Cargo.toml
librocksdb_sys/Cargo.toml
+0
-1
Cargo.toml
librocksdb_sys/libtitan_sys/Cargo.toml
+0
-1
build.rs
librocksdb_sys/libtitan_sys/build.rs
+0
-8
No files found.
Cargo.toml
View file @
019e91ba
...
...
@@ -20,7 +20,6 @@ jemalloc = ["librocksdb_sys/jemalloc"]
portable
=
["librocksdb_sys/portable"]
sse
=
["librocksdb_sys/sse"]
valgrind
=
[]
update_titan
=
["librocksdb_sys/update_titan"]
[dependencies]
libc
=
"0.2.11"
...
...
librocksdb_sys/Cargo.toml
View file @
019e91ba
...
...
@@ -19,7 +19,6 @@ jemalloc = ["jemalloc-sys"]
# when not using with static-link right now in this crate.
portable
=
["libtitan_sys/portable"]
sse
=
["libtitan_sys/sse"]
update_titan
=
["libtitan_sys/update_titan"]
[build-dependencies]
cc
=
"1.0.3"
...
...
librocksdb_sys/libtitan_sys/Cargo.toml
View file @
019e91ba
...
...
@@ -13,7 +13,6 @@ default = []
# when not using with static-link right now in this crate.
portable
=
[]
sse
=
[]
update_titan
=
[]
[build-dependencies]
cc
=
"1.0.3"
...
...
librocksdb_sys/libtitan_sys/build.rs
View file @
019e91ba
...
...
@@ -2,7 +2,6 @@ extern crate cc;
extern
crate
cmake
;
use
std
::
env
;
use
std
::
process
::
Command
;
fn
main
()
{
// RocksDB cmake script expect libz.a being under ${DEP_Z_ROOT}/lib, but libz-sys crate put it
...
...
@@ -23,13 +22,6 @@ fn main() {
if
cfg!
(
feature
=
"sse"
)
{
cfg
.define
(
"FORCE_SSE42"
,
"ON"
);
}
if
cfg!
(
feature
=
"update_titan"
)
{
Command
::
new
(
"make"
)
.current_dir
(
"../.."
)
.args
(
&
[
"update_titan"
])
.status
()
.expect
(
"failed to update titan!"
);
}
let
dst
=
cfg
.define
(
"ROCKSDB_DIR"
,
cur_dir
.join
(
".."
)
.join
(
"rocksdb"
))
.define
(
"WITH_TITAN_TESTS"
,
"OFF"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment