-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathenvMIPS.sh
25 lines (21 loc) · 1021 Bytes
/
envMIPS.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh
# use:
# source ./env.sh
#
# CFLAGS as used for
###############################################################################
# MIPS based BroadCom Chips
export CPU_FLAGS=""
#export CXXPREFIX=~/vu/opt/toolchains/stbgcc-6.3-1.8/bin/mips-linux-
#export CXXSUFFIX=
#export CXX=~/vu/opt/toolchains/stbgcc-6.3-1.8/bin/mips-linux-c++
#export CPP=~/vu/opt/toolchains/stbgcc-6.3-1.8/bin/mips-linux-cpp
#export CC=~/vu/opt/toolchains/stbgcc-6.3-1.8/bin/mips-linux-gcc
#export PYTHON_CPPFLAGS=~/vu/opt/toolchains/stbgcc-6.3-1.8/python-runtime/include/python2.7
export CXXPREFIX=~/vu/opt/toolchains/stbgcc-8.3-0.4/bin/mips-linux-
export CXXSUFFIX=
export CXX=~/vu/opt/toolchains/stbgcc-8.3-0.4/bin/mips-linux-c++
export CPP=~/vu/opt/toolchains/stbgcc-8.3-0.4/bin/mips-linux-cpp
export CC=~/vu/opt/toolchains/stbgcc-8.3-0.4/bin/mips-linux-gcc
export PYTHON_CPPFLAGS=~/vu/opt/toolchains/stbgcc-8.3-0.4/python-runtime/include/python2.7
###############################################################################