mpv-player / mpv-build

🔨 Helper scripts to compile mpv on Linux
http://mpv.io
403 stars 104 forks source link

No binary after successful(?) rebuild on Fedora #218

Closed AaronStiff closed 1 year ago

AaronStiff commented 1 year ago

After installing all the dependencies required and getting what I thought was a successful rebuild, there's no ./mpv/build/mpv, and sudo ./install obviously fails.

Logs: logs.txt

CounterPillow commented 1 year ago

You didn't have a successful build.

nasm/yasm not found or too old. Use --disable-x86asm for a crippled build.

install nasm or yasm.

AaronStiff commented 1 year ago

Ah, I see. Thought (read:wished) that was just a warning :) Thanks!

jeeb commented 1 year ago

Recent nasm is generally recommended for FFmpeg, so go that route :) .

AaronStiff commented 1 year ago

yasm-devel is in the Fedora package repo, but I'm not seeing a devel version of nasm...

CounterPillow commented 1 year ago

You don't need a devel version, you need the actual nasm binary which will be in the regular package.

AaronStiff commented 1 year ago

Cool, thanks!