fpc/utils/fpcmkcfg/fppkg.inc
tom_at_work acbc94e0fd - 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: branches/targetandroid@21061 -
2012-04-26 09:36:42 +00:00

18 lines
561 B
PHP

{$ifdef Delphi}
const fppkg : array[0..1] of string[240]=(
{$else Delphi}
const fppkg : array[0..1,1..240] of char=(
{$endif Delphi}
'[Defaults]'#010+
'ConfigVersion=4'#010+
'LocalRepository=%LocalRepository%'#010+
'BuildDir={LocalRepository}build/'#010+
'ArchivesDir={LocalRepository}archives/'#010+
'CompilerConfigDir=%CompilerConfigDir%'#010+
'RemoteMirrors=http://www.freepascal.org/repository/mirrors.xml'#010+
'Remote','Repository=auto'#010+
'CompilerConfig=default'#010+
'FPMakeCompilerConfig=default'#010+
'Downloader=lnet'#010
);