Csound Csound-dev Csound-tekno Search About

[CSOUND-DEV:5463] Re: Building Csound 5 report

Date2004-11-30 02:00
From"Michael Gogins"
Subject[CSOUND-DEV:5463] Re: Building Csound 5 report
OK, at home I see the indentation properly and this code is not correct. I 
will correct it immediately.

----- Original Message ----- 
From: 
To: "Csound Developers Discussion List" 
Sent: Monday, November 29, 2004 1:09 AM
Subject: [CSOUND-DEV:5462] Building Csound 5 report


>I was looking at the SConstruct file and I cannot see where the dl
> library is included, at least in normal use.  The code below looks odd
> to me (but I do not know python), as if getPlatform() is 'mingw' then
> it cannot be 'linux'
>
>    elif getPlatform() == 'mingw':
>            csoundProgramEnvironment.Append(LIBS = ['stdc++', 'supc++'])
>            ustubProgramEnvironment.Append(LIBS = ['stdc++', 'supc++'])
>            vstEnvironment.Append(LIBS = ['stdc++', 'supc++'])
>            guiProgramEnvironment.Append(LIBS = ['stdc++', 'supc++'])
>            if getPlatform() == 'linux':
>                    csoundProgramEnvironment.Append(LIBS = ['dl'])
>                    ustubProgramEnvironment.Append(LIBS = ['dl'])
>                    vstEnvironment.Append(LIBS = ['dl'])
>                    guiProgramEnvironment.Append(LIBS = ['dl'])
>
> Otherwise 'dl' is only added to csoundvst and pycsound
>
> ==John ffitch
>
>