List Info

Thread: STLPort question




STLPort question
country flaguser name
United States
2007-08-06 12:36:27
I want to build my tests with STLPort 5.0 . I did this
successfully from 
time
to time with V1.  To do this I invoke

bjam --dump-tests --toolset=msvc-7.1 stdlib=stlport-5.0
$
>bjam.log 2>&1

from the comments in stlport.jam I would seem to me to
indicate that
I'm doing this the intended way

# The STLPort is usable by means of 'stdlib' feature. When
# stdlib=stlport is specified, default version of STLPort
will be used,
# while stdlib=stlport-4.5 will use specific version.
# The subfeature value 'hostios' means to use host
compiler's iostreams.

Below is the message that bjam produces.

As always, any help appreciated.

Robert Ramey

C:/Boost134/tools/build/v2/buildfeature.jam:432: in
validate-value-string 
from
module feature
error: "stlport-5.0" is not a known value of
feature <stdlib>
error: legal values: "native"
C:/Boost134/tools/build/v2/buildfeature.jam:316: in
expand-subfeatures-aux 
from
 module feature
C:/Boost134/tools/build/v2/buildfeature.jam:374: in 
feature.expand-subfeatures
from module feature
C:/Boost134/tools/build/v2/buildbuild-request.jam:20: in 
apply-to-property-set
from module build-request
C:/Boost134/tools/build/v2/kernelmodules.jam:66: in
modules.call-in from 
module
 build-request
C:/Boost134/tools/build/v2/utilsequence.jam:44: in
sequence.transform from 
modu
le sequence
C:/Boost134/tools/build/v2/buildbuild-request.jam:30: in 
build-request.expand-n
o-defaults from module build-request
C:/Boost134/tools/build/v2build-system.jam:274: in load
from module 
build-syste
m
C:Boost134toolsbuildv2/kernelmodules.jam:261: in import
from module 
modules

C:Boost134toolsbuildv2/kernel/bootstrap.jam:132: in
boost-build from 
module
C:Boost134boost-build.jam:9: in module scope from module 



_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build

country flaguser name
United States
2007-08-07 11:23:41
Robert Ramey wrote:
> I want to build my tests with STLPort 5.0 . I did this
successfully
> from time
> to time with V1.  To do this I invoke
>
> bjam --dump-tests --toolset=msvc-7.1 stdlib=stlport-5.0
$
>bjam.log
> 2>&1
> from the comments in stlport.jam I would seem to me to
indicate that
> I'm doing this the intended way
>
> # The STLPort is usable by means of 'stdlib' feature.
When
> # stdlib=stlport is specified, default version of
STLPort will be
> used, # while stdlib=stlport-4.5 will use specific
version.
> # The subfeature value 'hostios' means to use host
compiler's
> iostreams.
> Below is the message that bjam produces.
>
> As always, any help appreciated.
>
> Robert Ramey
>
> C:/Boost134/tools/build/v2/buildfeature.jam:432: in
> validate-value-string from
> module feature
> error: "stlport-5.0" is not a known value of
feature <stdlib>
> error: legal values: "native"
> C:/Boost134/tools/build/v2/buildfeature.jam:316: in
> expand-subfeatures-aux from
> module feature
> C:/Boost134/tools/build/v2/buildfeature.jam:374: in
> feature.expand-subfeatures
> from module feature
> C:/Boost134/tools/build/v2/buildbuild-request.jam:20:
in
> apply-to-property-set
> from module build-request
> C:/Boost134/tools/build/v2/kernelmodules.jam:66: in
modules.call-in
> from module
> build-request
> C:/Boost134/tools/build/v2/utilsequence.jam:44: in
> sequence.transform from modu
> le sequence
> C:/Boost134/tools/build/v2/buildbuild-request.jam:30:
in
> build-request.expand-n
> o-defaults from module build-request
> C:/Boost134/tools/build/v2build-system.jam:274: in
load from module
> build-syste
> m
> C:Boost134toolsbuildv2/kernelmodules.jam:261: in
import from
> module modules
>
> C:Boost134toolsbuildv2/kernel/bootstrap.jam:132: in
boost-build
> from module
> C:Boost134boost-build.jam:9: in module scope from
module
>
>
>
> _______________________________________________
> Unsubscribe & other changes:
> http://lists.boost.org/mailman/listinfo.cgi/boost-build 



_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build

Re:
country flaguser name
United States
2007-08-07 11:48:57
Robert Ramey wrote:
> Robert Ramey wrote:
>> I want to build my tests with STLPort 5.0 . I did
this successfully
>> from time
>> to time with V1.  To do this I invoke
>>
>> bjam --dump-tests --toolset=msvc-7.1
stdlib=stlport-5.0 $ >bjam.log
>> 2>&1
>> from the comments in stlport.jam I would seem to me
to indicate that
>> I'm doing this the intended way
>>
>> # The STLPort is usable by means of 'stdlib'
feature. When
>> # stdlib=stlport is specified, default version of
STLPort will be
>> used, # while stdlib=stlport-4.5 will use specific
version.
>> # The subfeature value 'hostios' means to use host
compiler's
>> iostreams.
>> Below is the message that bjam produces.
>>
>> As always, any help appreciated.

Hm, I used to run the STLport commands with: 
gcc-3.4.5~mingw~stlport51/stdlib=stlport-5.1~gcc345/variant=
debug -- as 
an argument to bjam. For which I have in my
user-config.jam:

     using gcc : 3.4.5~mingw~stlport50 :
C:/MinGW/bin/g++.exe ;
     using gcc : 3.4.5~mingw~stlport51 :
C:/MinGW/bin/g++.exe ;

     using stlport : :
         C:/DevRoots/STLport/stlport
         C:/DevRoots/STLport/lib
         C:/DevRoots/STLport/bin ;
     using stlport : 5.0~gcc345 :
         C:/DevRoots/STLport/STLport-5.0/stlport
         C:/DevRoots/STLport/STLport-5.0/lib
         C:/DevRoots/STLport/STLport-5.0/bin ;
     using stlport : 5.1~gcc345 :
         C:/DevRoots/STLport/STLport-5.1/stlport
         C:/DevRoots/STLport/STLport-5.1/lib
         C:/DevRoots/STLport/STLport-5.1/bin ;


-- 
-- Grafik - Don't Assume Anything
-- Redshift Software, Inc. - http://redshift-software
.com
-- rrivera/acm.org - grafik/redshift-software.com
-- 102708583/icq - grafikrobot/aim - grafikrobot/yahoo
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build

[1-3]

about | contact  Other archives ( Real Estate discussion Medical topics )