Hello,
I compile the system.pas as follows:
fpc.exe -dDLLEXPORT -dLANGDEU -dDLLDEBUG -n -B -Twin64 -FE. -Fu. -O3 -a -Anasmwin64 system.pas
nasm -fwin64 -osystem.o system.s
Then in my main Module, I include the system.o with:
{$L system.o}
But then, I get multiple Symbols defined Error's ...
So, how can I prevent this Error's and how can I use {$L ...} correctly ?