我正在尝试使用GCC 3.4.6将某些软件移植到Solaris 10 Sparc,并且该软件的构建系统使用cmake
。当我运行命令cmake CMakeLists.txt
时,我得到了很多这样的输出:
ADD_LIBRARY for library <library_name> is used with the SHARED
option, but the target platform supports only STATIC libraries.
Building it STATIC instead. This may lead to problems.
显然Solaris 10 Sparc支持共享库,我之前在x86 Solaris 10上构建了这个软件。
任何人遇到这个或可以提供方向?我即将深入了解cmake源代码,以确定它是否与Sparc Solaris存在问题。
感谢。