diff options
author | Dylan Baker <[email protected]> | 2018-06-07 11:13:34 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-06-13 10:06:54 -0700 |
commit | 34bbb24ce7702658cdc4e9d34a650e169716c39e (patch) | |
tree | 944fd18980e7aa3a221b0138e477610e1999e80a /meson_options.txt | |
parent | e26af221438f77d8b81f956a56bc9e520f28236a (diff) |
meson: Add support for ppc assembly/optimizations
v2: - Use -mpower8-vector in compiler test for altivec
- rename altivec option to power8
- reword power8 option description to be more clear, originally I
had made it a boolean, but replaced it with an auto option.
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt index 28e92509198..bfe2290868f 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -304,3 +304,10 @@ option( choices : ['freedreno', 'glsl', 'intel', 'nir', 'nouveau', 'all'], description : 'List of tools to build.', ) +option( + 'power8', + type : 'combo', + value : 'auto', + choices : ['auto', 'true', 'false'], + description : 'Enable power8 optimizations.', +) |