Boost logo

Boost-Build :

Subject: Re: [Boost-build] Early bjam abort
From: Nogradi, Chris (Chris.Nogradi_at_[hidden])
Date: 2012-04-30 11:16:08


Steve,

> With this change I am seeing bjam stuck in an endless loop

Here is some additional info, it appears that there are only 2 targets in the list and they point to each other. I ran this code:

TARGET * target_scc( TARGET * t )
{
    TARGET * result = t;
    TARGET * tmp;
    while ( result->scc_root )
    {
        printf( "OBJECT: %s\n", object_str( result->name ) );
        result = result->scc_root;
    }

And got this endlessly:

OBJECT: <object(c-scanner)@19136#some_path/file1.h
OBJECT: <object(c-scanner)@19136#some_path/file2.h
OBJECT: <object(c-scanner)@19136#some_path/file1.h
OBJECT: <object(c-scanner)@19136#some_path/file2.h
OBJECT: <object(c-scanner)@19136#some_path/file1.h
OBJECT: <object(c-scanner)@19136#some_path/file2.h
...
OBJECT: <object(c-scanner)@19136#some_path/file1.h
OBJECT: <object(c-scanner)@19136#some_path/file2.h

Chris

This e-mail and any attachments may contain confidential material for the sole use of the intended recipient. If you are not the intended recipient, please be aware that any disclosure, copying, distribution or use of this e-mail or any attachment is prohibited. If you have received this e-mail in error, please contact the sender and delete all copies.

Thank you for your cooperation.


Boost-Build list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk