Skip to content

Commit

Permalink
First drobofs version
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardopadilha committed Jun 27, 2015
1 parent 85dde46 commit 8ee85fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ local URL="https://pypi.python.org/packages/source/c/cryptography/${FILE}"
local XPYTHON="${HOME}/xtools/python2/${DROBO}"
local BASE="${PWD}"
export QEMU_LD_PREFIX="${TOOLCHAIN}/${HOST}/libc"
export _PYTHON_HOST_PLATFORM="linux-armv5tejl"

_download_tgz "${FILE}" "${URL}" "${FOLDER}"
pushd "target/${FOLDER}"
Expand Down
8 changes: 4 additions & 4 deletions crosscompile.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export DROBO="5n"
export DROBO="fs"
export TOOLCHAIN="${BUILD_TOOLCHAIN:-${HOME}/xtools/toolchain/${DROBO}}"
export ARCH="armv7-a"
export HOST="arm-marvell-linux-gnueabi"
export ARCH="armv5te"
export HOST="arm-none-linux-gnueabi"
export PATH="${TOOLCHAIN}/bin:~/bin:$PATH"
export CFLAGS="-march=${ARCH} -mcpu=marvell-pj4 -mfpu=vfpv3-d16 -mfloat-abi=softfp"
export CFLAGS="-march=${ARCH} -mtune=arm926ej-s"
export CXXFLAGS="${CFLAGS}"
export CC="${TOOLCHAIN}/bin/${HOST}-gcc"
export CXX="${TOOLCHAIN}/bin/${HOST}-g++"
Expand Down

0 comments on commit 8ee85fa

Please sign in to comment.