fpc/tests/test/tweaklib4.pp
Jonas Maebe a23630260b + "weakexternal" support for imported procedures and variables.
the syntax is exactly the same as for "external", except for
    the keyword. It is currently only active for Darwin targets.
    It should also work at least for Linux targets, but only with
    the GNU assembler (which is why it is not activated there)
  + test for this functionality

git-svn-id: trunk@12009 -
2008-11-01 18:38:32 +00:00

17 lines
195 B
ObjectPascal

{ %target=darwin }
uses
sysutils;
var
res: longint;
begin
res:=executeprocess('./tweaklib2','1');
if (res<>0) then
begin
writeln('error: ',res);
halt(1);
end;
end.