|
Prev: istream& problem
Next: string to expression
From: fermineutron on 22 Sep 2006 15:35 I created a program whch needs to be linked with an object file that i created in assembly. When i try to link my compiled C code with the object file from assembly it prompts me for stdio library to be linked with. where is it usualy stored? I did filesearch of my C partition for stdio.lib but got 0 results. Please lelp. thanks ahead.
From: fermineutron on 22 Sep 2006 15:59 Having not dound the stdio.lib in my system, i guess it is well hidden! Googled for it and did not find a download link either, LOL sad to the point of being funny.
From: fermineutron on 22 Sep 2006 18:19 I am going off for couple hours, can someone pls post a download link to stdio.lib file containig the standard C stdio library. I need to link to fprintf and fgets functions. Thanks ahead. Naturally i need the PC library, i dont thik they are different for different OSes but just in case, I am using win xp.
From: Jack Klein on 22 Sep 2006 18:22 On 22 Sep 2006 12:35:05 -0700, "fermineutron" <free4trample(a)yahoo.com> wrote in alt.comp.lang.learn.c-c++: > I created a program whch needs to be linked with an object file that i > created in assembly. When i try to link my compiled C code with the > object file from assembly it prompts me for stdio library to be linked > with. where is it usualy stored? I did filesearch of my C partition > for stdio.lib but got 0 results. > > Please lelp. thanks ahead. You need to ask this in a group that supports your particular compiler. The workings of things like libraries, and also of things like using assembly language with C, are compiler specific and not defined by the language itself. -- Jack Klein Home: http://JK-Technology.Com FAQs for comp.lang.c http://c-faq.com/ comp.lang.c++ http://www.parashift.com/c++-faq-lite/ alt.comp.lang.learn.c-c++ http://www.contrib.andrew.cmu.edu/~ajo/docs/FAQ-acllc.html
From: fermineutron on 22 Sep 2006 22:14
> You need to ask this in a group that supports your particular > compiler. The workings of things like libraries, and also of things > like using assembly language with C, are compiler specific and not > defined by the language itself. > I already know how to integrate the asm into C, i just need the stdio library file and since filesearch did not find anything simmilar to it on my system, i figured its hidden inside of another archive. I was hoping that someone in this group can post a download link to that library, it seems that getting it from internet is going to be easier then locating it on my system. Best Regards |