我正在尝试使用英特尔编译器在 Visual Studio 2010 中构建 mlpack。有很多语句,例如
#if defined(_MSC_VER)
#if (_MSC_VER < 1700)
#error "*** Need a newer compiler ***"
#endif
这是抛出一个错误。但是,这应该不是问题,因为我使用的是英特尔编译器。我应该如何#if defined(_MSC_VER)
做假?
有很多地方都有此代码,因此无法手动取消注释它们。
我正在尝试使用英特尔编译器在 Visual Studio 2010 中构建 mlpack。有很多语句,例如
#if defined(_MSC_VER)
#if (_MSC_VER < 1700)
#error "*** Need a newer compiler ***"
#endif
这是抛出一个错误。但是,这应该不是问题,因为我使用的是英特尔编译器。我应该如何#if defined(_MSC_VER)
做假?
有很多地方都有此代码,因此无法手动取消注释它们。