summaryrefslogtreecommitdiff
path: root/utils/fprcp
diff options
context:
space:
mode:
authorpierre <pierre@3ad0048d-3df7-0310-abae-a5850022a9f2>2019-01-29 14:32:28 +0000
committerpierre <pierre@3ad0048d-3df7-0310-abae-a5850022a9f2>2019-01-29 14:32:28 +0000
commitfaf79127756e83ad4214821e69d9ea163eac7879 (patch)
treec347f37ecddec5f858771a05719277cd924d9512 /utils/fprcp
parentb92218109775f93c10507ad8f450573ba072d87b (diff)
downloadfpc-faf79127756e83ad4214821e69d9ea163eac7879.tar.gz
Disable some packages for avr-embedded and i8086-embedded targets
git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@41122 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'utils/fprcp')
-rw-r--r--utils/fprcp/fpmake.pp3
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/fprcp/fpmake.pp b/utils/fprcp/fpmake.pp
index d76b657dab..b7bf1ff5ed 100644
--- a/utils/fprcp/fpmake.pp
+++ b/utils/fprcp/fpmake.pp
@@ -25,6 +25,9 @@ begin
P.OSes := P.OSes - [palmos];
{ Program does not fit in 16-bit memory constraints }
P.OSes := P.OSes - [msdos,win16];
+ { avr-embedded and i8086-embedded have not floating point support by default }
+ if Defaults.CPU in [avr,i8086] then
+ P.OSes := P.OSes - [embedded];
P.Author := '<various>';
P.License := 'LGPL with modification';