Lines 34-48
multilib_src_configure() {
Link Here
|
34 |
use 8bit && bits+=( 8 ) |
34 |
use 8bit && bits+=( 8 ) |
35 |
use 10bit && bits+=( 16 ) |
35 |
use 10bit && bits+=( 16 ) |
36 |
|
36 |
|
|
|
37 |
local enable_asm |
37 |
if [[ ${MULTILIB_ABI_FLAG} == abi_x86_x32 ]]; then |
38 |
if [[ ${MULTILIB_ABI_FLAG} == abi_x86_x32 ]]; then |
38 |
build_asm=false |
39 |
enable_asm=false |
39 |
else |
40 |
else |
40 |
build_asm=$(usex asm true false) |
41 |
enable_asm=$(usex asm true false) |
41 |
fi |
42 |
fi |
42 |
|
43 |
|
43 |
local emesonargs=( |
44 |
local emesonargs=( |
44 |
-D bitdepths=$(IFS=,; echo "${bits[*]}") |
45 |
-D bitdepths=$(IFS=,; echo "${bits[*]}") |
45 |
-D build_asm=$build_asm |
46 |
-D enable_asm=${enable_asm} |
46 |
) |
47 |
) |
47 |
meson_src_configure |
48 |
meson_src_configure |
48 |
} |
49 |
} |
49 |
- |
|
|