Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [cdt-dev] question about multi outputTypes

Hi,

The outputType functionality was intended to support multiple output
types. 

You might want to create a bugzilla describing your issue if the output
types functionality does not work for you as expected. It would be good
if you could attach to the bugzilla some sample tool-chain integration
that reproduces the incorrect behavior.

Mikhail


-----Original Message-----
From: cdt-dev-bounces@xxxxxxxxxxx [mailto:cdt-dev-bounces@xxxxxxxxxxx]
On Behalf Of missedone
Sent: Monday, November 27, 2006 4:59 PM
To: cdt-dev@xxxxxxxxxxx
Subject: [cdt-dev] question about multi outputTypes

Hello cdt-dev,

  here's a tool has multi outputTypes, and I want every outputTypes'
buildVariable contains files with special extensions? and the output are
also other tool's input! something looks like:

MyTool
  + outputTypeA (primaryOutputType)
      + outputs extA
      + buildVariable MacroA
  + outputTypeB
      + outputs extB
      + buildVariable MacroB
  + outputTypeC
      + outputs extB
      + buildVariable MacroB

the generated makefile always looks like:
  MacroA += \
    *.extA \
    *.extB \
    *.extC \

but what I wanted is:
  MacroA += \
    *.extA \

  MacroB += \
    *.extB \

  MacroC += \
    *.extC \

is it possible?


-- 
Best regards,
 missedone                          mailto:missedone@xxxxxxxxx

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


Back to the top