Re: [Quickfix-developers] Non-MSVC build (was Re:quickfixjmultiplesessions only diff Port)
Brought to you by:
orenmnero
From: K. F. <kfr...@gm...> - 2014-03-22 23:23:50
|
Hi Maz! On Sat, Mar 22, 2014 at 6:29 PM, Maz Saeed <ma...@sh...> wrote: > Hey Frank, > One more quick question; where should I start the compilation process? Is it Utility.cpp first and then pretty much any order? My goal is to create all the object files > first and then convert them into a static library. I guess I could run compilation with VC++ of one of the projects to see in which sequence object files are > created...thought I'll check with you first. It doesn't matter at all in what order you compile the .cpp files. They are independent "translation units" and the .o files that get produced are independent of one another. For whatever reason, the first file in my makefile is Session.o (which causes Session.cpp to get compiled by a make built-in rule). But it doesn't matter, and I don't recall how my particular order of files came about. By the way, which version of QuickFIX are you working with? > Thanks, > --Maz Happy QuickFIX Hacking! K. Frank > ------- Original Message ------- > From : K. Frank[mailto:] > > Hello Maz! > > On Sat, Mar 22, 2014 at 12:58 PM, Maz Saeed <ma...@ec...> wrote: >> Hey Frank, >> Getting started on the modifying the quickFix with Windows GCC. As you pointed out to use the UNIX version as a starting point, > ... >> my question is how do you extract the >> quickfix-logviewer-1.1.1.tar.gz in Windows environment? > ... |