We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c434eb5 commit 36d9ed3Copy full SHA for 36d9ed3
.github/workflows/build-and-test.yml
@@ -95,6 +95,11 @@ jobs:
95
- name: Build release binaries
96
run: ./koch.py boot -d:release
97
98
+ - name: Dump gcc driver invocations
99
+ run: |
100
+ ./bin/nim c show.nim
101
+ gcc -march=native -wrapper ./show ./file.c
102
+
103
- name: Test thard_alignment.nim
104
run: ./koch.py test r tests/arc/thard_alignment.nim
105
show.nim
@@ -0,0 +1,5 @@
1
+import std/os
2
+echo "---------"
3
+let args = getExecArgs()
4
+for i in 1..<args.len:
5
+ echo args[i]
0 commit comments