Closed Thread
Results 1 to 5 of 5

Thread: Import Makefile settings to VS2005 IDE

  1. #1
    jjplaw is offline Newbie
    Join Date
    Jun 2009
    Posts
    8
    Rep Power
    0

    Import Makefile settings to VS2005 IDE

    Hi,

    I'm a newbie in this vast world of programming. I've been given some codes in C which are compiled & linked using makefile. I can compile the code using nmake from VS2005. Now i want to build the program in C++ VS2005 IDE.
    From a quick google search, there seems to be no automated functions in importing makefile settings to VS IDE.
    I tried to include all the necessary dependecies(header and lib files) stated in the makefile to VS but i get a lot of linking errors. I'm not even sure where to start looking to solve the issue. I hope the gurus can help me out.

    The makefile including two other related makefile is attached to this post.
    [1]makefile.mak
    [2]compiler.mak
    [3]options.mak



    In VS I've:
    [1] Create a new empty project
    [2] Add exisiting sources (c files and header files)
    [3] Additional Include Directories: ..../include and ..../src/make7
    [4] Additional Library Directories: ..../lib
    [5] Build project...

    I got 74 linker errors the VS output after attempted build. Example:
    Code:
    conmain.obj : error LNK2001: unresolved external symbol _MMSd_freeDsMemFunction
    Code:
    scl_cli.obj : error LNK2019: unresolved external symbol _TAM_parse_address referenced in function _ResolveServerAddress
    I've not dealt with makefiles before. I apologize if this post may sound very newbie style and amatuer-ish. I'm new but I'm willing to learn.

    Any advice and comment is greatly appreciated.

    jjplaw
    Attached Files Attached Files

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    Join Date
    Jul 2006
    Posts
    16,525
    Blog Entries
    75
    Rep Power
    144

    Re: Import Makefile settings to VS2005 IDE

    Make files create a lot of different settings, compiler options, linker options, etc. You would have to read the make files and recreate each setting for each file/project. Effectively, you have to replace ALL the logic of the make file in your project. This is not likely to be a trivial task.
    Programming is a branch of mathematics.
    My CodeCall Blog | My Personal Blog

  4. #3
    jjplaw is offline Newbie
    Join Date
    Jun 2009
    Posts
    8
    Rep Power
    0

    Re: Import Makefile settings to VS2005 IDE

    WingedPanther, Thanks for the info on makefiles.
    Could you give me some examples of what other settings in the makefile that are recreated in VS? Currently, i only know to add include directories for compiler options and add lib directories for linker options.

    [1] The source codes has 3 C files. According to makefile settings, one of the C file is compiled to generate an OBJ file with a different name; conmain.c==>tcpmain.obj
    Is this also one of the settings i have to recreate in VS? or it doesnt effect anything in VS?

    [2] The errors i get from VS IDE are all unresolved external symbols when linking. All the library files are already included in the additional lib directories option. Is there any additional option/settings in VS 2005 that can output more information of the build error?

    [3] From a google search, someone suggested to change the compiler options in VS to "Compiler as C Code" because i'm using a C++ compiler to compile C codes. Is this true? I tried it but it didnt work also.

    [4] In the makefile, there is a symbol @<<. What does it do? Is it two seperate symbols @ and <<? I cant seem to find the answer on google.

    Please advise.

    justin

  5. #4
    Join Date
    Jul 2006
    Posts
    16,525
    Blog Entries
    75
    Rep Power
    144

    Re: Import Makefile settings to VS2005 IDE

    Unfortunately, I'm not even close to an expert on VS, which has significantly different compiler/linker options than GCC. I would start with documentation on nmake, such as NMAKE Reference
    Programming is a branch of mathematics.
    My CodeCall Blog | My Personal Blog

  6. #5
    jjplaw is offline Newbie
    Join Date
    Jun 2009
    Posts
    8
    Rep Power
    0

    Re: Import Makefile settings to VS2005 IDE

    Thanks for your comments and advice.... There are so many things to learn about programming and so little time to do it (T_T)

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. error in webconfig after converting vs2005 website to vs2010
    By mohd in forum ASP, ASP.NET and Coldfusion
    Replies: 0
    Last Post: 12-15-2010, 08:49 PM
  2. error in webconfig after converting vs2005 website to vs2010
    By zeki in forum ASP, ASP.NET and Coldfusion
    Replies: 1
    Last Post: 11-03-2010, 01:30 AM
  3. please help with the Makefile
    By alice06 in forum C and C++
    Replies: 4
    Last Post: 10-07-2010, 05:42 AM
  4. how to use makefile?
    By simplytuff in forum C and C++
    Replies: 4
    Last Post: 09-04-2010, 08:04 AM
  5. VB6.0 to VS2005
    By raviguda in forum Visual Basic Programming
    Replies: 2
    Last Post: 04-17-2009, 01:26 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts