Is there any tool to transfer C/C++ source code to a lib file?

J

jiing

Is there any tool (or how to) to transfer C/C++ source code files to a lib file?

I'am trying to use visual studio .Net

and how to transfer C/C++ source code files to a dynamic linking library(DLL)?

thanks in advance.

-jiing-
 
W

Walter Roberson

Is there any tool (or how to) to transfer C/C++ source code files to a lib file?
I'am trying to use visual studio .Net
and how to transfer C/C++ source code files to a dynamic linking library(DLL)?

What would you -do- with them in a DLL? You seldom want -source-
code files in a dynamic library: you usually want the -compiled-
object files in the dynamic library.


Anyhow, it sounds like you should be asking this question in a
Microsoft software development newsgroup. comp.lang.c prefers to keep
out of implementation-dependant topics.
 
C

Chiron Paixos

Is there any tool (or how to) to transfer C/C++ source code files to a lib file?

Yes these tools were called "compiler" and "linker". Later the
evolution created IDEs with little project properties telling the
build-system of the IDE what to create (EXEcutable, LIBrary, DLL).
*SCNR*
I'am trying to use visual studio .Net
I won't comment on this
and how to transfer C/C++ source code files to a dynamic linking library(DLL)?

http://www.math.ucsd.edu/~sbuss/CourseWeb/CSE167_2004F/CreateNetProject.html
http://www.c-sharpcorner.com/2/pr12.asp
http://msdn.microsoft.com/library/en-us/vccore98/html/_core_create_a_win32_dll.asp
http://www.devhood.com/tutorials/tutorial_details.aspx?tutorial_id=617

might be interesting to read.
 
M

Mark McIntyre

Is there any tool (or how to) to transfer C/C++ source code files to a lib file?
and how to transfer C/C++ source code files to a dynamic linking library(DLL)?

This is the function of a C compiler and linker. If this is unclear to
you, you need to go back to the basics, and try to understand what a
compiler toolset is for.
 
F

fpd

jiing said:
Is there any tool (or how to) to transfer C/C++ source code files to a lib
file?

I'am trying to use visual studio .Net

and how to transfer C/C++ source code files to a dynamic linking
library(DLL)?

thanks in advance.

-jiing-

Do not know about source code, but Borland has IMPLIB which imports LIB to
DLL. Example:

implib dest.dll source.lib
 
M

Mark McIntyre

Do not know about source code, but Borland has IMPLIB which imports LIB to
DLL. Example:

implib dest.dll source.lib

this is wildly offtopic, and you should continue this in a borland
group,. but FWIW I don't think that implib does any such thing, it
creates an import library from the DLL export references.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top