[fpc-pascal] Building trunk

Florian Klämpfl florian at freepascal.org
Sun Nov 25 15:18:15 CET 2018


Am 25.11.2018 um 14:30 schrieb Colin Western:
> What generates the header? Is it fpc, an external linker or the loader?
> 

Can you please run the following C program:

#include <sys/auxv.h>
#include <stdio.h>

int main()
{
  printf("AT_PHDR: %lx\n",getauxval(AT_PHDR));
  printf("AT_PHNUM: %lx\n",getauxval(AT_PHNUM));
}

and include also the relevant part of an objdump?



More information about the fpc-pascal mailing list