I am trying to static link lua into a FreePascal application. I have fixed all of the errors during the linking except this one. Undefined Symbol: __strtod

All of the other Undefined Symbols I was able to link in via libkernel32.a, libuser32.a and libmsvcr.a from the MinGW compiler which I used to compile the liblualib.a that I am linking in in place of using the dll.

I would like to have this static linked and not dynamic linked. So, would anyone happen to know which .a lib file ___strtod is defined in or know how I can search and find this out.

To my knowledge it is a C99 function and MinGW, GCC support it. So, I would think that it would be in one of the lib (.a) files that come with it.

Thanks,

link|improve this question
strtod was also described in C89 (with the same functionality as in C99). – pmg Dec 6 '11 at 17:51
feedback

2 Answers

It's part of the C library, libc. However I don't know you can statically link to it. (Are there yet systems which provide static versions of libc?)

Libc should be linked by default in a C program.

link|improve this answer
it seems that cygwin has a libc.a file, I linked it but it doesn't contain the ___strdot symbol. – gasdeveloper Dec 6 '11 at 18:28
feedback

Just create a make file that uses a static version of the library. The static libraries are normally much bigger than the dynamic ones. You could download newlib and compile the source directly with the lua runtime, I'm guessing that newlib works with MinGW.

I hope this helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.