about summary refs log tree commit diff stats
path: root/subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-02-14 18:41:29 -0800
committerKartik Agaram <vc@akkartik.com>2019-02-14 18:42:21 -0800
commit1076cc4cf93bd4a8df72caeae67a57010f7e53bc (patch)
tree4a116f00a41de54c17e57c4a7591322db2b0062e /subx
parent833152354e906bee0721e02995f186c1948d72f1 (diff)
downloadmu-1076cc4cf93bd4a8df72caeae67a57010f7e53bc.tar.gz
4964
Diffstat (limited to 'subx')
-rw-r--r--subx/039debug.cc2
-rwxr-xr-xsubx/drun4
2 files changed, 3 insertions, 3 deletions
diff --git a/subx/039debug.cc b/subx/039debug.cc
index 4dfcfa3c..4b7e3363 100644
--- a/subx/039debug.cc
+++ b/subx/039debug.cc
@@ -1,6 +1,6 @@
 //:: Some helpers for debugging.
 
-//: Load the 'map' file generated during 'subx --map translate' when running 'subx --map --dump run'.
+//: Load the 'map' file generated during 'subx --map translate' when running 'subx --map --trace run'.
 //: (It'll only affect the trace.)
 
 :(before "End Globals")
diff --git a/subx/drun b/subx/drun
index 9e802c31..87092a9d 100755
--- a/subx/drun
+++ b/subx/drun
@@ -9,9 +9,9 @@ fi
 
 if [[ $1 == 'ex'* ]]
 then
-  CFLAGS=-g ./subx --map --dump run examples/$* 2>x
+  CFLAGS=-g ./subx --map --trace run examples/$* 2>x
   exit $?
 fi
 
-CFLAGS=-g ./subx --map --dump run apps/$* 2>x
+CFLAGS=-g ./subx --map --trace run apps/$* 2>x
 exit $?
id='n172' href='#n172'>172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258