about summary refs log tree commit diff stats
path: root/makefile
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-28 18:12:03 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-28 18:37:57 -0700
commit5f05e954ee1f1daf953b3ff20af81775f226d5bf (patch)
tree21a691619f0e260e18df4140d4d8381682ecd979 /makefile
parentc7fde8d4e4175b436bc8db92bedd231261827e2c (diff)
downloadmu-5f05e954ee1f1daf953b3ff20af81775f226d5bf.tar.gz
3273
Undo 3272. The trouble with creating a new section for constants is that
there's no good place to order it since constants can be initialized
using globals as well as vice versa. And I don't want to add constraints
disallowing either side.

Instead, a new plan: always declare constants in the Globals section
using 'extern const' rather than just 'const', since otherwise constants
implicitly have internal linkage (http://stackoverflow.com/questions/14894698/why-does-extern-const-int-n-not-work-as-expected)
Diffstat (limited to 'makefile')
0 files changed, 0 insertions, 0 deletions
d=2a2566112749f0e3f932004c1a9d8345a84b1fd0'>^
d3f9d547 ^

479f8d01 ^
d4a8ec3c ^
e47cfd56 ^
479f8d01 ^
d3f9d547 ^


e47cfd56 ^


d3f9d547 ^
e47cfd56 ^


d3f9d547 ^
e47cfd56 ^


d3f9d547 ^
e47cfd56 ^
d3f9d547 ^




e47cfd56 ^


d3f9d547 ^
e47cfd56 ^
479f8d01 ^
d3f9d547 ^



479f8d01 ^
d3f9d547 ^




e47cfd56 ^


479f8d01 ^
d3f9d547 ^
479f8d01 ^
d3f9d547 ^

e47cfd56 ^

479f8d01 ^
d3f9d547 ^
e47cfd56 ^




d3f9d547 ^
e47cfd56 ^
d3f9d547 ^
e47cfd56 ^
479f8d01 ^
d3f9d547 ^
e47cfd56 ^

d3f9d547 ^

e47cfd56 ^
d3f9d547 ^



e47cfd56 ^
d3f9d547 ^
e47cfd56 ^
d3f9d547 ^

e47cfd56 ^
d3f9d547 ^



e47cfd56 ^
479f8d01 ^
d3f9d547 ^





e47cfd56 ^
d3f9d547 ^



e47cfd56 ^
d3f9d547 ^

e47cfd56 ^

d3f9d547 ^
e47cfd56 ^






d3f9d547 ^
e47cfd56 ^


d3f9d547 ^
e47cfd56 ^
d3f9d547 ^

e47cfd56 ^
d3f9d547 ^
e47cfd56 ^

d3f9d547 ^
e47cfd56 ^
d3f9d547 ^








e47cfd56 ^


d3f9d547 ^



e47cfd56 ^
d3f9d547 ^

e47cfd56 ^
d3f9d547 ^

e47cfd56 ^

479f8d01 ^
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159