CodeShop

Bjam max_cmd ...

July 18th, 2007

I got the following error when I run my fresh compile of bjam, v1.14 from boost_1_34:

Building Boost.Regex with the optional Unicode/ICU support disabled.
Please refer to the Boost.Regex documentation for more information
(don't panic: this is a strictly optional feature).
...patience...
...patience...
...found 7995 targets...
...updating 1 target...
testing.unit-test actions too long (max 2047):

I think I already posted this some time ago, with boost_1_33.

According to MS, commandlengths can be 8192. (It’s still a limit, but it’s a start – on XP / using CMD.EXE).

You will need to recompile bjam with the following change in execnt.c (line nr 113), change the 2047 to 8191:

1
2
3
4
    /* Set the maximum command line length according to the OS */
    return is_nt_351 ? 996
        : is_win95 ? 1023
        : 8191;

And your problem will go away – for (lets hope) a while.

NB – the code has changed in boost_1_35 (but you can still find the 2047).

Sorry, comments are closed for this article.