-
Notifications
You must be signed in to change notification settings - Fork 4
Compile TVHeadEnd
Leandro edited this page Mar 10, 2021
·
3 revisions
cd /opt
git clone https://github.com/tvheadend/tvheadend.git
cd tvheadend
# Configure
export CFLAGS="-march=armv7ve -mtune=cortex-a53 -mfloat-abi=hard -mfpu=neon-vfpv4 -mvectorize-with-neon-quad"
export CPPFLAGS=$CFLAGS
./configure --prefix=/usr \
--enable-omx \
--enable-libav \
--enable-tvhcsa \
--enable-hdhomerun_client \
--enable-cwc \
--disable-dvben50221 \
--disable-avahi \
--disable-inotify \
--disable-v4l \
--disable-ffmpeg_static \
--disable-libx264_static \
--disable-libx265_static \
--disable-libvpx_static \
--disable-libtheora_static \
--disable-libvorbis_static \
--disable-libfdkaac_static \
--disable-ddci \
--disable-libx264 \
--disable-libx265 \
--disable-libopus
# Compile
make
# Install
make install