web-dev-qa-db-ja.com

Solaris11に.netMonoをインストールするにはどうすればよいですか(ソースコードのコンパイル)?

最後のモノタールをSolaris11にダウンロードしました。必要なパッケージをインストールします。

# pkg install autoconf
# pkg install automake
# pkg install libtool
# pkg install gcc

64ビットSolaris11/x86(x86_64-pc-solaris2.11)でgcc4.8.2を使用してmono5.18.0.268を構成しようとすると、次のように失敗しました。$ ./configure.sh

 (...) 
 checking for PTHREAD_MUTEX_RECURSIVE... no 
 configure: error:
 Posix system lacks support for recursive mutexes

Configure.acで「D_XOPEN_SOURCE = 500」を「D_XOPEN_SOURCE = 600」に変更しましたが改善されていません

        dnl *****************************
        dnl *** Checks for libxnet    ***
        dnl *****************************
        case "${Host}" in
                *solaris* )
                        AC_MSG_CHECKING(for Solaris XPG4 support)
                        if test -f /usr/lib/libxnet.so; then
                                CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=600"
                                CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__"
                                CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED=1"
                                LIBS="$LIBS -lxnet"
                                AC_MSG_RESULT(yes)
                        else
                                AC_MSG_RESULT(no)
                        fi

Autogen.shを実行するとconfigureが呼び出されるため、同じ問題が発生します。

バグ31999を認識しています-Solaris10以降ではC99とXPG5が一致しません https://bugzilla.xamarin.com/show_bug.cgi?id=31999

7日前にmonogithubで問題/バグ(268)を作成しました https://github.com/mono/gtk-sharp/issues/268

Solarisへのモノラルインストールに関する他のページも読みました。 gccを更新する必要があります

2
Pedro Polonia

_XOPEN_SOURCEに設定した正確な値は重要ではありません。 Monoは_XOPEN_SOURCE_EXTENDEDマクロを誤って定義しています。

case "${Host}" in
        *solaris* )
                AC_MSG_CHECKING(for Solaris XPG4 support)
                if test -f /usr/lib/libxnet.so; then
                        CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=600"
                        CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__"
                        CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED=1" <-- WRONG
                        LIBS="$LIBS -lxnet"

_XOPEN_SOURCE_EXTENDEDマクロは、 POSIX 6 または POSIX 7標準 のいずれにも存在しません。

Linuxでさえ、ここで_XOPEN_SOURCE_EXTENDEDを定義すべきではないことに同意しています。 Linux feature_test_macrosのマニュアルページ

_ XOPEN_SOURCE_EXTENDED

このマクロが定義されていて、_XOPEN_SOURCEが定義されている場合は、XPG4v2(SUSv1)UNIX拡張機能(UNIX 95)に対応する定義を公開します。 500以上の値で_XOPEN_SOURCEを定義しても、_XOPEN_SOURCE_EXTENDEDを定義するのと同じ効果が得られます。新しいソースコードでの_XOPEN_SOURCE_EXTENDEDの使用は避けてください。

_XOPEN_SOURCEを500以上の値で定義すると、_XOPEN_SOURCE_EXTENDEDを定義するのと同じ効果があるため、後者の(廃止された)機能テストマクロは、通常、マニュアルページの概要には記載されていません。

正確な表現に注意してください。

このマクロ(_XOPEN_SOURCE_EXTENDED)が定義され、_XOPEN_SOURCEが定義されている場合は、XPG4v2(SUSv1)UNIX拡張機能(UNIX 95)に対応する定義を公開します。 ...

_XOPEN_SOURCEを任意の値に定義し、_XOPEN_SOURCE_EXTENDEDも定義すると、XPG4v2になりますが、それは[〜#〜]ではありません[〜#〜]再帰的ミューテックスを取得するために必要なXPG6。

Solaris 11 /usr/include/sys/feature_tests.hでのこのチェック に遭遇している可能性があります。

/*
 * It is invalid to compile an XPG3, XPG4, XPG4v2, or XPG5 application
 * using c99.  The same is true for POSIX.1-1990, POSIX.2-1992, POSIX.1b,
 * and POSIX.1c applications. Likewise, it is invalid to compile an XPG6
 * or a POSIX.1-2001 application with anything other than a c99 or later
 * compiler.  Therefore, we force an error in both cases.
 */
#if defined(_STDC_C99) && (defined(__XOPEN_OR_POSIX) && !defined(_XPG6))
#error "Compiler or options invalid for pre-UNIX 03 X/Open applications \
 and pre-2001 POSIX applications"
#Elif !defined(_STDC_C99) && \
 (defined(__XOPEN_OR_POSIX) && defined(_XPG6))
#error "Compiler or options invalid; UNIX 03 and POSIX.1-2001 applications \
 require the use of c99"
#endif

_XPG6が定義されます ファイルの前半、このブロック内

/*
 * Use of _XOPEN_SOURCE
 *
 * The following X/Open specifications are supported:
 *
 * X/Open Portability Guide, Issue 3 (XPG3)
 * X/Open CAE Specification, Issue 4 (XPG4)
 * X/Open CAE Specification, Issue 4, Version 2 (XPG4v2)
 * X/Open CAE Specification, Issue 5 (XPG5)
 * Open Group Technical Standard, Issue 6 (XPG6), also referred to as
 *    IEEE Std. 1003.1-2001 and ISO/IEC 9945:2002.
 *
 * XPG4v2 is also referred to as UNIX 95 (SUS or SUSv1).
 * XPG5 is also referred to as UNIX 98 or the Single Unix Specification,
 *     Version 2 (SUSv2)
 * XPG6 is the result of a merge of the X/Open and POSIX specifications
 *     and as such is also referred to as IEEE Std. 1003.1-2001 in
 *     addition to UNIX 03 and SUSv3.
 *
 * When writing a conforming X/Open application, as per the specification
 * requirements, the appropriate feature test macros must be defined at
 * compile time. These are as follows. For more info, see standards(5).
 *
 * Feature Test Macro                    Specification
 * ------------------------------------------------  -------------
 * _XOPEN_SOURCE                                         XPG3
 * _XOPEN_SOURCE && _XOPEN_VERSION = 4                   XPG4
 * _XOPEN_SOURCE && _XOPEN_SOURCE_EXTENDED = 1           XPG4v2
 * _XOPEN_SOURCE = 500                                   XPG5
 * _XOPEN_SOURCE = 600  (or POSIX_C_SOURCE=200112L)      XPG6
 *
 * In order to simplify the guards within the headers, the following
 * implementation private test macros have been created. Applications
 * must NOT use these private test macros as unexpected results will
 * occur.
 *
 * Note that in general, the use of these private macros is cumulative.
 * For example, the use of _XPG3 with no other restrictions on the X/Open
 * namespace will make the symbols visible for XPG3 through XPG6
 * compilation environments. The use of _XPG4_2 with no other X/Open
 * namespace restrictions indicates that the symbols were introduced in
 * XPG4v2 and are therefore visible for XPG4v2 through XPG6 compilation
 * environments, but not for XPG3 or XPG4 compilation environments.
 *
 * _XPG3    X/Open Portability Guide, Issue 3 (XPG3)
 * _XPG4    X/Open CAE Specification, Issue 4 (XPG4)
 * _XPG4_2  X/Open CAE Specification, Issue 4, Version 2 (XPG4v2/UNIX 95/SUS)
 * _XPG5    X/Open CAE Specification, Issue 5 (XPG5/UNIX 98/SUSv2)
 * _XPG6    Open Group Technical Standard, Issue 6 (XPG6/UNIX 03/SUSv3)
 */

/* X/Open Portability Guide, Issue 3 */
#if defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE - 0 < 500) && \
    (_XOPEN_VERSION - 0 < 4) && !defined(_XOPEN_SOURCE_EXTENDED)
#define _XPG3
/* X/Open CAE Specification, Issue 4 */
#Elif   (defined(_XOPEN_SOURCE) && _XOPEN_VERSION - 0 == 4)
#define _XPG4
#define _XPG3
/* X/Open CAE Specification, Issue 4, Version 2 */
#Elif (defined(_XOPEN_SOURCE) && _XOPEN_SOURCE_EXTENDED - 0 == 1)
#define _XPG4_2
#define _XPG4
#define _XPG3
/* X/Open CAE Specification, Issue 5 */
#Elif   (_XOPEN_SOURCE - 0 == 500)
#define _XPG5
#define _XPG4_2
#define _XPG4
#define _XPG3
#undef  _POSIX_C_SOURCE
#define _POSIX_C_SOURCE         199506L
/* Open Group Technical Standard , Issue 6 */
#Elif   (_XOPEN_SOURCE - 0 == 600) || (_POSIX_C_SOURCE - 0 == 200112L)
#define _XPG6
#define _XPG5
#define _XPG4_2
#define _XPG4
#define _XPG3
#undef  _POSIX_C_SOURCE
#define _POSIX_C_SOURCE         200112L
#undef  _XOPEN_SOURCE
#define _XOPEN_SOURCE           600
#endif
1
Andrew Henle