* [Buildroot] Not able to build python-numpy 1.23.5 on buildroot
@ 2023-01-21 14:42 Prasad Sankaran via buildroot
2023-01-21 15:18 ` Yann E. MORIN
0 siblings, 1 reply; 4+ messages in thread
From: Prasad Sankaran via buildroot @ 2023-01-21 14:42 UTC (permalink / raw)
To: buildroot; +Cc: Archit Taneja
[-- Attachment #1.1: Type: text/plain, Size: 1131 bytes --]
Hi
The following errors are reported while generating numpy/core/_
multiarray_umath.cpython-38-aarch64-linux-gnu.so using
aarch64-buildroot-linux-gnu-gcc.
Is there a way to avoid including AVX512 .s files from the compilation?
numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:19: Error:
unknown mnemonic pushq' -- pushq %rbp'
numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:21: Error:
unknown mnemonic movq' -- movq %rsp,%rbp'
numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:24: Error:
unknown mnemonic andq' -- andq $-64,%rsp'
numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:25: Error:
unknown mnemonic subq' -- subq $192,%rsp'
numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:26: Error:
unknown mnemonic vmovups' -- vmovups __svml_dacos_data_internal(%rip),%zmm7'
numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:27: Error:
unknown mnemonic vmovups' -- vmovups
64+__svml_dacos_data_internal(%rip),%zmm8'
numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:30: Error:
unknown mnemonic vmovups' -- vmovups
128+__svml_dacos_data_internal(%rip),%zmm11'
.......
[-- Attachment #1.2: Type: text/html, Size: 4569 bytes --]
[-- Attachment #2: Type: text/plain, Size: 150 bytes --]
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Buildroot] Not able to build python-numpy 1.23.5 on buildroot
2023-01-21 14:42 [Buildroot] Not able to build python-numpy 1.23.5 on buildroot Prasad Sankaran via buildroot
@ 2023-01-21 15:18 ` Yann E. MORIN
2023-01-25 15:36 ` Prasad Sankaran via buildroot
0 siblings, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2023-01-21 15:18 UTC (permalink / raw)
To: Prasad Sankaran; +Cc: Archit Taneja, buildroot
Prasad, All,
On 2023-01-21 20:12 +0530, Prasad Sankaran via buildroot spake thusly:
> The following errors are reported while generating numpy/core/_ [1]multiarray_umath.cpython-38-aarch64-linux-gnu.so using
> aarch64-buildroot-linux-gnu-gcc.
> Is there a way to avoid including AVX512 .s files from the compilation?
>
> numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:19: Error: unknown mnemonic pushq' -- pushq %rbp'
> numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:21: Error: unknown mnemonic movq' -- movq %rsp,%rbp'
> numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:24: Error: unknown mnemonic andq' -- andq $-64,%rsp'
> numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:25: Error: unknown mnemonic subq' -- subq $192,%rsp'
> numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:26: Error: unknown mnemonic vmovups' -- vmovups
> __svml_dacos_data_internal(%rip),%zmm7'
> numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:27: Error: unknown mnemonic vmovups' -- vmovups
> 64+__svml_dacos_data_internal(%rip),%zmm8'
> numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:30: Error: unknown mnemonic vmovups' -- vmovups
> 128+__svml_dacos_data_internal(%rip),%zmm11'
I was not able to reproduce such an error here, with the following
defconfig and master as of commit f090116066:
BR2_aarch64=y
BR2_TOOLCHAIN_EXTERNAL=y
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
BR2_PER_PACKAGE_DIRECTORIES=y
BR2_PACKAGE_PYTHON3=y
BR2_PACKAGE_PYTHON_NUMPY=y
Can you share a _minimal_ defconfig that exhibits the issue?
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Buildroot] Not able to build python-numpy 1.23.5 on buildroot
2023-01-21 15:18 ` Yann E. MORIN
@ 2023-01-25 15:36 ` Prasad Sankaran via buildroot
2023-01-29 19:03 ` Yann E. MORIN
0 siblings, 1 reply; 4+ messages in thread
From: Prasad Sankaran via buildroot @ 2023-01-25 15:36 UTC (permalink / raw)
To: Yann E. MORIN; +Cc: Archit Taneja, buildroot
[-- Attachment #1.1: Type: text/plain, Size: 13361 bytes --]
Hello Yann,
Sorry for the late reply. I have attached the defconfig which we use.
Ideally the AVX optimized SVML source files should be excluded for the
aarch64 target. But it is not happening.
Wondering if you could figure out how it works at your end.
This is the command generated by buildroot for linking numpy.
/home/prasad/work/buildroot/tfbuild/main/host/bin/aarch64-buildroot-linux-gnu-gcc
-shared -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
-Os -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/multiarray/argfunc.dispatch.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/umath/loops_unary_fp.dispatch.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/umath/loops_arithm_fp.dispatch.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/umath/loops_arithmetic.dispatch.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/umath/loops_minmax.dispatch.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/umath/loops_trigonometric.dispatch.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/umath/loops_umath_fp.dispatch.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/umath/loops_exponent_log.dispatch.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/umath/loops_hyperbolic.dispatch.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/umath/loops_modulo.dispatch.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/abstractdtypes.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/alloc.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/arrayobject.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/multiarray/arraytypes.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/array_coercion.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/array_method.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/array_assign_scalar.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/array_assign_array.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/arrayfunction_override.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/buffer.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/calculation.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/compiled_base.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/common.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/common_dtype.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/convert.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/convert_datatype.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/conversion_utils.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/ctors.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/datetime.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/datetime_strings.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/datetime_busday.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/datetime_busdaycal.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/descriptor.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/dlpack.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/dtypemeta.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/dragon4.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/dtype_transfer.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/multiarray/einsum.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/multiarray/einsum_sumprod.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/experimental_public_dtype_api.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/flagsobject.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/getset.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/hashdescr.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/item_selection.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/iterators.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/legacy_dtype_implementation.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/multiarray/lowlevel_strided_loops.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/mapping.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/methods.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/multiarraymodule.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/multiarray/nditer_templ.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/nditer_api.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/nditer_constr.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/nditer_pywrap.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/number.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/refcount.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/sequence.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/shape.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/scalarapi.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/multiarray/scalartypes.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/strfuncs.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/temp_elide.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/typeinfo.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/usertypes.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/vdot.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/textreading/conversions.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/textreading/field_types.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/textreading/growth.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/textreading/readtext.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/textreading/rows.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/textreading/stream_pyobject.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/textreading/str_to_int.o
build/temp.linux-x86_64-3.8/numpy/core/src/umath/umathmodule.o
build/temp.linux-x86_64-3.8/numpy/core/src/umath/reduction.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/umath/loops.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/umath/matmul.o
build/temp.linux-x86_64-3.8/numpy/core/src/umath/dispatching.o
build/temp.linux-x86_64-3.8/numpy/core/src/umath/legacy_array_method.o
build/temp.linux-x86_64-3.8/numpy/core/src/umath/wrapping_array_method.o
build/temp.linux-x86_64-3.8/numpy/core/src/umath/ufunc_object.o
build/temp.linux-x86_64-3.8/numpy/core/src/umath/extobj.o
build/temp.linux-x86_64-3.8/build/src.linux-x86_64-3.8/numpy/core/src/umath/scalarmath.o
build/temp.linux-x86_64-3.8/numpy/core/src/umath/ufunc_type_resolution.o
build/temp.linux-x86_64-3.8/numpy/core/src/umath/override.o
build/temp.linux-x86_64-3.8/numpy/core/src/umath/_scaled_float_dtype.o
build/temp.linux-x86_64-3.8/numpy/core/src/common/array_assign.o
build/temp.linux-x86_64-3.8/numpy/core/src/common/mem_overlap.o
build/temp.linux-x86_64-3.8/numpy/core/src/common/npy_argparse.o
build/temp.linux-x86_64-3.8/numpy/core/src/common/npy_hashtable.o
build/temp.linux-x86_64-3.8/numpy/core/src/common/npy_longdouble.o
build/temp.linux-x86_64-3.8/numpy/core/src/common/ucsnarrow.o
build/temp.linux-x86_64-3.8/numpy/core/src/common/ufunc_override.o
build/temp.linux-x86_64-3.8/numpy/core/src/common/numpyos.o
build/temp.linux-x86_64-3.8/numpy/core/src/common/npy_cpu_features.o
build/temp.linux-x86_64-3.8/numpy/core/src/common/cblasfuncs.o
build/temp.linux-x86_64-3.8/numpy/core/src/common/python_xerbla.o
build/temp.linux-x86_64-3.8/numpy/core/src/npysort/quicksort.o
build/temp.linux-x86_64-3.8/numpy/core/src/npysort/mergesort.o
build/temp.linux-x86_64-3.8/numpy/core/src/npysort/timsort.o
build/temp.linux-x86_64-3.8/numpy/core/src/npysort/heapsort.o
build/temp.linux-x86_64-3.8/numpy/core/src/npysort/radixsort.o
build/temp.linux-x86_64-3.8/numpy/core/src/npysort/selection.o
build/temp.linux-x86_64-3.8/numpy/core/src/npysort/binsearch.o
build/temp.linux-x86_64-3.8/numpy/core/src/multiarray/textreading/tokenize.o
build/temp.linux-x86_64-3.8/numpy/core/src/umath/clip.o
numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_acosh_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_acosh_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_asin_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_asin_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_asinh_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_asinh_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_atan2_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_atan2_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_atan_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_atan_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_atanh_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_atanh_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_cbrt_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_cbrt_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_cos_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_cos_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_cosh_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_cosh_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_exp2_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_exp2_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_exp_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_exp_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_expm1_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_expm1_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_log10_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_log10_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_log1p_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_log1p_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_log2_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_log2_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_log_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_log_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_pow_
d_la.s numpy/core/src/umath/svml/linux/avx512/svml_z0_pow_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_sin_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_sin_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_sinh_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_sinh_s_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_tan_d_la.s
numpy/core/src/umath/svml/linux/avx512/svml_z0_tan_s_la.s
-L/home/prasad/work/buildroot/tfbuild/main/host/aarch64-buildroot-linux-gnu/sysroot/usr/lib
-L/home/prasad/work/buildroot/tfbuild/main/host/aarch64-buildroot-linux-gnu/sysroot/usr/lib
-Lbuild/temp.linux-x86_64-3.8 -lnpymath -lopenblas -lopenblas -lm -o
build/lib.linux-x86_64-3.8/numpy/core/_
multiarray_umath.cpython-38-aarch64-linux-gnu.so
On Sat, Jan 21, 2023 at 8:48 PM Yann E. MORIN <yann.morin.1998@free.fr>
wrote:
> Prasad, All,
>
> On 2023-01-21 20:12 +0530, Prasad Sankaran via buildroot spake thusly:
> > The following errors are reported while generating numpy/core/_ [1]
> multiarray_umath.cpython-38-aarch64-linux-gnu.so using
> > aarch64-buildroot-linux-gnu-gcc.
> > Is there a way to avoid including AVX512 .s files from the compilation?
> >
> > numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:19: Error:
> unknown mnemonic pushq' -- pushq %rbp'
> > numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:21: Error:
> unknown mnemonic movq' -- movq %rsp,%rbp'
> > numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:24: Error:
> unknown mnemonic andq' -- andq $-64,%rsp'
> > numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:25: Error:
> unknown mnemonic subq' -- subq $192,%rsp'
> > numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:26: Error:
> unknown mnemonic vmovups' -- vmovups
> > __svml_dacos_data_internal(%rip),%zmm7'
> > numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:27: Error:
> unknown mnemonic vmovups' -- vmovups
> > 64+__svml_dacos_data_internal(%rip),%zmm8'
> > numpy/core/src/umath/svml/linux/avx512/svml_z0_acos_d_la.s:30: Error:
> unknown mnemonic vmovups' -- vmovups
> > 128+__svml_dacos_data_internal(%rip),%zmm11'
>
> I was not able to reproduce such an error here, with the following
> defconfig and master as of commit f090116066:
>
> BR2_aarch64=y
> BR2_TOOLCHAIN_EXTERNAL=y
> BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
> BR2_PER_PACKAGE_DIRECTORIES=y
> BR2_PACKAGE_PYTHON3=y
> BR2_PACKAGE_PYTHON_NUMPY=y
>
> Can you share a _minimal_ defconfig that exhibits the issue?
>
> Regards,
> Yann E. MORIN.
>
> --
>
> .-----------------.--------------------.------------------.--------------------.
> | Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics'
> conspiracy: |
> | +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___
> |
> | +33 561 099 427 `------------.-------: X AGAINST | \e/ There is
> no |
> | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v
> conspiracy. |
>
> '------------------------------^-------^------------------^--------------------'
>
[-- Attachment #1.2: Type: text/html, Size: 14283 bytes --]
[-- Attachment #2: sample_defconfig --]
[-- Type: application/octet-stream, Size: 12254 bytes --]
BR2_aarch64=y
BR2_cortex_a72_a53=y
# BR2_COMPILER_PARANOID_UNSAFE_PATH is not set
BR2_TOOLCHAIN_BUILDROOT_GLIBC=y
BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_4=y
BR2_GCC_VERSION_7_X=y
BR2_TOOLCHAIN_BUILDROOT_CXX=y
BR2_TOOLCHAIN_BUILDROOT_FORTRAN=y
BR2_INIT_SYSTEMD=y
BR2_SYSTEM_BIN_SH_BASH=y
BR2_LINUX_KERNEL=y
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="rockchip/rock960-model-ab-linux"
BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
BR2_PACKAGE_ALSA_UTILS=y
BR2_PACKAGE_ALSA_UTILS_AMIXER=y
BR2_PACKAGE_ALSA_UTILS_APLAY=y
BR2_PACKAGE_GSTREAMER1=y
BR2_PACKAGE_GST1_PYTHON=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_ADDER=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOTESTSRC=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_COMPOSITOR=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_ENCODING=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VIDEOCONVERT=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_GIO=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_OVERLAYCOMPOSITION=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_RAWPARSE=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_SUBPARSE=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_TCP=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VIDEOTESTSRC=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VIDEORATE=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_ALSA=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_OGG=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_OPUS=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_PANGO=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_THEORA=y
BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VORBIS=y
BR2_PACKAGE_GST1_PLUGINS_CW_AWB_AEB=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_JPEG=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PNG=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_BZ2=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_ZLIB=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_APETAG=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_AUDIOFX=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_AUDIOPARSERS=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_AUPARSE=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_AUTODETECT=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_DEBUGUTILS=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_DEINTERLACE=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_DTMF=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_EFFECTV=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_EQUALIZER=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_FLV=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_FLX=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_GOOM=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_GOOM2K1=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_ICYDEMUX=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_ID3DEMUX=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_IMAGEFREEZE=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_INTERLEAVE=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAW=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LEVEL=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MATROSKA=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MONOSCOPE=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MULTIFILE=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MULTIPART=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_REPLAYGAIN=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_RTSP=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_SHAPEWIPE=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_SMPTE=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_SPECTRUM=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_VIDEOBOX=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_VIDEOCROP=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_VIDEOFILTER=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_VIDEOMIXER=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_WAVENC=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_Y4M=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_LAME=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_MPG123=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_OSS=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_OSS4=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_SHOUT2=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_V4L2=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_V4L2_PROBE=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_CAIRO=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_FLAC=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_GDKPIXBUF=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_JACK=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_SOUPHTTPSRC=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_SPEEX=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_TAGLIB=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_TWOLAME=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_VPX=y
BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_WAVPACK=y
BR2_PACKAGE_GST1_PLUGINS_BAD=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_ACCURIP=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_ADPCMDEC=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_ADPCMENC=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AIFF=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_ASFMUX=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOFXBAD=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOLATENCY=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOMIXMATRIX=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUDIOVISUALIZERS=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_AUTOCONVERT=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_BAYER=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CAMERABIN2=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_COLOREFFECTS=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DEBUGUTILS=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DVBSUBOVERLAY=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DVDSPU=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_FACEOVERLAY=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_FESTIVAL=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_FIELDANALYSIS=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_FREEVERB=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_FREI0R=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_GAUDIEFFECTS=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_GEOMETRICTRANSFORM=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_GDP=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_ID3TAG=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_INTER=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_INTERLACE=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IVFPARSE=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_IVTC=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_JP2KDECIMATOR=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_JPEGFORMAT=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIBRFB=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MIDI=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPEGDEMUX=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPEGTSDEMUX=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPEGTSMUX=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPEGPSMUX=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MXF=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NETSIM=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_ONVIF=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PCAPPARSE=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PNM=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_PROXY=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RAWPARSE=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REMOVESILENCE=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTMP=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDP=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SEGMENTCLIP=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SIREN=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SMOOTH=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SPEED=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SUBENC=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TIMECODE=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOFILTERS=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOFRAME_AUDIOLEVEL=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOPARSERS=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VIDEOSIGNAL=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VMNC=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_Y4M=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_YADIF=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_ASSRENDER=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_BLUEZ=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_BZ2=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_CURL=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DASH=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DECKLINK=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DVB=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_FAAD=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_FBDEV=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_FDK_AAC=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HLS=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_KMS=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_LIBMMS=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DTLS=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_TTML=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPEG2ENC=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MUSEPACK=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_NEON=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_OPENJPEG=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_OPUS=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RSVG=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SBC=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SHM=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SNDFILE=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SRTP=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VOAACENC=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBP=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WEBRTC=y
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_X265=y
BR2_PACKAGE_GST1_PLUGINS_BAD_ZBAR=y
BR2_PACKAGE_GST1_PLUGINS_UGLY=y
BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_ASFDEMUX=y
BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_DVDLPCMDEC=y
BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_DVDSUB=y
BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_XINGMUX=y
BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_REALMEDIA=y
BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_DVDREAD=y
BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_MPEG2DEC=y
BR2_PACKAGE_GST1_PLUGINS_UGLY_PLUGIN_X264=y
BR2_PACKAGE_GST1_INTERPIPE=y
BR2_PACKAGE_GST1_LIBAV=y
BR2_PACKAGE_GST1_RTSP_SERVER=y
BR2_PACKAGE_GSTREAMER1_ROCKCHIP=y
BR2_PACKAGE_GSTREAMER1_ROCKCHIP_EXTRA=y
BR2_PACKAGE_VLC=y
BR2_PACKAGE_LSOF=y
BR2_PACKAGE_STRESS_NG=y
BR2_PACKAGE_FLEX=y
BR2_PACKAGE_LIBTOOL=y
BR2_PACKAGE_E2FSPROGS=y
BR2_PACKAGE_XORG7=y
BR2_PACKAGE_GPTFDISK=y
BR2_PACKAGE_GPTFDISK_GDISK=y
BR2_PACKAGE_GPTFDISK_SGDISK=y
BR2_PACKAGE_PARTED=y
BR2_PACKAGE_UBOOT_TOOLS=y
BR2_PACKAGE_LUA=y
BR2_PACKAGE_OPENJDK=y
BR2_PACKAGE_PYTHON3=y
BR2_PACKAGE_PYTHON3_PY_PYC=y
BR2_PACKAGE_PYTHON3_BZIP2=y
BR2_PACKAGE_PYTHON3_CODECSCJK=y
BR2_PACKAGE_PYTHON3_DECIMAL=y
BR2_PACKAGE_PYTHON3_OSSAUDIODEV=y
BR2_PACKAGE_PYTHON3_READLINE=y
BR2_PACKAGE_PYTHON3_SQLITE=y
BR2_PACKAGE_PYTHON3_XZ=y
BR2_PACKAGE_PYTHON_ABSL_PY=y
BR2_PACKAGE_PYTHON_ALSAAUDIO=y
BR2_PACKAGE_PYTHON_ARPREQ=y
BR2_PACKAGE_PYTHON_ASTUNPARSE=y
BR2_PACKAGE_PYTHON_AWSIOTPYTHONSDK=y
BR2_PACKAGE_PYTHON_BOTO3=y
BR2_PACKAGE_PYTHON_CHARDET=y
BR2_PACKAGE_PYTHON_CHARSET-NORMALIZER=y
BR2_PACKAGE_PYTHON_EVDEV=y
BR2_PACKAGE_PYTHON_FLATBUFFERS=y
BR2_PACKAGE_PYTHON_FIRE=y
BR2_PACKAGE_PYTHON_GAST=y
BR2_PACKAGE_PYTHON_LIBROSA=y
BR2_PACKAGE_PYTHON_MATPLOTLIB=y
BR2_PACKAGE_PYTHON_NETADDR=y
BR2_PACKAGE_PYTHON_NETIFACES=y
BR2_PACKAGE_PYTHON_NETWORKMANAGER=y
BR2_PACKAGE_PYTHON_OPT_EINSUM=y
BR2_PACKAGE_PYTHON_PACKAGING=y
BR2_PACKAGE_PYTHON_PIP=y
BR2_PACKAGE_PYTHON_PRCTL=y
BR2_PACKAGE_PYTHON_PSUTIL=y
BR2_PACKAGE_PYTHON_PYGAME=y
BR2_PACKAGE_PYTHON_PYTZ=y
BR2_PACKAGE_PYTHON_PYUDEV=y
BR2_PACKAGE_PYTHON_PYWAVELETS=y
BR2_PACKAGE_PYTHON_REQUESTS=y
BR2_PACKAGE_PYTHON_SETPROCTITLE=y
BR2_PACKAGE_PYTHON_SMBUS_CFFI=y
BR2_PACKAGE_PYTHON_SOUNDDEVICE=y
BR2_PACKAGE_PYTHON_SPP=y
BR2_PACKAGE_PYTHON_TYPING_EXTENSIONS=y
BR2_PACKAGE_PYTHON_V4L2=y
BR2_PACKAGE_PYTHON_VLC=y
BR2_PACKAGE_PYTHON_WATCHDOG=y
BR2_PACKAGE_PYTHON_WEBSOCKETS=y
BR2_PACKAGE_PYTHON_WHEEL=y
BR2_PACKAGE_PYTHON_WRAPT=y
BR2_PACKAGE_LADSPA_SDK=y
BR2_PACKAGE_LIBARCHIVE=y
BR2_PACKAGE_CA_CERTIFICATES=y
BR2_PACKAGE_LIBCONFIG=y
BR2_PACKAGE_OPENCV3=y
BR2_PACKAGE_OPENCV3_LIB_IMGCODECS=y
BR2_PACKAGE_OPENCV3_LIB_PHOTO=y
BR2_PACKAGE_OPENCV3_LIB_PYTHON=y
BR2_PACKAGE_OPENCV3_LIB_VIDEO=y
BR2_PACKAGE_OPENCV3_WITH_JPEG=y
BR2_PACKAGE_OPENCV3_WITH_PNG=y
BR2_PACKAGE_LIBIIO=y
BR2_PACKAGE_LIBIIO_BINDINGS_PYTHON=y
BR2_PACKAGE_LIBINPUT=y
BR2_PACKAGE_LIBV4L_UTILS=y
BR2_PACKAGE_MPP=y
BR2_PACKAGE_MPP_ALLOCATOR_DRM=y
BR2_PACKAGE_CURL=y
BR2_PACKAGE_LIBNET=y
BR2_PACKAGE_LIBRSYNC=y
BR2_PACKAGE_ZEROMQ=y
BR2_PACKAGE_LIBSELINUX=y
BR2_PACKAGE_CRDA=y
BR2_PACKAGE_DHCP=y
BR2_PACKAGE_DHCP_CLIENT=y
BR2_PACKAGE_DHCPCD=y
BR2_PACKAGE_IFTOP=y
BR2_PACKAGE_IFUPDOWN=y
BR2_PACKAGE_IPERF3=y
BR2_PACKAGE_IPROUTE2=y
BR2_PACKAGE_IPTABLES=y
BR2_PACKAGE_IW=y
BR2_PACKAGE_NETWORK_MANAGER=y
BR2_PACKAGE_NETWORK_MANAGER_TUI=y
BR2_PACKAGE_NETWORK_MANAGER_PPPD=y
BR2_PACKAGE_NMAP=y
BR2_PACKAGE_OPENRESOLV=y
BR2_PACKAGE_OPENSSH=y
BR2_PACKAGE_RSYNC=y
BR2_PACKAGE_SPOTIFY=y
BR2_PACKAGE_TCPDUMP=y
BR2_PACKAGE_TRACEROUTE=y
BR2_PACKAGE_VSFTPD=y
BR2_PACKAGE_WGET=y
BR2_PACKAGE_WPA_SUPPLICANT=y
BR2_PACKAGE_WPA_SUPPLICANT_CLI=y
BR2_PACKAGE_WPA_SUPPLICANT_WPA_CLIENT_SO=y
BR2_PACKAGE_WPA_SUPPLICANT_PASSPHRASE=y
BR2_PACKAGE_WPA_SUPPLICANT_DBUS_NEW=y
BR2_PACKAGE_BASH_COMPLETION=y
BR2_PACKAGE_GNUPG=y
BR2_PACKAGE_LOGROTATE=y
BR2_PACKAGE_SCREEN=y
BR2_PACKAGE_SUDO=y
BR2_PACKAGE_COREUTILS=y
BR2_PACKAGE_FLUENT_BIT=y
BR2_PACKAGE_HTOP=y
BR2_PACKAGE_IOTOP=y
BR2_PACKAGE_IRQBALANCE=y
BR2_PACKAGE_KEYUTILS=y
BR2_PACKAGE_NCDU=y
BR2_PACKAGE_SYSTEMD_RFKILL=y
BR2_PACKAGE_TAR=y
BR2_PACKAGE_UTIL_LINUX_RFKILL=y
BR2_PACKAGE_VIM=y
BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="rk3399"
BR2_PACKAGE_HOST_RKBIN=y
[-- Attachment #3: Type: text/plain, Size: 150 bytes --]
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Buildroot] Not able to build python-numpy 1.23.5 on buildroot
2023-01-25 15:36 ` Prasad Sankaran via buildroot
@ 2023-01-29 19:03 ` Yann E. MORIN
0 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2023-01-29 19:03 UTC (permalink / raw)
To: Prasad Sankaran; +Cc: Archit Taneja, buildroot
Prasad, All,
On 2023-01-25 21:06 +0530, Prasad Sankaran spake thusly:
> Sorry for the late reply. I have attached the defconfig which we use.
This is by far not a _minimal_ defconfig; it has a lot of packages
enabled.
Also, what version of Buildroot are you using? You have:
- gst1-plugins-bad libmms, removed in 202.02
- gcc 7.x and gst1-plugins-bad yadif, both removed in 2020.11,
- BR2_PACKAGE_CURL, renamed in 2020.02
- wpa-supplicant "new dbus", removed in 2019.11
So you are using a very old Buildroot. Please update to master and
try to reproduce the issue.
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-01-29 19:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-21 14:42 [Buildroot] Not able to build python-numpy 1.23.5 on buildroot Prasad Sankaran via buildroot
2023-01-21 15:18 ` Yann E. MORIN
2023-01-25 15:36 ` Prasad Sankaran via buildroot
2023-01-29 19:03 ` Yann E. MORIN
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox