Skip to content

Commit

Permalink
INSTALL: document USE_SSE
Browse files Browse the repository at this point in the history
Summary:
Fixes facebook#1790.

adamretter siying
Closes facebook#1996

Differential Revision: D4730449

Pulled By: IslamAbdelRahman

fbshipit-source-id: 19944fa
  • Loading branch information
tamird authored and facebook-github-bot committed Mar 17, 2017
1 parent 9272e12 commit 36ad757
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Compilation

**Important**: If you plan to run RocksDB in production, don't compile using default
**Important**: If you plan to run RocksDB in production, don't compile using default
`make` or `make all`. That will compile RocksDB in debug mode, which is much slower
than release mode.

Expand All @@ -22,7 +22,8 @@ use binaries compiled by `make all` in production.

* By default the binary we produce is optimized for the platform you're compiling on
(-march=native or the equivalent). If you want to build a portable binary, add 'PORTABLE=1' before
your make commands, like this: `PORTABLE=1 make static_lib`
your make commands, like this: `PORTABLE=1 make static_lib`. If you want to build a binary that
makes use of SSE4, add 'USE_SSE=1' before your make commands, like this: `USE_SSE=1 make static_lib`.

## Dependencies

Expand Down

0 comments on commit 36ad757

Please sign in to comment.