mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-05 06:19:09 +02:00
Disable jvm-android and jvm-java targets for fprcp, h2pas and tply packages because they use memory allocation or fpc_get_output
git-svn-id: trunk@41106 -
This commit is contained in:
parent
d1878fe5b2
commit
d2a04366d4
@ -16,6 +16,11 @@ begin
|
||||
begin
|
||||
P:=AddPackage('utils-fprcp');
|
||||
P.ShortName:='fprcp';
|
||||
{ java and jvm-android do not support
|
||||
getmem/freemem and new/dispose used in
|
||||
these sources }
|
||||
if Defaults.CPU=jvm then
|
||||
P.OSes := P.OSes - [java,android];
|
||||
|
||||
P.Author := '<various>';
|
||||
P.License := 'LGPL with modification';
|
||||
|
@ -16,6 +16,10 @@ begin
|
||||
begin
|
||||
P:=AddPackage('utils-h2pas');
|
||||
P.ShortName:='h2pas';
|
||||
{ java and jvm-android do not support
|
||||
fpc_get_output used in these sources }
|
||||
if Defaults.CPU=jvm then
|
||||
P.OSes := P.OSes - [java,android];
|
||||
|
||||
P.Author := '<various>';
|
||||
P.License := 'LGPL with modification';
|
||||
|
@ -17,6 +17,10 @@ begin
|
||||
begin
|
||||
P:=AddPackage('utils-lexyacc');
|
||||
P.ShortName:='tply';
|
||||
{ java and jvm-android do not support
|
||||
fpc_get_output used in these sources }
|
||||
if Defaults.CPU=jvm then
|
||||
P.OSes := P.OSes - [java,android];
|
||||
|
||||
P.Author := '<various>';
|
||||
P.License := 'LGPL with modification';
|
||||
|
Loading…
Reference in New Issue
Block a user