diff options
author | tom_at_work <tom_at_work@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2012-04-26 09:36:42 +0000 |
---|---|---|
committer | tom_at_work <tom_at_work@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2012-04-26 09:36:42 +0000 |
commit | cf20e61e7c77c679a064b74dfabb58a10e671689 (patch) | |
tree | 6896bd1fb0ad9a0aba2ee7bafedb2c9b07753d26 /packages/gnome1 | |
parent | 692f5694853305ab3f82cba9e5bce6ffa4510021 (diff) | |
download | fpc-cf20e61e7c77c679a064b74dfabb58a10e671689.tar.gz |
- initial support for the android/arm target in the compiler; resulting .so's can be used for Android/ARM app development.
- basic rtl support using system calls
- fp(c)make/fppkg/makefile support
todo:
- revisit systems/t_android.pas: mostly duplicate with t_linux.pas, containing
lots of unnecessary code
- revisit rtl changes
- android ndk header translation import
- better app build/packaging support
- android/x86 support
git-svn-id: http://svn.freepascal.org/svn/fpc/branches/targetandroid@21061 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/gnome1')
-rw-r--r-- | packages/gnome1/fpmake.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/gnome1/fpmake.pp b/packages/gnome1/fpmake.pp index 71a772d023..125cd2beec 100644 --- a/packages/gnome1/fpmake.pp +++ b/packages/gnome1/fpmake.pp @@ -17,7 +17,7 @@ begin P.Directory:='gnome1'; {$endif ALLPACKAGES} P.Version:='2.7.1'; - P.OSes:=AllUnixOSes-[darwin,iphonesim]; + P.OSes:=AllUnixOSes-[darwin,iphonesim,Android]; if Defaults.CPU<>arm then P.OSes := P.OSes + [darwin]; |