rocksdb/monitoring
Nikhil Benesch 11c5d4741a cross-platform compatibility improvements
Summary:
We've had a couple CockroachDB users fail to build RocksDB on exotic platforms, so I figured I'd try my hand at solving these issues upstream. The problems stem from a) `USE_SSE=1` being too aggressive about turning on SSE4.2, even on toolchains that don't support SSE4.2 and b) RocksDB attempting to detect support for thread-local storage based on OS, even though it can vary by compiler on the same OS.

See the individual commit messages for details. Regarding SSE support, this PR should change virtually nothing for non-CMake based builds. `make`, `PORTABLE=1 make`, `USE_SSE=1 make`, and `PORTABLE=1 USE_SSE=1 make` function exactly as before, except that SSE support will be automatically disabled when a simple SSE4.2-using test program fails to compile, as it does on OpenBSD. (OpenBSD's ports GCC supports SSE4.2, but its binutils do not, so `__SSE_4_2__` is defined but an SSE4.2-using program will fail to assemble.) A warning is emitted in this case. The CMake build is modified to support the same set of options, except that `USE_SSE` is spelled `FORCE_SSE42` because `USE_SSE` is rather useless now that we can automatically detect SSE support, and I figure changing options in the CMake build is less disruptive than changing the non-CMake build.

I've tested these changes on all the platforms I can get my hands on (macOS, Windows MSVC, Windows MinGW, and OpenBSD) and it all works splendidly. Let me know if there's anything you object to—I obviously don't mean to break any of your build pipelines in the process of fixing ours downstream.
Closes https://github.com/facebook/rocksdb/pull/2199

Differential Revision: D5054042

Pulled By: yiwu-arbug

fbshipit-source-id: 938e1fc665c049c02ae15698e1409155b8e72171
2017-05-15 16:15:38 -07:00
..
histogram_test.cc Add GPLv2 as an alternative license. 2017-04-27 18:06:12 -07:00
histogram_windowing.cc Add GPLv2 as an alternative license. 2017-04-27 18:06:12 -07:00
histogram_windowing.h Add GPLv2 as an alternative license. 2017-04-27 18:06:12 -07:00
histogram.cc Add GPLv2 as an alternative license. 2017-04-27 18:06:12 -07:00
histogram.h Add GPLv2 as an alternative license. 2017-04-27 18:06:12 -07:00
instrumented_mutex.cc Add GPLv2 as an alternative license. 2017-04-27 18:06:12 -07:00
instrumented_mutex.h Add GPLv2 as an alternative license. 2017-04-27 18:06:12 -07:00
iostats_context_imp.h cross-platform compatibility improvements 2017-05-15 16:15:38 -07:00
iostats_context_test.cc Move some files under util/ to separate dirs 2017-04-05 19:09:16 -07:00
iostats_context.cc cross-platform compatibility improvements 2017-05-15 16:15:38 -07:00
perf_context_imp.h cross-platform compatibility improvements 2017-05-15 16:15:38 -07:00
perf_context.cc cross-platform compatibility improvements 2017-05-15 16:15:38 -07:00
perf_level_imp.h cross-platform compatibility improvements 2017-05-15 16:15:38 -07:00
perf_level.cc cross-platform compatibility improvements 2017-05-15 16:15:38 -07:00
perf_step_timer.h Add GPLv2 as an alternative license. 2017-04-27 18:06:12 -07:00
statistics_test.cc Add GPLv2 as an alternative license. 2017-04-27 18:06:12 -07:00
statistics.cc Add GPLv2 as an alternative license. 2017-04-27 18:06:12 -07:00
statistics.h Add GPLv2 as an alternative license. 2017-04-27 18:06:12 -07:00
thread_status_impl.cc Move various string utility functions into string_util 2017-04-06 14:54:12 -07:00
thread_status_updater_debug.cc Move some files under util/ to separate dirs 2017-04-05 19:09:16 -07:00
thread_status_updater.cc Move some files under util/ to separate dirs 2017-04-05 19:09:16 -07:00
thread_status_updater.h Move some files under util/ to separate dirs 2017-04-05 19:09:16 -07:00
thread_status_util_debug.cc Move some files under util/ to separate dirs 2017-04-05 19:09:16 -07:00
thread_status_util.cc Move some files under util/ to separate dirs 2017-04-05 19:09:16 -07:00
thread_status_util.h Move some files under util/ to separate dirs 2017-04-05 19:09:16 -07:00