2025년 7월 23일 수요일

TI AM69 ffmpeg build

 $ source /opt/ti-processor-sdk-linux-am69-sk-10_00_07_06/linux-devkit/environment-setup


$ ./configure --prefix=/home/kimdh/work/mingw/build/ffmpeg-3.3.3/ffmpeg_am69 --enable-shared --disable-static --enable-gpl --enable-cross-compile --arch=arm64 --target-os=linux --cross-prefix=aarch64-oe-linux- --sysroot=$SDKTARGETSYSROOT --pkgconfigdir=$PKG_CONFIG_SYSROOT_DIR --pkg-config=/opt/ti-processor-sdk-linux-am69-sk-10_00_07_06/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/pkg-config --disable-doc


make 

make install

2025년 7월 1일 화요일

Qt 리눅스 빌드

sudo apt-get install -y \

    libx11-xcb-dev \

    libxcb1-dev \

    libxcb-render0-dev \

    libxcb-shm0-dev \

    libxcb-keysyms1-dev \

    libxcb-image0-dev \

    libxcb-icccm4-dev \

    libxcb-sync-dev \

    libxcb-xfixes0-dev \

    libxcb-shape0-dev \

    libxcb-randr0-dev \

    libxcb-render-util0-dev \

    libxrender-dev \

    libxcb-xinerama0-dev


mkdir build && cd build


 ../configure \

    -platform linux-g++ \

    -prefix /home/kimdh/Qt-5.15.2 \

    -opensource \

    -confirm-license \

    -release \

    -gstreamer \

-opengl desktop \

    -optimized-qmake \

    -nomake tests \

    -nomake examples \

-skip qtandroidextras \

-skip qtconnectivity \

-skip qtwebchannel \

    -skip qtwebengine \

-skip qtwebsockets \

    -skip qtactiveqt \

    -skip qtandroidextras \

    -skip qtdatavis3d \

    -skip qtgamepad \

    -skip qtlocation \

    -skip qtlottie \

    -skip qtmacextras \

    -skip qtpurchasing \

    -skip qtremoteobjects \

    -skip qtscript \

    -skip qtwebglplugin \

    -skip qtwebview \

    -skip qtspeech \

    -skip qtserialport \

    -skip qtserialbus    


make

make install