Changes between Initial Version and Version 1 of TestingNewToolset


Ignore:
Timestamp:
Feb 8, 2006, 2:12:52 PM (20 years ago)
Author:
ghost
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TestingNewToolset

    v1 v1  
     1= Testing new toolset =
     2
     3This page describes the steps necessary for testing of a new toolset.
     4
     5== Configure the toolset ==
     6
     7First, make sure the compiler is in {{{PATH}}}. Then, locate the Boost.Build V2 configuration file, {{{user-config.jam}}}. If you never heard
     8about it, it's located in Boost.Build V2 root (tools/build/v2 directory in C++ Boost tree).
     9Add one line to that file:
     10{{{
     11   using new_toolset_name ;
     12}}}
     13Don't forget the space character before the semicolon.
     14
     15== Try the simplest example ==
     16
     17Go to the {{{$(boost_build_root)/example/hello}}} directory, and run
     18{{{
     19bjam new_toolset_name
     20}}}
     21If there any errors, report them and stop.
     22
     23== Try more contrived example ==
     24
     25Go to the {{{$(boost_build_root)/example/libraries}}} directory, and run
     26{{{
     27bjam new_toolset_name
     28}}}
     29If there any errors, report them and stop.
     30
     31== Run full regression tests ==
     32
     33If you have Python installed, go to the {{{$(boost_build_root)/test}}} directory, and run
     34{{{
     35python test_all.py new_toolset_name
     36}}}
     37Report the results.
     38
     39