> Does the compiler leave a leftover object file after this?
> echo 'int main () { }' > conftest.c
> cc conftest.c
Yes, with my current cc this will give
"a.out" (executable)
"conftest.o" (object file)
With the unmodified SDK version of cc it gives only
"a.out" (executable)
> or this?
> echo 'int main () { }' > conftest.c
> cc -o conftest conftest.c
Yes, this will give
"conftest" (executable)
"conftest.o" (object file)
-----------------------------------------
Clearly, my current cc leaves a stray object file.
I haven't noticed this before.
Many thanks Ralf!!
I will correct this and run the tests again to see if it solves the problem.
Thanks
Jerker