Re: [C++] A portable build system?

2006-08-10 Thread Simon Laws

You can use cygwin to do gcc compiles for windows. It comes with automake
(don't know what version) and can be integrated with Eclipse CDT.

S

On 8/9/06, Pete Robbins [EMAIL PROTECTED] wrote:


I believe automake can run on Windows using some linux portability layer
(I
forget what it's called). I'll need to look into it some more. We should
also see what other Apache c/C++ projects use.



On 09/08/06, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote:

 I'm still in the process of (re)learning C++ and related GCC automake,
 configure etc. so maybe this is a dumb question.. but would there be any
 way to make our builds portable between Linux and Windows, instead of
 using completely different build systems, i.e. Automake on Linux and
 VC++ on Windows?

 --
 Jean-Sebastien


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




--
Pete




Re: [C++] A portable build system?

2006-08-10 Thread Pete Robbins

On 10/08/06, Simon Laws [EMAIL PROTECTED] wrote:


You can use cygwin to do gcc compiles for windows. It comes with automake
(don't know what version) and can be integrated with Eclipse CDT.

S



That's the one! Does it produce dll's that run native on windows or does the
output depend on other libraries?

--
Pete


Re: [C++] A portable build system?

2006-08-10 Thread Simon Laws

You can make native windows dll's and executables. The last time I was
involved in this kind of build we actually used ant on windows and linux in
top of gcc (in cygwin for windows) to drive the build for the large number
of different systems we had to support (there were some strange HPC type
ones). IMHO though the result was rather too complicated. I don't know
automake but if you have it working well on linux it would be good to see
how well it supports a windows build before doing anything more exotic.

S

On 8/10/06, Pete Robbins [EMAIL PROTECTED] wrote:


On 10/08/06, Simon Laws [EMAIL PROTECTED] wrote:

 You can use cygwin to do gcc compiles for windows. It comes with
automake
 (don't know what version) and can be integrated with Eclipse CDT.

 S


That's the one! Does it produce dll's that run native on windows or does
the
output depend on other libraries?

--
Pete




[C++] A portable build system?

2006-08-09 Thread Jean-Sebastien Delfino
I'm still in the process of (re)learning C++ and related GCC automake, 
configure etc. so maybe this is a dumb question.. but would there be any 
way to make our builds portable between Linux and Windows, instead of 
using completely different build systems, i.e. Automake on Linux and 
VC++ on Windows?


--
Jean-Sebastien


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [C++] A portable build system?

2006-08-09 Thread Pete Robbins

I believe automake can run on Windows using some linux portability layer (I
forget what it's called). I'll need to look into it some more. We should
also see what other Apache c/C++ projects use.



On 09/08/06, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote:


I'm still in the process of (re)learning C++ and related GCC automake,
configure etc. so maybe this is a dumb question.. but would there be any
way to make our builds portable between Linux and Windows, instead of
using completely different build systems, i.e. Automake on Linux and
VC++ on Windows?

--
Jean-Sebastien


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
Pete