From ee496b6e2f6aeb13a4c18730d457c5ef2a73896e Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 17 Jul 2013 15:24:41 -0700 Subject: boost: disable coroutine for non-x86_64 builds. Coroutine depends on context which is also disabled in this case. Closes #21225. --- Library/Formula/boost.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Library') diff --git a/Library/Formula/boost.rb b/Library/Formula/boost.rb index 5c44f5250..71e26a7ce 100644 --- a/Library/Formula/boost.rb +++ b/Library/Formula/boost.rb @@ -103,7 +103,11 @@ class Boost < Formula # The context library is implemented as x86_64 ASM, so it # won't build on PPC or 32-bit builds # see https://github.com/mxcl/homebrew/issues/17646 - bargs << "--without-libraries=context" if Hardware::CPU.type == :ppc || Hardware::CPU.bits == 32 || build.universal? + if Hardware::CPU.type == :ppc || Hardware::CPU.bits == 32 || build.universal? + bargs << "--without-libraries=context" + # The coroutine library depends on the context library. + bargs << "--without-libraries=coroutine" + end # Boost.Log cannot be built using Apple GCC at the moment. Disabled # on such systems. -- cgit v1.2.3 >
aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mcpp.rb
blob: 4d3f9461e8de72e056a36b9a339d0a7d334f5def (plain)
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