You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. use proxy scripts as described in
http://cloud9.epfl.ch/testing-programs/producing-llvm-binaries
What is the expected output? What do you see instead?
Archiving blah.a ...
... cloud9/src/testing_targets/build//ar.proxy r blah.a foo.o bar.o
ar: no operation specified
Details of the patch :
Proxy scripts append parameters from original command at the
end of the command line. However, binutils ar util requires
the command option to be passed as the second parameter.
This patch checks for the command parameter and if present
inserts it as the second option. Limitation: this patch
only considers plain commands, not commands with options (a
proper reg exp should be used).
Original issue reported on code.google.com by nau...@gmail.com on 26 Aug 2012 at 1:15
Hi Stefan,
thanks for applying the patch, unfortunately it was a bit too simplistic and
broke the build system.
Here is a fix, it matches a bit more that what would really be needed, but that
should be safe...
Original comment by nau...@gmail.com on 31 Aug 2012 at 11:35
Original issue reported on code.google.com by
nau...@gmail.com
on 26 Aug 2012 at 1:15Attachments:
The text was updated successfully, but these errors were encountered: