Skip to content

Commit 083fb18

Browse files
committed
PSMDB-203 remove --rocksdb option processing from scons
1 parent 5d3f818 commit 083fb18

File tree

3 files changed

+0
-18
lines changed

3 files changed

+0
-18
lines changed

SConstruct

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -134,15 +134,6 @@ add_option('disable-minimum-compiler-version-enforcement',
134134
nargs=0,
135135
)
136136

137-
add_option('rocksdb',
138-
choices=['on', 'off'],
139-
const='on',
140-
default='off',
141-
help='Enable RocksDB',
142-
nargs='?',
143-
type='choice',
144-
)
145-
146137
add_option('ssl',
147138
help='Enable SSL',
148139
nargs=0
@@ -882,8 +873,6 @@ noshell = has_option( "noshell" )
882873

883874
jsEngine = get_option( "js-engine")
884875

885-
rocksdb = get_option( "rocksdb" ) == "on"
886-
887876
serverJs = get_option( "server-js" ) == "on"
888877

889878
usemozjs = (jsEngine.startswith('mozjs'))
@@ -3215,7 +3204,6 @@ Export("serverJs")
32153204
Export("usemozjs")
32163205
Export('module_sconscripts')
32173206
Export("debugBuild optBuild")
3218-
Export("rocksdb")
32193207
Export("wiredtiger")
32203208
Export("mmapv1")
32213209
Export("endian")

src/mongo/db/SConscript

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
Import("env")
44
Import("has_option")
5-
Import("rocksdb")
65
Import("wiredtiger")
76
Import("inmemory")
87

@@ -862,7 +861,6 @@ env.Library(
862861
"storage/inmemory/storage_inmemory" if inmemory else [],
863862
"storage/mmap_v1/mmap",
864863
"storage/mmap_v1/storage_mmapv1",
865-
"storage/rocks/storage_rocks" if rocksdb else [],
866864
"storage/storage_engine_lock_file",
867865
"storage/storage_engine_metadata",
868866
"storage/storage_init_d",

src/mongo/db/storage/SConscript

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# -*- mode: python -*-
22
Import("env")
3-
Import("rocksdb")
43

54
env = env.Clone()
65

@@ -18,9 +17,6 @@ env.SConscript(
1817
],
1918
)
2019

21-
if rocksdb:
22-
env.SConscript(dirs='rocks', exports='env')
23-
2420
env.Library(
2521
target='journal_listener',
2622
source=[

0 commit comments

Comments
 (0)