summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/bench/workgen
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2018-10-29 13:32:59 +1100
committerLuke Chen <luke.chen@mongodb.com>2018-10-29 13:32:59 +1100
commitb677c2178df719d9b9cf7720c21832311318679e (patch)
tree872fc19ff1dbb5fffe3678b5db04defdb98495b7 /src/third_party/wiredtiger/bench/workgen
parent5096e2813942583fcfb6541e3559ad647b23ee9b (diff)
downloadmongo-b677c2178df719d9b9cf7720c21832311318679e.tar.gz
Import wiredtiger: 22b1224ee0623db1ed03f6bf5dd681deb1aa8b2e from branch mongodb-4.2
ref: 0b8896b434..22b1224ee0 for: 4.1.5 WT-3898 Keep prepared updates in lookaside until they are read WT-4387 Fix ordering of referenced shared libraries in workgen WT-4389 Update wtperf runner script to accept multiple arguments
Diffstat (limited to 'src/third_party/wiredtiger/bench/workgen')
-rwxr-xr-x[-rw-r--r--]src/third_party/wiredtiger/bench/workgen/setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/third_party/wiredtiger/bench/workgen/setup.py b/src/third_party/wiredtiger/bench/workgen/setup.py
index 439b9c474fe..9d644133772 100644..100755
--- a/src/third_party/wiredtiger/bench/workgen/setup.py
+++ b/src/third_party/wiredtiger/bench/workgen/setup.py
@@ -62,7 +62,8 @@ wt_ver = '%d.%d' % (WIREDTIGER_VERSION_MAJOR, WIREDTIGER_VERSION_MINOR)
setup(name='workgen', version=wt_ver,
ext_modules=[Extension('_workgen',
[os.path.join(dir, 'workgen_wrap.cxx')],
- libraries=['wiredtiger', 'pthread', 'workgen'],
+ # The ordering of libraries is significant, and matters to some linkers.
+ libraries=['workgen', 'wiredtiger', 'pthread'],
extra_compile_args=extra_cflags,
)],
package_dir={'' : dir},