Skip to content
This repository was archived by the owner on Jan 18, 2024. It is now read-only.

Commit 97c10f6

Browse files
committed
Merge pull request #1 from mmariani/i686
Support for x86 in addition to ARM
2 parents 3913376 + 677e353 commit 97c10f6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+154
-127088
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/config.log
2+
/.deps
3+
/thirdparty

buildall.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
#!/bin/bash
22
echo "Building all Py34a"
33

4+
set -e
5+
6+
export TARGET="i686-linux-android"
7+
48
arch=`uname -m`
59
if [ "$arch" == "i686" ]
610
then

bzip2-1.0.6/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.o
2+
*.a
3+
/bzip2
4+
/bzip2recover

bzip2-1.0.6/xbuild.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
export TARGET=arm-linux-androideabi
1+
set -e
2+
3+
TARGET=${TARGET:-"arm-linux-androideabi"}
24
pushd ../thirdparty
35
export TARGET_DIR=`pwd`
46
popd

gmp-5.0.2/.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
*.o
2+
*.lo
3+
*.la
4+
*.tmp
5+
Makefile
6+
7+
/.libs
8+
/config.h
9+
/config.log
10+
/config.m4
11+
/config.status
12+
/gen-fib
13+
/gmp-mparam.h
14+
/gmp.h
15+
/libtool
16+
/doc/gmp.info*

gmp-5.0.2/Makefile

Lines changed: 0 additions & 1451 deletions
This file was deleted.

0 commit comments

Comments
 (0)