Csound Csound-dev Csound-tekno Search About

Re: [Cs-dev] Build system refactoring

Date2008-03-28 23:58
Fromvictor
SubjectRe: [Cs-dev] Build system refactoring
I noticed a problem with SConstruct on Windows, the line

libCsoundLibs.append(csoundLibrary)

will not work on gcc, as it ass Csound32.dll.5.1 which does not
link (at least here with my current loader). So I added the fix.

if getPlatform() != 'win32':
 libCsoundLibs.append(csoundLibrary)
else:
 libCsoundLibs.append('csound32')

Another thing to bear in mind (Please!) is that the OLPC
build John added last week, does not get broken, as we
depend on that for the RPM release.

Thanks

Victor


----- Original Message ----- 
From: "Felipe Sateler" 
To: "Developer discussions" 
Sent: Friday, March 28, 2008 7:44 PM
Subject: Re: [Cs-dev] Build system refactoring


> -------------------------------------------------------------------------
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace


--------------------------------------------------------------------------------


> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
> 


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2008-03-29 01:09
FromFelipe Sateler
SubjectRe: [Cs-dev] Build system refactoring
AttachmentsNone  None  None