Currently, Clang on AIX uses the system assembler to generate object files from assembly. The use of -o - results in a file named - instead of output to stdout. This patch uses a temporary object file instead.
Details
Details
Diff Detail
Diff Detail
- Repository
 - rG LLVM Github Monorepo
 
Event Timeline
| clang/test/InterfaceStubs/object.c | ||
|---|---|---|
| 2–3 | With the temporary file added, the pipe is unnecessary (and possibly unwanted). Does the suggestion here work?  | |
Comment Actions
Removed the unncessary pipe.
| clang/test/InterfaceStubs/object.c | ||
|---|---|---|
| 2–3 | Yes this suggestion works. I updated the patch accordingly  | |
With the temporary file added, the pipe is unnecessary (and possibly unwanted). Does the suggestion here work?