-
Notifications
You must be signed in to change notification settings - Fork 167
/
main.yml
401 lines (334 loc) · 8.39 KB
/
main.yml
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
160
161
162
163
164
165
166
167
168
169
170
171
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
---
#
# installs gcc 4.9 @ /data/gcc-4.9 on rhel7.x
# and gcc 6.3 @ /data/gcc-6.3
#
## gmp-6.1
- stat: path=/data/gmp-6.1/include/gmp.h
register: build_gmp
tags: gcc
- name: Clean path
file:
state: absent
path: /data/tmp/
when: build_gmp.stat.exists == False
tags: gcc
- name: Create working directory
file:
path: /data/tmp
state: directory
mode: 0755
when: build_gmp.stat.exists == False
tags: gcc
- name: download gmp 6.1.0
get_url:
url: http://ftp.gnu.org/gnu/gmp/gmp-6.1.0.tar.xz
dest: /data/tmp/
when: build_gmp.stat.exists == False
tags: gcc
- name: unarchive gmp 6.1.0
unarchive:
src: /data/tmp/gmp-6.1.0.tar.xz
remote_src: yes
dest: /data/tmp/
when: build_gmp.stat.exists == False
tags: gcc
- name: Create build directory
file:
path: /data/tmp/build
state: directory
mode: 0755
when: build_gmp.stat.exists == False
tags: gcc
- name: configure gmp 6.1.0
shell: /data/tmp/gmp-6.1.0/configure --prefix=/data/gmp-6.1
args:
chdir: /data/tmp/build
when: build_gmp.stat.exists == False
tags: gcc
- name: build gmp 6.1.0
shell: make -j{{ ansible_processor_cores }} install
args:
chdir: /data/tmp/build
when: build_gmp.stat.exists == False
tags: gcc
## mpfr-3.1
- stat: path=/data/mpfr-3.1/include/mpfr.h
register: build_mpfr
tags: gcc
- name: Clean path
file:
state: absent
path: /data/tmp/
when: build_mpfr.stat.exists == False
tags: gcc
- name: Create working directory
file:
path: /data/tmp
state: directory
mode: 0755
when: build_mpfr.stat.exists == False
tags: gcc
- name: download mprf 3.1.4
get_url:
url: http://ftp.gnu.org/gnu/mpfr/mpfr-3.1.4.tar.gz
dest: /data/tmp/
when: build_mpfr.stat.exists == False
tags: gcc
- name: unarchive mprf 3.1.4
unarchive:
src: /data/tmp/mpfr-3.1.4.tar.gz
remote_src: yes
dest: /data/tmp/
when: build_mpfr.stat.exists == False
tags: gcc
- name: Create build directory
file:
path: /data/tmp/build
state: directory
mode: 0755
when: build_mpfr.stat.exists == False
tags: gcc
- name: build mprf 3.1.4
shell: /data/tmp/mpfr-3.1.4/configure --with-gmp=/data/gmp-6.1 --prefix=/data/mpfr-3.1
args:
chdir: /data/tmp/build
when: build_mpfr.stat.exists == False
tags: gcc
- name: build mprf 3.1.4
shell: make -j{{ ansible_processor_cores }} install
args:
chdir: /data/tmp/build
when: build_mpfr.stat.exists == False
tags: gcc
## mpc-1.0
- stat: path=/data/mpc-1.0/include/mpc.h
register: build_mpc
tags: gcc
- name: Clean path
file:
state: absent
path: /data/tmp/
when: build_mpc.stat.exists == False
tags: gcc
- name: Create working directory
file:
path: /data/tmp
state: directory
mode: 0755
when: build_mpc.stat.exists == False
tags: gcc
- name: download mpc 1.0.3
get_url:
url: http://ftp.gnu.org/gnu/mpc/mpc-1.0.3.tar.gz
dest: /data/tmp/
when: build_mpc.stat.exists == False
tags: gcc
- name: unarchive mpc 1.0.3
unarchive:
src: /data/tmp/mpc-1.0.3.tar.gz
remote_src: yes
dest: /data/tmp/
when: build_mpc.stat.exists == False
tags: gcc
- name: Create build directory
file:
path: /data/tmp/build
state: directory
mode: 0755
when: build_mpc.stat.exists == False
tags: gcc
- name: configure mpc 1.0.3
shell: /data/tmp/mpc-1.0.3/configure --with-mpfr=/data/mpfr-3.1 --with-gmp=/data/gmp-6.1 --prefix=/data/mpc-1.0
args:
chdir: /data/tmp/build
when: build_mpc.stat.exists == False
tags: gcc
- name: build mpc 1.0.3
shell: make -j{{ ansible_processor_cores }} install
args:
chdir: /data/tmp/build
when: build_mpc.stat.exists == False
tags: gcc
## binutils-2.28
- stat: path=/data/binutils-2.28/bin/ranlib
register: build_binutils
tags: gcc
- name: Clean path
file:
state: absent
path: /data/tmp/
when: build_binutils.stat.exists == False
tags: gcc
- name: Create working directory
file:
path: /data/tmp
state: directory
mode: 0755
when: build_binutils.stat.exists == False
tags: gcc
- name: download binutils 2.28.1
get_url:
url: https://ftp.gnu.org/gnu/binutils/binutils-2.28.1.tar.gz
dest: /data/tmp/
when: build_binutils.stat.exists == False
tags: gcc
- name: unarchive binutils 2.28.1
unarchive:
src: /data/tmp/binutils-2.28.1.tar.gz
remote_src: yes
dest: /data/tmp/
when: build_binutils.stat.exists == False
tags: gcc
- name: Create build directory
file:
path: /data/tmp/build
state: directory
mode: 0755
when: build_binutils.stat.exists == False
tags: gcc
- name: configure binutils 2.28.1
shell: /data/tmp/binutils-2.28.1/configure --with-mpfr=/data/mpfr-3.1 --with-gmp=/data/gmp-6.1 --prefix=/data/binutils-2.28
args:
chdir: /data/tmp/build
when: build_binutils.stat.exists == False
tags: gcc
- name: build binutils 2.28.1
shell: make -j{{ ansible_processor_cores }}
args:
chdir: /data/tmp/build
when: build_binutils.stat.exists == False
tags: gcc
- name: install binutils 2.28.1
shell: make install
args:
chdir: /data/tmp/build
when: build_binutils.stat.exists == False
tags: gcc
## gcc-4.9
- stat: path=/data/gcc-4.9/bin/gcc-4.9
register: build_gcc_49
tags: gcc49
- name: Clean path
file:
state: absent
path: /data/tmp/
when: build_gcc_49.stat.exists == False
tags: gcc49
- name: Create working directory
file:
path: /data/tmp
state: directory
mode: 0755
when: build_gcc_49.stat.exists == False
tags: gcc49
- name: download gcc 4.9.4
get_url:
url: http://ftp.gnu.org/gnu/gcc/gcc-4.9.4/gcc-4.9.4.tar.gz
dest: /data/tmp/
when: build_gcc_49.stat.exists == False
tags: gcc49
- name: unarchive gcc 4.9.4
unarchive:
src: /data/tmp/gcc-4.9.4.tar.gz
remote_src: yes
dest: /data/tmp/
when: build_gcc_49.stat.exists == False
tags: gcc49
- name: Create build directory
file:
path: /data/tmp/build
state: directory
mode: 0755
when: build_gcc_49.stat.exists == False
tags: gcc49
- name: configure gcc4.9
shell: /data/tmp/gcc-4.9.4/configure --with-mpfr=/data/mpfr-3.1 --with-gmp=/data/gmp-6.1 --with-mpc=/data/mpc-1.0 --prefix=/data/gcc-4.9 --program-suffix=-4.9 --disable-multilib
args:
chdir: /data/tmp/build
when: build_gcc_49.stat.exists == False
tags: gcc49
- name: build gcc49
shell: make -j{{ ansible_processor_cores }}
async: 3600
poll: 10
args:
chdir: /data/tmp/build
when: build_gcc_49.stat.exists == False
tags: gcc49
- name: install gcc49
shell: make install
args:
chdir: /data/tmp/build
when: build_gcc_49.stat.exists == False
tags: gcc49
- name: Clean path
file:
state: absent
path: /data/tmp/
when: build_gcc_49.stat.exists == False
tags: gcc49
## gcc-6.3
- stat: path=/data/gcc-6.3/bin/gcc-6.3
register: build_gcc_63
tags: gcc63
- name: Clean path
file:
state: absent
path: /data/tmp/
when: build_gcc_63.stat.exists == False
tags: gcc63
- name: Create working directory
file:
path: /data/tmp
state: directory
mode: 0755
when: build_gcc_63.stat.exists == False
tags: gcc63
- name: download gcc 6.3.0
get_url:
url: http://ftp.gnu.org/gnu/gcc/gcc-6.3.0/gcc-6.3.0.tar.gz
dest: /data/tmp/
when: build_gcc_63.stat.exists == False
tags: gcc63
- name: unarchive gcc 6.3.0
unarchive:
src: /data/tmp/gcc-6.3.0.tar.gz
remote_src: yes
dest: /data/tmp/
when: build_gcc_63.stat.exists == False
tags: gcc63
- name: Create build directory
file:
path: /data/tmp/build
state: directory
mode: 0755
when: build_gcc_63.stat.exists == False
tags: gcc63
# gcc6.3 needs a g++ with '-no-pie', and system default of 4.8 does not
- name: configure gcc6.3
shell: CC=/data/gcc-4.9/bin/gcc-4.9 CXX=/data/gcc-4.9/bin/g++-4.9 /data/tmp/gcc-6.3.0/configure --with-mpfr=/data/mpfr-3.1 --with-gmp=/data/gmp-6.1 --with-mpc=/data/mpc-1.0 --prefix=/data/gcc-6.3 --program-suffix=-6.3 --disable-multilib
args:
chdir: /data/tmp/build
when: build_gcc_63.stat.exists == False
tags: gcc63
- name: build gcc63
shell: make -j{{ ansible_processor_cores }}
async: 7000
poll: 10
args:
chdir: /data/tmp/build
when: build_gcc_63.stat.exists == False
tags: gcc63
- name: install gcc63
shell: make install
args:
chdir: /data/tmp/build
when: build_gcc_63.stat.exists == False
tags: gcc63
- name: Clean path
file:
state: absent
path: /data/tmp/
when: build_gcc_63.stat.exists == False
tags: gcc63