Skip to content
Snippets Groups Projects
Commit 95a490d9 authored by Karl-Michael Schindler's avatar Karl-Michael Schindler
Browse files

Partial update

Still linker errors.
parent 640dfa63
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<ProjectOptions>
<Version Value="11"/>
<Version Value="12"/>
<General>
<Flags>
<CompatibilityMode Value="True"/>
</Flags>
<SessionStorage Value="InProjectDir"/>
<MainUnit Value="0"/>
<Title Value="EELS"/>
<Scaled Value="True"/>
<ResourceType Value="res"/>
......@@ -96,7 +98,6 @@
</PublishOptions>
<RunParams>
<FormatVersion Value="2"/>
<Modes Count="0"/>
</RunParams>
<RequiredPackages Count="2">
<Item1>
......@@ -151,7 +152,6 @@
<CodeGeneration>
<SmartLinkUnit Value="True"/>
<RelocatableUnit Value="True"/>
<TargetCPU Value="x86_64"/>
<TargetOS Value="darwin"/>
</CodeGeneration>
<Linking>
......@@ -160,7 +160,7 @@
</Debugging>
<Options>
<PassLinkerOptions Value="True"/>
<LinkerOptions Value="-lgfortran -L/opt/local/lib/gcc11 ../f90/doeels.o ../f90/usurlo.o ../f90/quanc8.o ../f90/fun.o ../f90/queels.o ../f90/fint1.o ../f90/fint2.o ../f90/fint3.o ../f90/surlos.o ../f90/seteps.o ../f90/phint.o ../f90/qrat.o ../f90/doboson.o ../f90/respon.o ../f90/sicot.o ../f90/sintr.o ../f90/rcffi.o ../f90/o1.o ../f90/o2.o"/>
<LinkerOptions Value="-lgfortran -L/opt/local/lib/gcc14 ../f90/doeels.o ../f90/usurlo.o ../f90/quanc8.o ../f90/fun.o ../f90/queels.o ../f90/fint1.o ../f90/fint2.o ../f90/fint3.o ../f90/surlos.o ../f90/seteps.o ../f90/phint.o ../f90/qrat.o ../f90/doboson.o ../f90/respon.o ../f90/sicot.o ../f90/sintr.o ../f90/rcffi.o ../f90/o.o"/>
<Win32>
<GraphicApplication Value="True"/>
</Win32>
......
......@@ -15,7 +15,7 @@ uses
begin
RequireDerivedFormResource := True;
Application.Scaled := True;
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TDiagrammForm, DiagrammForm);
......
<?xml version="1.0" encoding="UTF-8"?>
<CONFIG>
<ProjectSession>
<Version Value="11"/>
<Version Value="12"/>
<Units Count="11">
<Unit0>
<Filename Value="EELS.lpr"/>
<IsPartOfProject Value="True"/>
<CursorPos X="14" Y="18"/>
<CursorPos X="28" Y="18"/>
<UsageCount Value="202"/>
<Loaded Value="True"/>
</Unit0>
......@@ -18,8 +18,8 @@
<ResourceBaseClass Value="Form"/>
<IsVisibleTab Value="True"/>
<EditorIndex Value="1"/>
<TopLine Value="596"/>
<CursorPos X="81" Y="601"/>
<TopLine Value="595"/>
<CursorPos X="123" Y="610"/>
<UsageCount Value="202"/>
<Loaded Value="True"/>
<LoadedDesigner Value="True"/>
......@@ -217,14 +217,14 @@
</JumpHistory>
<RunParams>
<FormatVersion Value="2"/>
<Modes Count="0" ActiveMode=""/>
<Modes ActiveMode=""/>
</RunParams>
</ProjectSession>
<Debugging>
<Watches Count="1">
<Item1>
<Watches>
<Item>
<Expression Value="Top"/>
</Item1>
</Item>
</Watches>
</Debugging>
</CONFIG>
#!/bin/sh
DoExitAsm ()
{ echo "An error occurred while assembling $1"; exit 1; }
DoExitLink ()
{ echo "An error occurred while linking $1"; exit 1; }
OFS=$IFS
IFS="
"
/Library/Developer/CommandLineTools/usr/bin/ld -lgfortran -L/opt/local/lib/gcc14 ../f90/doeels.o ../f90/usurlo.o ../f90/quanc8.o ../f90/fun.o ../f90/queels.o ../f90/fint1.o ../f90/fint2.o ../f90/fint3.o ../f90/surlos.o ../f90/seteps.o ../f90/phint.o ../f90/qrat.o ../f90/doboson.o ../f90/respon.o ../f90/sicot.o ../f90/sintr.o ../f90/rcffi.o ../f90/o.o -framework Cocoa -order_file '/Users/michael/Developer/EELS2 git-svn/EELS2/source/Lazarus-GUI/symbol_order.fpc' -L. -o '/Users/michael/Developer/EELS2 git-svn/EELS2/source/Lazarus-GUI/EELS' `cat '/Users/michael/Developer/EELS2 git-svn/EELS2/source/Lazarus-GUI/link68209.res'` -filelist '/Users/michael/Developer/EELS2 git-svn/EELS2/source/Lazarus-GUI/linkfiles68209.res'
if [ $? != 0 ]; then DoExitLink ; fi
IFS=$OFS
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment