mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-08 13:51:49 +01:00
o support for the new codepage-aware ansistrings in the jvm branch
o empty ansistrings are now always represented by a nil pointer rather than
by an empty string, because an empty string also has a code page which
can confuse code (although this will make ansistrings harder to use
in Java code)
o more string helpers code shared between the general and jvm rtl
o support for indexbyte/word in the jvm rtl (warning: first parameter
is an open array rather than an untyped parameter there, so
indexchar(pcharvar^,10,0) will be equivalent to
indexchar[pcharvar^],10,0) there, which is different from what is
intended; changing it to an untyped parameter wouldn't help though)
o default() support is not yet complete
o calling fpcres is currently broken due to limitations in
sysutils.executeprocess() regarding handling unix quoting and
the compiler using the same command lines for scripts and directly
calling external programs
o compiling the Java compiler currently requires adding ALLOW_WARNINGS=1
to the make command line
git-svn-id: branches/jvmbackend@20887 -
51 lines
752 B
Makefile
51 lines
752 B
Makefile
#
|
|
# Makefile.fpc for Free Pascal Runtime Library
|
|
#
|
|
|
|
[package]
|
|
name=rtl
|
|
version=2.7.1
|
|
|
|
[target]
|
|
dirs_linux=linux
|
|
dirs_win32=win32
|
|
dirs_wince=wince
|
|
dirs_win64=win64
|
|
dirs_go32v2=go32v2
|
|
dirs_go32v1=go32v1
|
|
dirs_os2=os2
|
|
dirs_emx=emx
|
|
dirs_freebsd=freebsd
|
|
dirs_darwin=darwin
|
|
dirs_iphonesim=darwin
|
|
dirs_beos=beos
|
|
dirs_haiku=haiku
|
|
dirs_amiga=amiga
|
|
dirs_netbsd=netbsd
|
|
dirs_openbsd=openbsd
|
|
dirs_macos=macos
|
|
dirs_morphos=morphos
|
|
dirs_netware=netware
|
|
dirs_netwlibc=netwlibc
|
|
dirs_palmos=palmos
|
|
dirs_solaris=solaris
|
|
dirs_gba=gba
|
|
dirs_nds=nds
|
|
dirs_symbian=symbian
|
|
dirs_embedded=embedded
|
|
dirs_nativent=nativent
|
|
dirs_wii=wii
|
|
dirs_aix=aix
|
|
dirs_java=java
|
|
dirs_jvm_android=android/jvm
|
|
|
|
[install]
|
|
fpcpackage=y
|
|
createpackagefpc=y
|
|
|
|
[default]
|
|
fpcdir=..
|
|
|
|
[rules]
|
|
.NOTPARALLEL:
|