开发者

Xcode Intel compiler icc cannot find #include <algorithm>

开发者 https://www.devze.com 2023-01-26 21:12 出处:网络
Hi I\'m trying to comp开发者_Go百科ile a gcc based code on Xcode with the icc compiler (11.1.088)

Hi I'm trying to comp开发者_Go百科ile a gcc based code on Xcode with the icc compiler (11.1.088) but i have the following error:

catastrophic error: could not open source file "algorithm"

After looking to this file, it is located in the gcc include directory, but i get hundreds of errors...

Does anyone have suggestions ?

Thanks.


I was having a really stubborn error very similar to this question but with a different solution.

Algorithm: No such file or directory

My solution:

#ifdef __cplusplus
#include <algorithm>
#endif

I had the #include in a prefix header file (such as the .pch file Xcode gives you in a new project) which was causing it to be included in an Objective-C file, and apparently algorithm is C++ only. Either make sure all your Objective-C files are Objective-C++ (.mm) or add that directive to make sure it doesn't get included in those files.


What do you have set as your base SDK ? And what version of Xcode ?

FWIW I just tried a test with Xcode 3.2.3 and ICC 11.1 (under OS X 10.6 of course) - created a new C++ console application using the standard Xcode template, added #include <algorithm> to main.cc, switched from the default gcc 4.2 to ICC, and it compiles and runs without warnings or errors. The base SDK is the system default (10.6).

It may just be that you have a bad installation of Xcode and/or ICC, or perhaps you have changed a project setting such as base SDK, and this is causing problems.


This problem occurred on my machine, while developing an iOS app. Xcode Version 4.6.3 (4H1503) & iOS version 6.0

I'm using AppCode for development and the IDE added (by accident) the following import statement:

#import <c++/4.2.1/ext/algorithm>


I met this error too, I just forget to change the source from .m to .mm. so, if adjust C++ complier cannot work, try to change the source file.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号