about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorarg@10ksloc.org <unknown>2006-08-07 08:19:58 +0200
committerarg@10ksloc.org <unknown>2006-08-07 08:19:58 +0200
commitd54444cfd73f5006bf58e29e50a4ed28d08f9435 (patch)
tree6d739e4ba8bc75e16e16706e70c55d3ddab51814 /Makefile
parent525ef3c178a889266affee5853870907751e074a (diff)
downloaddwm-d54444cfd73f5006bf58e29e50a4ed28d08f9435.tar.gz
changed getproto, maybe that might fix the killclient issue reported on the list
Diffstat (limited to 'Makefile')
0 files changed, 0 insertions, 0 deletions
rtik Agaram <vc@akkartik.com> 2019-09-07 10:14:35 -0700 5635' href='/akkartik/mu/commit/debug_translate?h=main&id=571bf69fbc3bdfc82d2fa86391deb0d3b3b67560'>571bf69f ^
71e4f381 ^


47287fbf ^
71e4f381 ^
571bf69f ^

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
         
                                                             
 








                                                                              
 






                                                                              


      


                                             
 
                                                       

              
#!/bin/sh
# Translate given SubX files with debug information on Linux.
#
# Mu provides 3 canonical ways to translate unsafe SubX programs:
#   0. The C++ translator 'bootstrap translate' can generate traces for
#   debugging on Linux or BSD or Mac, but doesn't support any syntax sugar.
#   1. The self-hosted translator can be run natively on Linux using
#   'translate_subx'. It is fast and supports all syntax sugar, but you get no
#   trace for debugging.
#   2. The self-hosted translator can be run emulated on Linux or BSD or Mac
#   using 'translate_subx_emulated'. It supports all syntax sugar. However, it
#   can be slow if you generate traces.
#
# This script fills in the gap above by stitching together aspects from
# multiple approaches. It translates syntax sugar natively, but emulates lower
# levels using the C++ translator. The result is complete and relatively fast
# even when generating traces.
#
# The cost: it needs Linux. There is no script to generate traces while
# running emulated on BSD or Mac. That's often impractically slow.

set -e

cat $*          |./braces          > a.braces
cat a.braces    |./calls           > a.calls
cat a.calls     |./sigils          > a.sigils

bootstrap/bootstrap --debug translate a.sigils -o a.elf

chmod +x a.elf