3
2

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 3 years have passed since last update.

configure で c compiler cannot create executablesとエラーがでて困った時の対処法

Last updated at Posted at 2020-08-17

##はじめに
Ubuntuで

c compiler cannot create executables

というエラーが生じたときの(あくまで私の場合の)原因を書き残しておく

##状況

configureする際に、

# ./configure --prefix=/usr/local/openmpi-4.0.4 CC=gcc CFLAGS=-03

としたところ上のようなエラーが生じた。

たいていは、
# apt install build-essential
でgcc(やg++,make)を一括してインストールしてしまえば解決するのだが、私の場合しっかりと最新版になっていた。

##対処法

./configure --prefix=/usr/local/openmpi-4.0.4 CC=gcc CFLAGS=-03

./configure --prefix=/usr/local/openmpi-4.0.4 CC=gcc CFLAGS=-O3

と数字の「0」から大文字のオー「O」へ変更する。

この記事上では違いがはっきりしているが、ubuntuのCUI上では違いが分かりずらかった。

#####参考にしたページのリンクは下記のURL
https://askubuntu.com/questions/647583/how-to-fix-configure-error-c-compiler-cannot-create-executables

3
2
0

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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?