diff options
author | Aaron Durbin <adurbin@chromium.org> | 2017-06-16 15:20:57 -0500 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-11-04 00:34:20 +0000 |
commit | b1aa6114b1b824ba73f4ab023b03507041281fdb (patch) | |
tree | 239a882fc5cadbc268419ef1f1f35ae11b6e4093 /src/cpu | |
parent | 0781cbe1d33e62a26a234962bc271209cc22c931 (diff) | |
download | coreboot-b1aa6114b1b824ba73f4ab023b03507041281fdb.tar.xz |
cpu: assume SSE if SSE2 is selected
If the SSE2 Kconfig option is selected also select SSE.
Change-Id: I6ccba57d5ae13b8066f2f744cd739282ffd4fe73
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/20245
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpu/Kconfig b/src/cpu/Kconfig index 915526b2dc..e10a7022d4 100644 --- a/src/cpu/Kconfig +++ b/src/cpu/Kconfig @@ -65,6 +65,7 @@ config SSE config SSE2 bool default n + select SSE help Select SSE2 in your socket or model Kconfig if your CPU has SSE2 streaming SIMD instructions. Some parts of coreboot can be built |