Page 1 of 1

dav1d Error

Posted: 29 Dec 2018 10:11
by pony
I encountered this issue when I Compile VLC .I don't know how to do.please ,give me some advices.thank you.

Code: Select all

Version: 0.37.1 Source dir: /home/maxl/vlc/contrib/win32/dav1d Build dir: /home/maxl/vlc/contrib/win32/dav1d/build Build type: cross build Meson encountered an error in file meson_options.txt, line 3, column 0: Unknown type array. ../../contrib/src/dav1d/rules.mak:31: recipe for target '.dav1d' failed make: *** [.dav1d] Error 1

Re: dav1d Error

Posted: 29 Dec 2018 10:28
by RĂ©mi Denis-Courmont
Seems that you need a newer meson version.

Re: dav1d Error

Posted: 02 Jan 2019 03:10
by pony
I installed the Version 0.49 .but it is still show me "Version: 0.37.1".I need link to the new version?

Re: dav1d Error

Posted: 02 Jan 2019 17:32
by unidan
Hi, how did you install meson ?

You can use the one from the extras/tools:

Code: Select all

cd extras/tools && ./bootstrap && make .meson

Re: dav1d Error

Posted: 03 Jan 2019 07:34
by pony
I find the command "pip3 install --user meson "from internet . it is highly possible that I made a mistake.thanks for your help.

Re: dav1d Error

Posted: 03 Jan 2019 09:43
by unidan

Code: Select all

pip3 install --user meson
means that it's installed in user directory but not available globally, you need to use something like

Code: Select all

python -m meson --user-base
or adapt your PATH environment variable.