天天看點

交叉編譯-ntfs-3g

說明

ntfs-3g 能使linux使用ntfs格式的硬碟

編譯

wget http://tuxera.com/opensource/ntfs-3g_ntfsprogs-2014.2.15.tgz
tar -xvf ntfs-3g_ntfsprogs-2014.2.15.tgz      
#!/bin/sh
set -e

PATH_INSTALL=$(pwd)/install
./configure CC=arm-hisiv400-linux-gcc \
    --host=aarch64-himix100-linux \
    --prefix=$PATH_INSTALL \
    --exec-prefix=$PATH_INSTALL \
    --host=arm-linux

sudo make -j12
sudo make install      

繼續閱讀