habe beschlossen, nach Weihnachten weiter an meinem "Projekt" zu "arbeiten" und bekomme jetzt folgende Meldung beim compilieren:
Code: Alles auswählen
Projekt kompilieren, Ziel: roadload: Erfolg, Warnungen: 2
roadload.lpr(22,1) Warning: "crtbeginS.o" not found, this will probably cause a linking failure
roadload.lpr(22,1) Warning: "crtendS.o" not found, this will probably cause a linking failure
Code: Alles auswählen
[photor@Picard ~]$ pacman -Ss pascal
community/fpc 3.0.0-1 [Installiert]
The Free Pascal Compiler is a Turbo Pascal 7.0 and Delphi compatible 32bit
Pascal Compiler. It comes with fully TP 7.0 compatible run-time library.
community/fpc-src 3.0.0-1 [Installiert]
Sources for the FreePascal compiler (required by the Lazarus IDE)
community/lazarus 1.4.4-2 [Installiert]
Delphi-like IDE for FreePascal common files
community/lazarus-gtk2 1.4.4-2 [Installiert]
Delphi-like IDE for FreePascal gtk2 version
Hier noch der Code zum .lpr-File, der angemeckert wird.
Code: Alles auswählen
program roadload;
{$mode objfpc}{$H+}
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, tachartlazaruspkg,
rl_main, rl_help, rl_data, rl_parameter, vinfo
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TFormParameter, FormParameter);
Application.Run;
end.
Photor