summary refs log tree commit diff stats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/vccexe/vccexe.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/vccexe/vccexe.nim b/tools/vccexe/vccexe.nim
index 891b4fb2d..2dcff8ce4 100644
--- a/tools/vccexe/vccexe.nim
+++ b/tools/vccexe/vccexe.nim
@@ -46,7 +46,7 @@ const
   sdktypeSepIdx = sdktypePrefix.len
   sdkversionSepIdx = sdkversionPrefix.len
   
-  HelpText = """
+  helpText = """
 +-----------------------------------------------------------------+
 |         Microsoft C/C++ compiler wrapper for Nim                |
 |                                &                                |
@@ -139,7 +139,7 @@ when isMainModule:
       verboseArg = true
     else: # Regular cl.exe argument -> store for final cl.exe invocation
       if (wargv.len == 2) and (wargv[1] == '?'):
-        echo HelpText
+        echo helpText
       clArgs.add(wargv)
 
   # Support for multiple specified versions. Attempt VCC discovery for each version
e27989'>77a0f68 ^
80e891a ^
60b351b ^


cab3771 ^


80e891a ^

db1b2cd ^

80e891a ^









60b351b ^

80e891a ^

60b351b ^
80e891a ^
60b351b ^

77a0f68 ^

80e891a ^
77a0f68 ^

d67c8a6 ^


60b351b ^
d67c8a6 ^


60b351b ^
1170893 ^
db1b2cd ^


60b351b ^
80e891a ^
db1b2cd ^

60b351b ^
77a0f68 ^
80e891a ^

80e891a ^



60b351b ^
77a0f68 ^
cab3771 ^
60b351b ^
0b37441 ^









60b351b ^
80e891a ^
60b351b ^

db1b2cd ^


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93