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

  • Follow


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-
0
Reply jiing.deng (39) 4/12/2005 9:25:20 PM

In article <b7b95676.0504121325.6015e452@posting.google.com>,
jiing <jiing.deng@gmail.com> wrote:
>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.
-- 
   "No one has the right to destroy another person's belief by
   demanding empirical evidence."            -- Ann Landers
0
Reply roberson2 (8067) 4/12/2005 9:41:50 PM


On 12 Apr 2005 14:25:20 -0700, jiing wrote:

>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.


-- 
There are 10 types of people in the world.
Those who understand binary and those who don't.
0
Reply EMSMJFYLKACB (4) 4/12/2005 9:46:02 PM

On 12 Apr 2005 14:25:20 -0700, in comp.lang.c , jiing.deng@gmail.com
(jiing) wrote:

>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. 


-- 
Mark McIntyre
CLC FAQ <http://www.eskimo.com/~scs/C-faq/top.html>
CLC readme: <http://www.ungerhu.com/jxh/clc.welcome.txt>

----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----
0
Reply markmcintyre (4547) 4/12/2005 10:03:58 PM

jiing wrote:

> 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
0
Reply foreignpigdogAThotmailDOTcom (3) 4/13/2005 4:10:46 AM

On Wed, 13 Apr 2005 00:10:46 -0400, in comp.lang.c , fpd
<foreignpigdogAThotmailDOTcom@nospam.com> wrote:

>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. 

-- 
Mark McIntyre
CLC FAQ <http://www.eskimo.com/~scs/C-faq/top.html>
CLC readme: <http://www.ungerhu.com/jxh/clc.welcome.txt>
0
Reply markmcintyre (4547) 4/13/2005 9:38:23 PM

5 Replies
36 Views

(page loaded in 0.102 seconds)

Similiar Articles:
















6/24/2012 12:42:53 PM


Reply: