-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add FORCE_SSE compile option #391
Conversation
7f31361
to
4b9dd64
Compare
Signed-off-by: Yang Zhang <[email protected]>
4b9dd64
to
a7b1b76
Compare
/run-all-tests |
/test |
@glorv: No presubmit jobs available for tikv/[email protected] In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/run-all-tests |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: LykxSassinator, overvenus The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
[LGTM Timeline notifier]Timeline:
|
Signed-off-by: Yang Zhang <[email protected]>
FORCE_SSE
has been deprecated in RocksDB upstream. It recommends usingPORTABLE=min_cpu_arch
to turn on the compiling optimizations. e.g.PORTABLE=haswell
, which will then propagate to the compiler option-march=haswell
and then turn on SSE.However, I guess TiKV can't assume CPU arch. So the best option for TiKV woud be
PORTABLE=x86-64-v2
. While, current PingCAP CI's gcc version does not supportx86-64-v2
yet. For now, we can just add thatFORCE_SSE
back.Removing
HOMEPAGE_URL https://rocksdb.org/
, since it needs CMake > 3.12, while PingCAP CI now only support CMake 3.10