天天看点

交叉编译-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      

继续阅读