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

STM32CubeMXのC++プロジェクトでEclipseのエディタがシンボルが見つけられない問題への対処

Posted at

STM32CubeMXで生成したプロジェクトをSystem Workbench for STM32 (AC6)でC++プロジェクトに変換してソースコードを開いたときに、AC6 (Eclipse)のエディターがSTM32のペリフェラルライブラリやHALライブラリのシンボルが見つからないという問題があります。これは標準のインデクサーの設定が適切ではないためです。
この問題を解消するには、プロジェクトの「Properties」を開き設定パネルを表示し、「C/C++ General」の「Preprocessor include Paths, MAcros etc.」の設定を変更します。

  • ProvidersタブでCDT Cross GCC Built-in Compiler Settingsにチェックを入れる
  • Use global provider shared between projectsのチェックを外す
  • Command to get compiler specsに -std=c++11 を追加する

この設定をしてApplyをクリックして設定パネルを閉じます。(またはOKをクリックする)

次に「Project」メニューの「C/C++ Index」から「Rebuild」を選択するか、Project Explorerでプロジェクトを選択した状態で右クリックしてコンテクストメニューを開き「Index」から「Rebuild」を選んで、インデックスを再構成します。

これでAC6のエディタで快適にプログラミングができます。

4
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
4
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?