質問編集履歴
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -199,3 +199,47 @@
|
|
199
199
|
とにかくrubyが入れられないと何もできないので、たすけてください。
|
200
200
|
|
201
201
|
よろしくお願いします。
|
202
|
+
|
203
|
+
|
204
|
+
|
205
|
+
|
206
|
+
|
207
|
+
====== 追記 ======
|
208
|
+
|
209
|
+
下記URLを参考に
|
210
|
+
|
211
|
+
https://qiita.com/marusho_summers/items/1022d5bbfd2f7856d2f8
|
212
|
+
|
213
|
+
```
|
214
|
+
|
215
|
+
echo 'export CC=/usr/bin/gcc' >> ~/.bash_profile
|
216
|
+
|
217
|
+
source ~./bash_profile
|
218
|
+
|
219
|
+
```
|
220
|
+
|
221
|
+
したところ
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
エラーの内容が
|
226
|
+
|
227
|
+
```
|
228
|
+
|
229
|
+
checking for ruby... /Users/shirafujitakuya/.rbenv/shims/ruby
|
230
|
+
|
231
|
+
checking build system type... x86_64-apple-darwin18.6.0
|
232
|
+
|
233
|
+
checking host system type... x86_64-apple-darwin18.6.0
|
234
|
+
|
235
|
+
checking target system type... x86_64-apple-darwin18.6.0
|
236
|
+
|
237
|
+
gcc: error: unable to find utility "gcc", not a developer tool or in PATH
|
238
|
+
|
239
|
+
configure: error: clang version 3.0 or later is required
|
240
|
+
|
241
|
+
make: error: unable to find utility "make", not a developer tool or in PATH
|
242
|
+
|
243
|
+
```
|
244
|
+
|
245
|
+
こうなりました...
|