summaryrefslogtreecommitdiff
path: root/make-mips.sh
blob: a6f64e933c01171de3b7befffc9c4fd24dc6d83f (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

export PATH="/home/mcrute/buildroot-2017.05.1/output/host/usr/bin/:$PATH"

if ! grep 'CC = mips-buildroot-linux-uclibc-gcc' Makefile >/dev/null 2>&1; then
    make clean
    ./configure --build x86_64-linux-gnu --host mips-buildroot-linux-uclibc --enable-debug
fi
make