質問編集履歴

1

追記

2021/01/12 10:59

投稿

Joes
Joes

スコア18

test CHANGED
File without changes
test CHANGED
@@ -63,3 +63,57 @@
63
63
 
64
64
 
65
65
  もし対処法をご存知の方がいらっしゃったらご教示お願い致します。
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+ 追記
74
+
75
+ ```
76
+
77
+ $ brew reinstall gcc
78
+
79
+ ```
80
+
81
+ をタイプしたところ
82
+
83
+ gccのpathが変わってしまったようです。
84
+
85
+ ```
86
+
87
+ $ gcc -v
88
+
89
+ -bash: /usr/local/bin/gcc: No such file or directory
90
+
91
+ ```
92
+
93
+ ```
94
+
95
+ $ which gcc
96
+
97
+ /usr/bin/gcc
98
+
99
+ ```
100
+
101
+
102
+
103
+ ```
104
+
105
+ $ /usr/bin/gcc -v
106
+
107
+
108
+
109
+ Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/4.2.1
110
+
111
+ Apple clang version 12.0.0 (clang-1200.0.32.28)
112
+
113
+ Target: x86_64-apple-darwin20.1.0
114
+
115
+ Thread model: posix
116
+
117
+ InstalledDir: /Library/Developer/CommandLineTools/usr/bin
118
+
119
+ ```