Commit 7669f24
committed
Force forward slash for writing @..txt files for gcc
It seems that on windows the compiler is not able to handle files
written in the format
"C:\path\to\object.o"
but it must be either
"C:/path/to/object.o"
or
"C:\\path\\to\\object.o"
I don't know if this is a quirk of gcc or it has something to do with
golang doing some extra excaping on command.Exec that we must do also on
@..txt files.1 parent abef32d commit 7669f24
1 file changed
+7
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| 19 | + | |
19 | 20 | | |
20 | 21 | | |
21 | 22 | | |
| |||
57 | 58 | | |
58 | 59 | | |
59 | 60 | | |
60 | | - | |
61 | | - | |
| 61 | + | |
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
67 | | - | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
68 | 72 | | |
69 | 73 | | |
70 | 74 | | |
| |||
0 commit comments