GCC中的宏可以工作,但Solaris编译器失败了?

时间:2013-04-18 11:19:22

标签: c++ macros compiler-errors solaris exiv2

来源:svn checkout svn://dev.exiv2.org/svn/trunk(最新版本:3020)

我的平台:Fedora 17 64位

以下命令有效:

cmake -DCMAKE_CXX_FLAGS=-library=stlport4 -    
DCMAKE_CXX_COMPILER=/opt/oracle/solarisstudio12.3/bin/CC -        
DCMAKE_C_COMPILER=/opt/oracle/solarisstudio12.3/bin/cc .

但是在我做完之后,我得到了错误:

Scanning dependencies of target exiv2lib
[ 17%] Building CXX object src/CMakeFiles/exiv2lib.dir/asfvideo.cpp.o
cd /home/Wani/GSoC/exiv2-trunk/trunk/src && /opt/oracle/solarisstudio12.3/bin/CC   -    
DEXV_BUILDING_LIB -DEXV_HAVE_DLL -DEXV_LOCALEDIR=\"/usr/local/share/locale\" -
DEXV_HAVE_STDINT_H -library=stlport4 -KPIC -I/home/Wani/GSoC/exiv2-trunk/trunk -
I/home/Wani/GSoC/exiv2-trunk/trunk/xmpsdk/include    -o 
CMakeFiles/exiv2lib.dir/asfvideo.cpp.o -c /home/Wani/GSoC/exiv2-
trunk/trunk/src/asfvideo.cpp
"/home/Wani/GSoC/exiv2-trunk/trunk/src/error.cpp", line 29: Error: Multiple declaration 
for rcsId.
1 Error(s) detected.

error.cpp的内容:

28 #include "rcsid_int.hpp"
29 EXIV2_RCSID("@(#) $Id: error.cpp 2681 2012-03-22 15:19:35Z ahuggel $")

rcsid_int.hpp的内容:

#ifndef RCSID_INT_HPP_
#define RCSID_INT_HPP_

#if !defined (EXIV2_RCSID)
#if defined(__clang__)
#define EXIV2_RCSID(id)

#elif defined(OS_SOLARIS)
#define EXIV2_RCSID(id) \
{ \
inline const char* getRcsId(const char*) { return id ; } \
const char* rcsId = getRcsId(rcsId); \
}

#else
#define EXIV2_RCSID(id) \
namespace { \
inline const char* getRcsId(const char*) { return id ; } \
const char* rcsId = getRcsId(rcsId); \
}
#endif

#endif 
#endif

如果我使用GCC编译相同的程序,它可以正常工作。

参见diff,因为Rev 3019适用于GCC和Solaris编译器:http://dev.exiv2.org/projects/exiv2/repository/revisions/3020/diff?rev=3020&type=sbs

如何忽略Solaris编译器中的多个声明错误?

我已经计算了r3018和r3019中.cpp文件的预处理输出的差异:

 2a3,6
 > #30 "/home/Wani/exiv2-trunk/trunk/src/asfvideo.cpp"
 > namespace { inline const char * getRcsId ( const char * ) { return "@(#) $Id$" ; }           
 const char * rcsId = getRcsId ( rcsId 
 > #30
 > ) ; } 

1 个答案:

答案 0 :(得分:1)

我在exiv2.org的wiki上发表了对此问题的评论并提供了补丁 这解决了问题。

关键问题是Solaris Studio编译器允许多行 C ++中的宏。我提供的补丁省略了这一点,因为它注释掉了 整个rcsId声明。

我可以确定,rcsid_int.hpp中的正确声明如下:

#if defined(__clang__) || (defined(OS_SOLARIS) && defined(__SUNPRO_CC))
#define EXIV2_RCSID(id)
#else
#define EXIV2_RCSID(id) \
    namespace { \
        inline const char* getRcsId(const char*) { return id ; } \
        const char* rcsId = getRcsId(rcsId); \
    }
#endif

这导致预处理的源包含rcsId字符串。