mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-29 03:53:39 +02:00

- 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 -
18 lines
561 B
PHP
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
|
|
);
|