vote up 0 vote down star
2

I've done a decent search, but can't seem to find a way to get Visual Studio 2008 to use a unix Makefile, or even to create some MSVC compatible equivalent from the Makefile. Does anyone have ideas or similar issues?

Note: I already know the benefits/drawbacks of using Makefiles or not, and I don't want to hear your opinion. All I'm interested in right now is creating a Windows library from some originally unix code which only has a Makefile, and getting something functional out of it.

TIA.

flag

Can you see what compiler it is using? – Daniel A. White Aug 4 at 13:21
The existing makefile uses gcc. – Justin Aug 4 at 13:25

4 Answers

vote up 2 vote down check

You can also use cccl with make for windows.

cccl is a wrapper around Microsoft Visual C++'s cl.exe and link.exe. It converts Unix compiler parameters into parameters understood by cl and link.

link|flag
This sounds like what I'm looking for. Thanks. – Justin Aug 4 at 16:21
vote up 1 vote down

What you can do is create a project from existing code. Visual C++ does a pretty good job at compilation without makefiles.

You could also install MinGW and that has make and the compilers.

http://www.mingw.org/

link|flag
I tried creating a project from existing code, with little success. MinGW might work... I'll look further into that. – Justin Aug 4 at 13:28
1  
Be aware, that you may face problems if you will use MinGW compiled library for MSVC. I have posted an article on my blog regarding how to convert MSVC compiled dll to MinGW lib, but I don't know nothing for vice-versa. blog.stranadurakov.com/2009/04/… – Andrejs Cainikovs Aug 4 at 13:43
alternatively you can use cygwin (downside is that the executable will also require cygwin dll). Cygwin can ease porting of code and makefiles as it comes with a posix/unix subsystem and a full set of utillities. Mingw = minimalistic. If it works it'd be my first choice too. – Adriaan Aug 4 at 14:02
vote up 1 vote down

Use the nmake commandline tool. Note it doesn't support everything that GNU Make does so you may need to edit the Makefile to make it compatible but it's the closest thing to what you want.

link|flag
I have used nmake before, and that might be my best option. I was really hoping for a solution I would use with Visual Studio though. – Justin Aug 4 at 13:28
vote up 0 vote down

Typically what I see people do is use them the other way around: Use make as the master build system and have it invoke Visual Studio to build its stuff in batch mode.

I don't have 2008 on me, but w/ VisualStudio2005 you can build a solution with a rule something like this

release = "Win32 Debug"
progname.exe : progname.sln
    devenv $< /Rebuild /"$(release)/"

(Note: I had to use spaces in this example, as tab just takes me to the next field.)

link|flag

Your Answer

Get an OpenID
or

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