Hi Yuvi,
crt{i,n,begin,end,0,1}.o are runtime objects that are OS-dependent. Are you compiling for baremetal or arm-linux?
If baremetal, you’d need to put your core startup code in crt1.o, and create stub objects for the rest so the linker doesn’t complain (touch test.c; clang –march=armv7 –c –o test.o test.c; cp test.o crt{i,n,begin,end}.o).
Cheers,
James
_______________________________________________
LLVM Developers mailing list
LLV...@cs.uiuc.edu http://llvm.cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev