Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

admob - use of '@import' when c++ modules are disabled, consider using -fmodules and -fcxx-modules

This came up for me when I tried to integrate AdMob using Cocoapods into an Objective C++ project.

use of '@import' when c++ modules are disabled, consider using -fmodules and -fcxx-modules

What is this error and how do I fix it?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Fix is easy, you have to do what the warning says and not only enable C and Objective-C modules but also C++ modules.

So you must add the compiler flag -fcxx-modules to "Other C++ Flags" in your Build Settings


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...