Invoking an external assembler in a pipe

A year or more ago I read somewhere that it was possible to invoke a non-integrate assemble tool to run in a pipe rather than as a separate tool run after the generation of the intermediate assembly file.

However, I can’t find where I came across this and I am wondering did I just imagine it, or does CLang support running an external assembler in this way, and if so how should I configure this in ‘Tools.cpp’?

Thanks,

MartinO

Traditionally that's been the "-pipe" option, but I think Clang ignores it.

Tim.

Thanks Tim, guess I was dreaming after all :slight_smile:

  MartinO