1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

OS Xをアップデートしたときに困ったこと覚え書き

Last updated at Posted at 2014-06-20

gcc

概要

MarvericksにアップデートしてC言語のプログラムをgccでコンパイルしようとしたら、stdio.hのファイルが見つかりませんみたいなエラーが出た

対処法

Xcodeのコマンドラインツールというものが勝手にアンインストールされてしまったのが問題らしい。ターミナルから下記のコマンドを実行して無事解決。

$ xcode-select --install

なおMarvericksからはXcodeのpreferenceからインストールできなくなったらしい。

tuareg-mode

概要

ocamlをGNU Emacsのtuareg-modeを使って実行したりしてたのだが、こちらも以下のエラーが出てしまった。

M-x tuareg-ocaml
Cannot open load file: tuareg

対処法

ロードパスが通ってなかったことが原因。.emacsに以下のコードを書いて解決。(パスは環境毎に変わるけど)

.emacs
(add-to-list 'load-path "~/tuareg-2.0.6/")

まとめ

初OSアップデートで戸惑いが多かった。アップデートしたら設定をし直す必要があるんだね。

1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?