mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 23:09:18 +02:00
+ dmmy code for target that do not support library
This commit is contained in:
parent
17d4e0c500
commit
f6b9436ebf
@ -1,3 +1,12 @@
|
||||
{$ifdef win32}
|
||||
{$define supported}
|
||||
{$endif win32}
|
||||
{$ifdef linux}
|
||||
{$define supported}
|
||||
{$endif linux}
|
||||
|
||||
{$ifdef supported}
|
||||
|
||||
library bug;
|
||||
|
||||
const
|
||||
@ -16,3 +25,8 @@ exports
|
||||
|
||||
begin
|
||||
end.
|
||||
{$else supported}
|
||||
begin
|
||||
Writeln('No library for that target');
|
||||
end.
|
||||
{$endif supported}
|
||||
|
Loading…
Reference in New Issue
Block a user