iOS   发布时间:2022-05-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了如何强制xcode使用正确的iostream标头c大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

xcode 4.2 os x 10.7 当我设置我的包括看起来像: #include <iostream> #include <boost/thread.hpp> 我从位于/ opt / local / include / boost / tr1 / tr1的文件中收到以下错误 Lexical or Preprocessor Issue 'boost/tr1/detail/config_all.h
xcode 4.2
os x 10.7

当我设置我的包括看起来像:

#include <iostream>
#include <boost/thread.hpp>

我从位于/ opt / local / include / boost / tr1 / tr1的文件中收到以下错误

Lexical or Preprocessor Issue
'boost/tr1/detail/config_all.hpp' file not found

/ opt / local / include / boost / tr1 / tr1 / iostream文件内容

//  (C) Copyright John Maddock 2005.
//  Use,modification and diStribution are subject to the
//  Boost Software License,Version 1.0. (See accompanying file
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
//  This file exists to prevent std lib headers from accidentally
//  including a TR1 extention header; we must suppress this otherwise
//  we can end up with cyclic dependencies with some std lib implementations.
//
#ifndef BOOST_TR1_iostream_INCLUDED
#  define BOOST_TR1_iostream_INCLUDED
#  ifndef BOOST_TR1_NO_REcursION
#     define BOOST_TR1_NO_REcursION
#     define BOOST_TR1_NO_iostream_REcursION
#  endif
#  include <boost/tr1/detail/config_all.hpp>
#  if Defined(BOOST_HAS_INCLUDE_NEXT) && !defined(BOOST_TR1_DISABLE_INCLUDE_NEXT)
#     include_next <iostream>
#  else
#     include BOOST_TR1_STD_HEADER(iostream)
#  endif
#  ifdef BOOST_TR1_NO_iostream_REcursION
#     undef BOOST_TR1_NO_iostream_REcursION
#     undef BOOST_TR1_NO_REcursION
#  endif
#endif

@R_400_10675@用位于/Developer/SDKs/MacOSX10.7.sdk/usr/include/c /4.2.1/的iostream标头

你将不得不原谅我,因为我对c很新,甚至更新xcode.预先感谢您的任何帮助.

解决方法

绝对关闭递归搜索.如果没有指定完整的提升路径,您永远不能包含boost标头.很多Boost都是最终会成为标准的功能的训练基础,因此有很多Boost标题与标准标题共享同一个名称.还有一堆与其他boost标题共享同一名称的boost标头.这将导致你的悲伤无止境.
@H_197_52@

大佬总结

以上是大佬教程为你收集整理的如何强制xcode使用正确的iostream标头c全部内容,希望文章能够帮你解决如何强制xcode使用正确的iostream标头c所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。