1. 08 1月, 2019 1 次提交
  2. 04 1月, 2019 1 次提交
  3. 06 12月, 2018 1 次提交
    • A
      Fix buck dev mode fbcode builds (#4747) · e58d7695
      anand76 提交于
      Summary:
      Don't enable ROCKSDB_JEMALLOC unless the build mode is opt and default
      allocator is jemalloc. In dev mode, this is causing compile/link errors such as -
      ```
      stderr: buck-out/dev/gen/rocksdb/src/rocksdb_lib#compile-pic-malloc_stats.cc.o4768b59e,gcc-5-glibc-2.23-clang/db/malloc_stats.cc.o:malloc_stats.cc:function rocksdb::DumpMallocStats(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >*): error: undefined reference to 'malloc_stats_print'
      clang-7.0: error: linker command failed with exit code 1
      ```
      Pull Request resolved: https://github.com/facebook/rocksdb/pull/4747
      
      Differential Revision: D13324840
      
      Pulled By: anand1976
      
      fbshipit-source-id: 45ffbd4f63fe4d9e8a0473d8f066155e4ef64a14
      e58d7695
  4. 03 11月, 2018 1 次提交
    • P
      Change BUCK template files (#4624) · 6c6cb465
      Philip Jameson 提交于
      Summary:
      Slightly changes the format of generated BUCK files for Facebook consumption. Generated targets end up looking like this:
      ```
      cpp_library(
          name = "rocksdb_tools_lib",
          srcs = [
              "tools/db_bench_tool.cc",
              "tools/trace_analyzer_tool.cc",
              "util/testutil.cc",
          ],
          auto_headers = AutoHeaders.RECURSIVE_GLOB,
          arch_preprocessor_flags = rocksdb_arch_preprocessor_flags,
          compiler_flags = rocksdb_compiler_flags,
          preprocessor_flags = rocksdb_preprocessor_flags,
          deps = [":rocksdb_lib"],
          external_deps = rocksdb_external_deps,
      )
      ```
      Instead of
      ```
      cpp_library(
          name = "rocksdb_tools_lib",
          srcs = [
              "tools/db_bench_tool.cc",
              "tools/trace_analyzer_tool.cc",
              "util/testutil.cc",
          ],
          headers = AutoHeaders.RECURSIVE_GLOB,
          arch_preprocessor_flags = rocksdb_arch_preprocessor_flags,
          compiler_flags = rocksdb_compiler_flags,
          preprocessor_flags = rocksdb_preprocessor_flags,
          deps = [":rocksdb_lib"],
          external_deps = rocksdb_external_deps,
      )
      ```
      Pull Request resolved: https://github.com/facebook/rocksdb/pull/4624
      
      Reviewed By: riversand963
      
      Differential Revision: D12906711
      
      Pulled By: philipjameson
      
      fbshipit-source-id: 32ab64a3390cdcf2c4043ff77517ac1ad58a5e2b
      6c6cb465
  5. 16 10月, 2018 1 次提交
  6. 26 9月, 2018 1 次提交
  7. 29 8月, 2018 1 次提交
    • P
      Grab straggler files to explicitly import AutoHeaders · a876995e
      Philip Jameson 提交于
      Summary: There were a few files that were missed when AutoHeaders were moved to their own file. Add explicit loads
      
      Reviewed By: yfeldblum
      
      Differential Revision: D9499942
      
      fbshipit-source-id: 942bf3a683b8961e1b6244136f6337477dcc45af
      a876995e
  8. 13 7月, 2018 1 次提交
  9. 27 6月, 2018 1 次提交
  10. 22 6月, 2018 1 次提交
  11. 31 3月, 2018 1 次提交
  12. 07 3月, 2018 1 次提交
  13. 30 1月, 2018 1 次提交
    • M
      Suppress lint in old files · b8eb32f8
      Mark Isaacson 提交于
      Summary: Grandfather in super old lint issues to make a clean slate for moving forward that allows us to have stronger enforcement on new issues.
      
      Reviewed By: yiwu-arbug
      
      Differential Revision: D6821806
      
      fbshipit-source-id: 22797d31ec58e9eb0255d3b66fedfcfcb0dc127c
      b8eb32f8
  14. 01 12月, 2017 2 次提交
  15. 16 11月, 2017 1 次提交
  16. 14 8月, 2017 1 次提交
    • A
      rocksdb: make buildable on aarch64 · 5449c099
      Andrew Gallagher 提交于
      Summary:
      - Remove default arch-specified flags.
      - Move non-default arch-specific flags to arch-specific param.
      
      Reviewed By: yiwu-arbug
      
      Differential Revision: D5597499
      
      fbshipit-source-id: c53108ac39c73ac36893d3fd9aaf3b5e3080f1ae
      5449c099
  17. 04 8月, 2017 1 次提交
  18. 28 7月, 2017 1 次提交
  19. 25 7月, 2017 1 次提交
  20. 15 7月, 2017 1 次提交
  21. 29 6月, 2017 1 次提交
  22. 28 6月, 2017 2 次提交
    • Y
      Fix TARGETS file tests list · 982cec22
      Yi Wu 提交于
      Summary:
      1. The buckifier script assume each test "foo" comes with a .cc file of the same name (i.e. foo.cc). Update cassandra tests to follow this pattern so that the buckifier script can recognize them.
      2. add blob_db_test
      Closes https://github.com/facebook/rocksdb/pull/2506
      
      Differential Revision: D5331517
      
      Pulled By: yiwu-arbug
      
      fbshipit-source-id: 86f3eba471fc621186ab44cbd073b6162cde8e57
      982cec22
    • Y
      allow numa >= 2.0.8 · b49b3710
      Yi Wu 提交于
      Summary:
      Allow numa >= 2.0.8 in buck TARGET file.
      Closes https://github.com/facebook/rocksdb/pull/2504
      
      Differential Revision: D5330550
      
      Pulled By: yiwu-arbug
      
      fbshipit-source-id: 8ffb6167b4ad913877eac16a20a91023b31f8d41
      b49b3710
  23. 25 5月, 2017 1 次提交
  24. 13 4月, 2017 1 次提交
    • S
      internal_repo_rocksdb to build Java and RocksDB LITE · a22ed4ea
      Siying Dong 提交于
      Summary: Build Java and RocksDB LITE as a customized unit test under internal_repo_rocksdb. One thing I'm not sure is that whether these two tests are triggered in every flavor.
      
      Reviewed By: IslamAbdelRahman
      
      Differential Revision: D4855868
      
      fbshipit-source-id: 82a1628b458744d7692bbd29ef7424cca1294031
      a22ed4ea
  25. 05 4月, 2017 1 次提交