Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] Re: Bug Dependency Calculator

Are you sure that your new version of your plugin is being picked up by Eclipse? If you are exporting this new plugin and copying it into either the plugins or the dropins directory, Eclipse will ignore the new version unless the version number changes. You can force it to reparse all plugins by adding -clean to the command line options when you launch eclipse.

===========================
Chris Recoskie
Team Lead, IBM CDT and RDT
IBM Toronto
Inactive hide details for Neatsoul <neatsoul33@xxxxxxxxx>Neatsoul <neatsoul33@xxxxxxxxx>


          Neatsoul <neatsoul33@xxxxxxxxx>
          Sent by: cdt-dev-bounces@xxxxxxxxxxx

          03/06/2009 08:09 AM

          Please respond to
          "CDT General developers list." <cdt-dev@xxxxxxxxxxx>

To

cdt-dev <cdt-dev@xxxxxxxxxxx>

cc


Subject

[cdt-dev] Re: Bug Dependency Calculator

Nobody has an idea about this problem ?  I'm really annoyed with that !

Thanks in advance !

2009/3/4 Neatsoul <neatsoul33@xxxxxxxxx>
    I defined the following toolchain:

    Tool 1
    - Input A with the DefaultGCCDependencyCalculator2
    - Input B with No dependency calculator
    - Output A1

    Tool2
    - Input A1with No dependency calculator
    - Input A with the DefaultGCCDependencyCalculator2
    - Output C

    The first time the makefile is generated with these tools, the
    following toolchain is produced :
     input A => Tool 1 => Ouput A1/Input A1 => Tool 2 => Output C
    In this case, the dependency calculator is well applyed on the input A
    of the Tool1.

    Now I removed the "Tool1" from my toolchain, and I generate the new
    makefile, the following toolchain is produced:
     input A => Tool2 => Output C
    But this time the dependency calculator is not applyed and the rules
    is not generated in the makefile. ( the "-MP -MF"$(@:%.o=%.d)"
    -MT"$(@:%.o=%.d)" string doens't appear)

    If I open the ".cproject" file and remove all the lines with "<input
    .." and i generate again the makefile in the same condition, the
    dependency calculator is applyed ...

    Have you already seen this bug ?


    Best Regards
_______________________________________________
cdt-dev mailing list
cdt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/cdt-dev

GIF image

GIF image

GIF image


Back to the top