Index: test/compiler-override/my_ld.py |
diff --git a/test/compiler-override/my_ld.py b/test/compiler-override/my_ld.py |
new file mode 100755 |
index 0000000000000000000000000000000000000000..22d756a8116d7be045c419c78e332cb977f4efac |
--- /dev/null |
+++ b/test/compiler-override/my_ld.py |
@@ -0,0 +1,9 @@ |
+#!/usr/bin/env python |
+import sys |
+print sys.argv |
+for a in sys.argv: |
+ if a and a[0] == '@': |
bradn
2012/07/31 17:19:23
Use consistent quotes (probably single throughout)
|
+ print "begin %s" % a |
+ args = open(a[1:]).read() |
+ print args |
+ print "end %s" % a |