Imported Upstream version 6.12.0.156
Former-commit-id: 8ff468edef2b5377f24097610316870b85491049
This commit is contained in:
parent
4651b7ea22
commit
a2828bff8b
@ -1,7 +1,7 @@
|
||||
[
|
||||
{
|
||||
"name": "roslyn",
|
||||
"url": "git://github.com/mono/roslyn.git",
|
||||
"url": "https://github.com/mono/roslyn.git",
|
||||
"rev": "6bfcd4e770609a38b8523e83ce1ec943162f30bb",
|
||||
"remote-branch": "origin/mono-testing",
|
||||
"branch": "mono-testing",
|
||||
@ -9,7 +9,7 @@
|
||||
},
|
||||
{
|
||||
"name": "coreclr",
|
||||
"url": "git://github.com/mono/coreclr.git",
|
||||
"url": "https://github.com/mono/coreclr.git",
|
||||
"rev": "90f7060935732bb624e1f325d23f63072433725f",
|
||||
"remote-branch": "origin/mono",
|
||||
"branch": "mono",
|
||||
@ -25,7 +25,7 @@
|
||||
},
|
||||
{
|
||||
"name": "benchmarker",
|
||||
"url": "git://github.com/xamarin/benchmarker.git",
|
||||
"url": "https://github.com/xamarin/benchmarker.git",
|
||||
"rev": "97f618cd585af549dd861b7c142656c496f6a89b",
|
||||
"remote-branch": "origin/master",
|
||||
"branch": "master",
|
||||
|
@ -1 +1 @@
|
||||
3a9f1ec47f8decfa3e07b32b80faebdf28e7b6b9
|
||||
67aeb94a6000806fd4d8fdaea414faf0e7282e7e
|
@ -1 +1 @@
|
||||
3a5b5e906368615a2602028aa0cdbd01729dc4be
|
||||
bd006a3e49252abbc06e4e4bb4528a48ea894195
|
2
external/bdwgc/.gitmodules
vendored
2
external/bdwgc/.gitmodules
vendored
@ -1,4 +1,4 @@
|
||||
[submodule "libatomic_ops"]
|
||||
path = libatomic_ops
|
||||
url = git://github.com/Unity-Technologies/libatomic_ops.git
|
||||
url = https://github.com/Unity-Technologies/libatomic_ops.git
|
||||
branch = unity-release-7_4
|
||||
|
16
external/bdwgc/allchblk.c
vendored
16
external/bdwgc/allchblk.c
vendored
@ -64,6 +64,12 @@
|
||||
word GC_free_bytes[N_HBLK_FLS+1] = { 0 };
|
||||
/* Number of free bytes on each list. Remains visible to GCJ. */
|
||||
|
||||
void GC_clear_freelist(void)
|
||||
{
|
||||
memset(GC_hblkfreelist, 0, sizeof(GC_hblkfreelist));
|
||||
memset(GC_free_bytes, 0, sizeof(GC_free_bytes));
|
||||
}
|
||||
|
||||
/* Return the largest n such that the number of free bytes on lists */
|
||||
/* n .. N_HBLK_FLS is greater or equal to GC_max_large_allocd_bytes */
|
||||
/* minus GC_large_allocd_bytes. If there is no such n, return 0. */
|
||||
@ -405,10 +411,12 @@ GC_INNER void GC_unmap_old(void)
|
||||
* have a virtual paging system, so it does not have a large virtual address
|
||||
* space that a standard x64 platform has.
|
||||
*/
|
||||
#if defined(SN_TARGET_PS3) || defined(SN_TARGET_PSP2) || defined(SN_TARGET_ORBIS) || defined(_XBOX_ONE)
|
||||
# define UNMAP_THRESHOLD 2
|
||||
#else
|
||||
# define UNMAP_THRESHOLD 6
|
||||
#if !defined(UNMAP_THRESHOLD)
|
||||
#if defined(SN_TARGET_PS3) || defined(SN_TARGET_PSP2) || defined(_XBOX_ONE)
|
||||
# define UNMAP_THRESHOLD 2
|
||||
#else
|
||||
# define UNMAP_THRESHOLD 6
|
||||
#endif
|
||||
#endif
|
||||
|
||||
for (i = 0; i <= N_HBLK_FLS; ++i) {
|
||||
|
25
external/bdwgc/alloc.c
vendored
25
external/bdwgc/alloc.c
vendored
@ -20,7 +20,7 @@
|
||||
#include <stdio.h>
|
||||
#if !defined(MACOS) && !defined(MSWINCE)
|
||||
# include <signal.h>
|
||||
# if !defined(SN_TARGET_ORBIS) && !defined(SN_TARGET_PSP2) \
|
||||
# if !defined(GC_NO_TYPES) && !defined(SN_TARGET_PSP2) \
|
||||
&& !defined(__CC_ARM)
|
||||
# include <sys/types.h>
|
||||
# endif
|
||||
@ -366,6 +366,22 @@ STATIC void GC_clear_a_few_frames(void)
|
||||
/* Heap size at which we need a collection to avoid expanding past */
|
||||
/* limits used by blacklisting. */
|
||||
STATIC word GC_collect_at_heapsize = (word)(-1);
|
||||
STATIC GC_bool GC_should_start_incremental_collection = FALSE;
|
||||
STATIC GC_bool GC_disable_automatic_collection = FALSE;
|
||||
|
||||
GC_API void GC_set_disable_automatic_collection(GC_bool disable)
|
||||
{
|
||||
GC_disable_automatic_collection = disable;
|
||||
}
|
||||
|
||||
GC_API void GC_start_incremental_collection()
|
||||
{
|
||||
if (GC_incremental)
|
||||
{
|
||||
GC_should_start_incremental_collection = TRUE;
|
||||
GC_collect_a_little();
|
||||
}
|
||||
}
|
||||
|
||||
/* Have we allocated enough to amortize a collection? */
|
||||
GC_INNER GC_bool GC_should_collect(void)
|
||||
@ -376,6 +392,13 @@ GC_INNER GC_bool GC_should_collect(void)
|
||||
last_gc_no = GC_gc_no;
|
||||
last_min_bytes_allocd = min_bytes_allocd();
|
||||
}
|
||||
if (GC_should_start_incremental_collection)
|
||||
{
|
||||
GC_should_start_incremental_collection = FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
if (GC_disable_automatic_collection)
|
||||
return FALSE;
|
||||
return(GC_adj_bytes_allocd() >= last_min_bytes_allocd
|
||||
|| GC_heapsize >= GC_collect_at_heapsize);
|
||||
}
|
||||
|
704
external/bdwgc/autom4te.cache/requests
vendored
704
external/bdwgc/autom4te.cache/requests
vendored
@ -42,162 +42,162 @@
|
||||
'configure.ac'
|
||||
],
|
||||
{
|
||||
'_LT_AC_LANG_CXX' => 1,
|
||||
'AM_AUX_DIR_EXPAND' => 1,
|
||||
'AC_ENABLE_STATIC' => 1,
|
||||
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
||||
'include' => 1,
|
||||
'AC_DISABLE_FAST_INSTALL' => 1,
|
||||
'AC_LTDL_PREOPEN' => 1,
|
||||
'AM_PROG_INSTALL_SH' => 1,
|
||||
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'LT_LANG' => 1,
|
||||
'_LT_COMPILER_BOILERPLATE' => 1,
|
||||
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
||||
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'_LT_AC_LANG_GCJ' => 1,
|
||||
'AC_PROG_NM' => 1,
|
||||
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
||||
'_LT_AC_TAGVAR' => 1,
|
||||
'AC_LIBTOOL_GCJ' => 1,
|
||||
'AC_ENABLE_SHARED' => 1,
|
||||
'_AM_DEPENDENCIES' => 1,
|
||||
'LT_PATH_NM' => 1,
|
||||
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AC_PATH_MAGIC' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AM_RUN_LOG' => 1,
|
||||
'_AM_AUTOCONF_VERSION' => 1,
|
||||
'_LT_LINKER_OPTION' => 1,
|
||||
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
||||
'LT_AC_PROG_GCJ' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'_LT_AC_LANG_F77_CONFIG' => 1,
|
||||
'_AM_SET_OPTION' => 1,
|
||||
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'AM_ENABLE_SHARED' => 1,
|
||||
'LT_LIB_M' => 1,
|
||||
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
||||
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
||||
'AM_PROG_AS' => 1,
|
||||
'AC_DEFUN_ONCE' => 1,
|
||||
'AM_MISSING_PROG' => 1,
|
||||
'_LT_DLL_DEF_P' => 1,
|
||||
'_LT_AC_LANG_RC_CONFIG' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AM_SANITY_CHECK' => 1,
|
||||
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
||||
'AM_MISSING_HAS_RUN' => 1,
|
||||
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'_LT_PROG_CXX' => 1,
|
||||
'AM_PROG_LD' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'LT_OUTPUT' => 1,
|
||||
'AC_DEFUN' => 1,
|
||||
'_LT_AC_SYS_COMPILER' => 1,
|
||||
'LT_PROG_RC' => 1,
|
||||
'AC_LIBTOOL_DLOPEN' => 1,
|
||||
'_LT_AC_FILE_LTDLL_C' => 1,
|
||||
'_LT_AC_SHELL_INIT' => 1,
|
||||
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
||||
'AC_LIBTOOL_SETUP' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
||||
'_LT_PATH_TOOL_PREFIX' => 1,
|
||||
'LTOPTIONS_VERSION' => 1,
|
||||
'_AM_IF_OPTION' => 1,
|
||||
'AC_ENABLE_FAST_INSTALL' => 1,
|
||||
'AM_DEP_TRACK' => 1,
|
||||
'AC_LIBTOOL_PICMODE' => 1,
|
||||
'_LT_AC_CHECK_DLFCN' => 1,
|
||||
'_LT_AC_LANG_F77' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
||||
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
||||
'LTSUGAR_VERSION' => 1,
|
||||
'_LT_AC_LANG_C_CONFIG' => 1,
|
||||
'AC_LIBTOOL_F77' => 1,
|
||||
'_AC_PROG_LIBTOOL' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
||||
'_AM_CONFIG_MACRO_DIRS' => 1,
|
||||
'LT_CMD_MAX_LEN' => 1,
|
||||
'LT_PROG_GO' => 1,
|
||||
'AM_MAKE_INCLUDE' => 1,
|
||||
'_LT_PROG_LTMAIN' => 1,
|
||||
'AC_LIBTOOL_RC' => 1,
|
||||
'AC_LTDL_ENABLE_INSTALL' => 1,
|
||||
'LTVERSION_VERSION' => 1,
|
||||
'AM_SET_LEADING_DOT' => 1,
|
||||
'AM_PROG_NM' => 1,
|
||||
'LT_AC_PROG_EGREP' => 1,
|
||||
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
||||
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AM_SET_DEPDIR' => 1,
|
||||
'AM_MISSING_PROG' => 1,
|
||||
'_LT_PROG_F77' => 1,
|
||||
'AC_CONFIG_MACRO_DIR' => 1,
|
||||
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
||||
'AU_DEFUN' => 1,
|
||||
'AC_PROG_LD' => 1,
|
||||
'LT_SYS_DLOPEN_SELF' => 1,
|
||||
'_LT_WITH_SYSROOT' => 1,
|
||||
'm4_include' => 1,
|
||||
'_AM_PROG_TAR' => 1,
|
||||
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
||||
'AC_DISABLE_SHARED' => 1,
|
||||
'AC_PATH_TOOL_PREFIX' => 1,
|
||||
'AC_LIBTOOL_CONFIG' => 1,
|
||||
'LTOBSOLETE_VERSION' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'_AM_PROG_CC_C_O' => 1,
|
||||
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
||||
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
||||
'_AM_SET_OPTIONS' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'_LT_LINKER_BOILERPLATE' => 1,
|
||||
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
||||
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
||||
'AC_LTDL_OBJDIR' => 1,
|
||||
'AC_PROG_EGREP' => 1,
|
||||
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
||||
'LT_PROG_GCJ' => 1,
|
||||
'_LT_COMPILER_OPTION' => 1,
|
||||
'AC_LIBTOOL_WIN32_DLL' => 1,
|
||||
'AC_LIBTOOL_FC' => 1,
|
||||
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
||||
'AC_ENABLE_STATIC' => 1,
|
||||
'AC_LIBTOOL_GCJ' => 1,
|
||||
'LTVERSION_VERSION' => 1,
|
||||
'_LT_AC_PROG_CXXCPP' => 1,
|
||||
'_LT_CC_BASENAME' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'AC_LIBTOOL_CXX' => 1,
|
||||
'AM_PROG_INSTALL_STRIP' => 1,
|
||||
'AC_PROG_LD_GNU' => 1,
|
||||
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
||||
'AC_LIBTOOL_OBJDIR' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'AM_DISABLE_SHARED' => 1,
|
||||
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
||||
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
||||
'_LT_PROG_FC' => 1,
|
||||
'AM_ENABLE_STATIC' => 1,
|
||||
'_AM_MANGLE_OPTION' => 1,
|
||||
'GC_SET_VERSION' => 1,
|
||||
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
||||
'AM_SUBST_NOTMAKE' => 1,
|
||||
'LT_PATH_LD' => 1,
|
||||
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'_LT_PATH_TOOL_PREFIX' => 1,
|
||||
'LT_AC_PROG_RC' => 1,
|
||||
'_LT_AC_LOCK' => 1,
|
||||
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
||||
'LT_AC_PROG_SED' => 1,
|
||||
'LT_PROG_GO' => 1,
|
||||
'AM_MISSING_HAS_RUN' => 1,
|
||||
'AM_SUBST_NOTMAKE' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AC_PROG_LD' => 1,
|
||||
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
||||
'AM_ENABLE_SHARED' => 1,
|
||||
'AC_PATH_TOOL_PREFIX' => 1,
|
||||
'_LT_LINKER_BOILERPLATE' => 1,
|
||||
'AC_DEFUN' => 1,
|
||||
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
||||
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
||||
'_LT_PROG_FC' => 1,
|
||||
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'_LT_AC_SHELL_INIT' => 1,
|
||||
'AC_DISABLE_FAST_INSTALL' => 1,
|
||||
'AC_LIBTOOL_RC' => 1,
|
||||
'AM_RUN_LOG' => 1,
|
||||
'_LT_AC_LANG_RC_CONFIG' => 1,
|
||||
'_AC_PROG_LIBTOOL' => 1,
|
||||
'AC_LIBTOOL_CXX' => 1,
|
||||
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
||||
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
||||
'_AM_SET_OPTIONS' => 1,
|
||||
'AM_PROG_NM' => 1,
|
||||
'_AM_CONFIG_MACRO_DIRS' => 1,
|
||||
'_LT_AC_CHECK_DLFCN' => 1,
|
||||
'AC_PROG_NM' => 1,
|
||||
'AC_CONFIG_MACRO_DIR' => 1,
|
||||
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
||||
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
||||
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'AC_ENABLE_FAST_INSTALL' => 1,
|
||||
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
||||
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
||||
'_LT_LINKER_OPTION' => 1,
|
||||
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'LT_CMD_MAX_LEN' => 1,
|
||||
'_LT_AC_LANG_C_CONFIG' => 1,
|
||||
'LTOPTIONS_VERSION' => 1,
|
||||
'AU_DEFUN' => 1,
|
||||
'_LT_COMPILER_BOILERPLATE' => 1,
|
||||
'LT_OUTPUT' => 1,
|
||||
'AM_DISABLE_STATIC' => 1,
|
||||
'AM_ENABLE_STATIC' => 1,
|
||||
'_LT_AC_SYS_COMPILER' => 1,
|
||||
'_AM_PROG_CC_C_O' => 1,
|
||||
'_LT_COMPILER_OPTION' => 1,
|
||||
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
||||
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
||||
'GC_SET_VERSION' => 1,
|
||||
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
||||
'LT_LIB_M' => 1,
|
||||
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
||||
'_LT_AC_LANG_GCJ' => 1,
|
||||
'LT_PROG_GCJ' => 1,
|
||||
'AM_DISABLE_SHARED' => 1,
|
||||
'AC_CHECK_LIBM' => 1,
|
||||
'_LT_PROG_LTMAIN' => 1,
|
||||
'_LT_AC_LANG_F77' => 1,
|
||||
'_LT_WITH_SYSROOT' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'AM_DEP_TRACK' => 1,
|
||||
'_LT_AC_LANG_F77_CONFIG' => 1,
|
||||
'_LT_CC_BASENAME' => 1,
|
||||
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
||||
'AM_SET_LEADING_DOT' => 1,
|
||||
'LT_AC_PROG_SED' => 1,
|
||||
'AC_LIBTOOL_DLOPEN' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'_AM_SET_OPTION' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AC_DISABLE_STATIC' => 1,
|
||||
'AC_CHECK_LIBM' => 1
|
||||
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
||||
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AC_ENABLE_SHARED' => 1,
|
||||
'_LT_AC_LOCK' => 1,
|
||||
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
||||
'_LT_AC_LANG_CXX' => 1,
|
||||
'LT_PATH_LD' => 1,
|
||||
'LT_PROG_RC' => 1,
|
||||
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
||||
'm4_include' => 1,
|
||||
'_LT_PROG_CXX' => 1,
|
||||
'AM_PROG_INSTALL_STRIP' => 1,
|
||||
'AC_DEFUN_ONCE' => 1,
|
||||
'AC_LIBTOOL_F77' => 1,
|
||||
'AM_PROG_INSTALL_SH' => 1,
|
||||
'_AM_AUTOCONF_VERSION' => 1,
|
||||
'_LT_AC_FILE_LTDLL_C' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
||||
'AM_SANITY_CHECK' => 1,
|
||||
'_AM_MANGLE_OPTION' => 1,
|
||||
'AC_LIBTOOL_OBJDIR' => 1,
|
||||
'AM_AUX_DIR_EXPAND' => 1,
|
||||
'AC_LTDL_ENABLE_INSTALL' => 1,
|
||||
'AC_LTDL_OBJDIR' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
||||
'AM_PROG_LD' => 1,
|
||||
'AC_PATH_MAGIC' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'AC_DISABLE_SHARED' => 1,
|
||||
'_AM_DEPENDENCIES' => 1,
|
||||
'AM_PROG_AS' => 1,
|
||||
'AM_MAKE_INCLUDE' => 1,
|
||||
'AC_PROG_LD_GNU' => 1,
|
||||
'AC_LIBTOOL_CONFIG' => 1,
|
||||
'LT_SYS_DLOPEN_SELF' => 1,
|
||||
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
||||
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
||||
'AC_LTDL_PREOPEN' => 1,
|
||||
'_AM_PROG_TAR' => 1,
|
||||
'AM_SET_DEPDIR' => 1,
|
||||
'LTSUGAR_VERSION' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'LT_AC_PROG_GCJ' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
||||
'include' => 1,
|
||||
'LT_LANG' => 1,
|
||||
'AC_LIBTOOL_FC' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
||||
'LT_PATH_NM' => 1,
|
||||
'AC_LIBTOOL_SETUP' => 1,
|
||||
'_LT_DLL_DEF_P' => 1,
|
||||
'LTOBSOLETE_VERSION' => 1,
|
||||
'_LT_AC_TAGVAR' => 1,
|
||||
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'AC_LIBTOOL_PICMODE' => 1,
|
||||
'AC_LIBTOOL_WIN32_DLL' => 1,
|
||||
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
||||
'_AM_IF_OPTION' => 1,
|
||||
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
||||
'AC_PROG_EGREP' => 1
|
||||
}
|
||||
], 'Autom4te::Request' ),
|
||||
bless( [
|
||||
@ -212,66 +212,66 @@
|
||||
'configure.ac'
|
||||
],
|
||||
{
|
||||
'AC_DEFINE_TRACE_LITERAL' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'm4_sinclude' => 1,
|
||||
'AC_FC_PP_DEFINE' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AM_PROG_MOC' => 1,
|
||||
'AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AC_CONFIG_FILES' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'sinclude' => 1,
|
||||
'AC_SUBST_TRACE' => 1,
|
||||
'_AM_COND_ENDIF' => 1,
|
||||
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
||||
'AC_CANONICAL_TARGET' => 1,
|
||||
'AC_SUBST' => 1,
|
||||
'AM_PROG_AR' => 1,
|
||||
'AM_PROG_F77_C_O' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'AM_POT_TOOLS' => 1,
|
||||
'm4_include' => 1,
|
||||
'AM_XGETTEXT_OPTION' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'AC_FC_PP_SRCEXT' => 1,
|
||||
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'_AM_COND_IF' => 1,
|
||||
'AM_PATH_GUILE' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'_AM_COND_ELSE' => 1,
|
||||
'AC_FC_SRCEXT' => 1,
|
||||
'AC_INIT' => 1,
|
||||
'AM_ENABLE_MULTILIB' => 1,
|
||||
'AC_CANONICAL_SYSTEM' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'AC_FC_PP_SRCEXT' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'AC_INIT' => 1,
|
||||
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
|
||||
'_AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AC_LIBSOURCE' => 1,
|
||||
'AC_CANONICAL_BUILD' => 1,
|
||||
'_AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AC_CANONICAL_HOST' => 1,
|
||||
'AH_OUTPUT' => 1,
|
||||
'AC_CONFIG_HEADERS' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'AM_PROG_CXX_C_O' => 1,
|
||||
'AM_EXTRA_RECURSIVE_TARGETS' => 1,
|
||||
'include' => 1,
|
||||
'AM_PROG_FC_C_O' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'AC_FC_FREEFORM' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'AM_PROG_MKDIR_P' => 1,
|
||||
'AC_CONFIG_AUX_DIR' => 1,
|
||||
'AM_GNU_GETTEXT' => 1,
|
||||
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
||||
'AM_NLS' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'AC_REQUIRE_AUX_FILE' => 1,
|
||||
'AC_CONFIG_SUBDIRS' => 1,
|
||||
'include' => 1,
|
||||
'AM_GNU_GETTEXT' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AC_CONFIG_FILES' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'AC_CONFIG_LINKS' => 1,
|
||||
'AM_PROG_MKDIR_P' => 1,
|
||||
'AM_XGETTEXT_OPTION' => 1,
|
||||
'm4_include' => 1,
|
||||
'AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AM_PROG_CXX_C_O' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'AM_PROG_FC_C_O' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AC_CONFIG_LINKS' => 1
|
||||
'AM_PROG_MOC' => 1,
|
||||
'AC_CONFIG_AUX_DIR' => 1,
|
||||
'AC_CANONICAL_HOST' => 1,
|
||||
'AM_POT_TOOLS' => 1,
|
||||
'AC_DEFINE_TRACE_LITERAL' => 1,
|
||||
'AC_FC_SRCEXT' => 1,
|
||||
'AM_PROG_AR' => 1,
|
||||
'AM_PROG_F77_C_O' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'm4_sinclude' => 1,
|
||||
'AC_FC_FREEFORM' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'AM_PATH_GUILE' => 1,
|
||||
'AM_EXTRA_RECURSIVE_TARGETS' => 1,
|
||||
'AC_FC_PP_DEFINE' => 1,
|
||||
'_AM_COND_IF' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'AC_SUBST_TRACE' => 1,
|
||||
'AC_SUBST' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'AC_CONFIG_SUBDIRS' => 1,
|
||||
'AC_CANONICAL_TARGET' => 1,
|
||||
'sinclude' => 1,
|
||||
'AC_CANONICAL_BUILD' => 1,
|
||||
'AC_CONFIG_HEADERS' => 1,
|
||||
'_AM_COND_ENDIF' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'AH_OUTPUT' => 1,
|
||||
'_AM_COND_ELSE' => 1,
|
||||
'AC_CANONICAL_SYSTEM' => 1,
|
||||
'AC_REQUIRE_AUX_FILE' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1
|
||||
}
|
||||
], 'Autom4te::Request' ),
|
||||
bless( [
|
||||
@ -313,162 +313,162 @@
|
||||
'configure.ac'
|
||||
],
|
||||
{
|
||||
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
||||
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
||||
'_AM_SET_OPTIONS' => 1,
|
||||
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
||||
'_AM_PROG_CC_C_O' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'LTOBSOLETE_VERSION' => 1,
|
||||
'AC_LIBTOOL_CONFIG' => 1,
|
||||
'AC_DISABLE_SHARED' => 1,
|
||||
'AC_PATH_TOOL_PREFIX' => 1,
|
||||
'_AM_PROG_TAR' => 1,
|
||||
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
||||
'm4_include' => 1,
|
||||
'_LT_WITH_SYSROOT' => 1,
|
||||
'AU_DEFUN' => 1,
|
||||
'AC_PROG_LD' => 1,
|
||||
'LT_SYS_DLOPEN_SELF' => 1,
|
||||
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
||||
'AC_CONFIG_MACRO_DIR' => 1,
|
||||
'_LT_PROG_F77' => 1,
|
||||
'AM_SET_DEPDIR' => 1,
|
||||
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
||||
'LT_AC_PROG_EGREP' => 1,
|
||||
'AM_SET_LEADING_DOT' => 1,
|
||||
'AM_PROG_NM' => 1,
|
||||
'LTVERSION_VERSION' => 1,
|
||||
'AC_LTDL_ENABLE_INSTALL' => 1,
|
||||
'AC_LIBTOOL_RC' => 1,
|
||||
'_LT_PROG_LTMAIN' => 1,
|
||||
'AM_MAKE_INCLUDE' => 1,
|
||||
'AC_CHECK_LIBM' => 1,
|
||||
'AC_DISABLE_STATIC' => 1,
|
||||
'AM_DISABLE_STATIC' => 1,
|
||||
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
||||
'LT_AC_PROG_SED' => 1,
|
||||
'LT_AC_PROG_RC' => 1,
|
||||
'_LT_AC_LOCK' => 1,
|
||||
'LT_PATH_LD' => 1,
|
||||
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
||||
'AM_SUBST_NOTMAKE' => 1,
|
||||
'GC_SET_VERSION' => 1,
|
||||
'_AM_MANGLE_OPTION' => 1,
|
||||
'AM_ENABLE_STATIC' => 1,
|
||||
'_LT_PROG_FC' => 1,
|
||||
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
||||
'AM_DISABLE_SHARED' => 1,
|
||||
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'AC_LIBTOOL_OBJDIR' => 1,
|
||||
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
||||
'AC_PROG_LD_GNU' => 1,
|
||||
'AM_PROG_INSTALL_STRIP' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'_LT_CC_BASENAME' => 1,
|
||||
'AC_LIBTOOL_CXX' => 1,
|
||||
'_LT_AC_PROG_CXXCPP' => 1,
|
||||
'AC_LIBTOOL_FC' => 1,
|
||||
'AC_LIBTOOL_WIN32_DLL' => 1,
|
||||
'_LT_COMPILER_OPTION' => 1,
|
||||
'LT_PROG_GCJ' => 1,
|
||||
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
||||
'AC_PROG_EGREP' => 1,
|
||||
'AC_LTDL_OBJDIR' => 1,
|
||||
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
||||
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
||||
'_LT_LINKER_BOILERPLATE' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
||||
'_AM_SET_OPTION' => 1,
|
||||
'LT_LIB_M' => 1,
|
||||
'AM_ENABLE_SHARED' => 1,
|
||||
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'_LT_AC_LANG_F77_CONFIG' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
||||
'LT_AC_PROG_GCJ' => 1,
|
||||
'_AM_AUTOCONF_VERSION' => 1,
|
||||
'_LT_LINKER_OPTION' => 1,
|
||||
'AM_RUN_LOG' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AC_PATH_MAGIC' => 1,
|
||||
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'LT_PATH_NM' => 1,
|
||||
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
||||
'_AM_DEPENDENCIES' => 1,
|
||||
'AC_ENABLE_SHARED' => 1,
|
||||
'AC_LIBTOOL_GCJ' => 1,
|
||||
'_LT_AC_TAGVAR' => 1,
|
||||
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
||||
'_LT_AC_LANG_GCJ' => 1,
|
||||
'AC_PROG_NM' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
||||
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
||||
'_LT_COMPILER_BOILERPLATE' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'LT_LANG' => 1,
|
||||
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
||||
'AM_PROG_INSTALL_SH' => 1,
|
||||
'AC_DISABLE_FAST_INSTALL' => 1,
|
||||
'AC_LTDL_PREOPEN' => 1,
|
||||
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
||||
'include' => 1,
|
||||
'AC_ENABLE_STATIC' => 1,
|
||||
'AM_AUX_DIR_EXPAND' => 1,
|
||||
'_LT_AC_LANG_CXX' => 1,
|
||||
'LT_PROG_GO' => 1,
|
||||
'LT_CMD_MAX_LEN' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
||||
'_AM_CONFIG_MACRO_DIRS' => 1,
|
||||
'_AC_PROG_LIBTOOL' => 1,
|
||||
'AC_LIBTOOL_F77' => 1,
|
||||
'_LT_AC_LANG_C_CONFIG' => 1,
|
||||
'LTSUGAR_VERSION' => 1,
|
||||
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
||||
'_LT_AC_CHECK_DLFCN' => 1,
|
||||
'_LT_AC_LANG_F77' => 1,
|
||||
'AC_ENABLE_FAST_INSTALL' => 1,
|
||||
'AC_LIBTOOL_PICMODE' => 1,
|
||||
'AM_DEP_TRACK' => 1,
|
||||
'LTOPTIONS_VERSION' => 1,
|
||||
'_AM_IF_OPTION' => 1,
|
||||
'_LT_PATH_TOOL_PREFIX' => 1,
|
||||
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'AC_LIBTOOL_SETUP' => 1,
|
||||
'_LT_AC_SHELL_INIT' => 1,
|
||||
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
||||
'LT_PROG_RC' => 1,
|
||||
'AM_DISABLE_STATIC' => 1,
|
||||
'_LT_AC_SYS_COMPILER' => 1,
|
||||
'_LT_AC_FILE_LTDLL_C' => 1,
|
||||
'AC_LIBTOOL_DLOPEN' => 1,
|
||||
'AC_DEFUN' => 1,
|
||||
'_LT_COMPILER_BOILERPLATE' => 1,
|
||||
'LT_OUTPUT' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AM_PROG_LD' => 1,
|
||||
'_LT_PROG_CXX' => 1,
|
||||
'_LT_LINKER_OPTION' => 1,
|
||||
'LT_CMD_MAX_LEN' => 1,
|
||||
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
||||
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'_LT_AC_LANG_C_CONFIG' => 1,
|
||||
'AU_DEFUN' => 1,
|
||||
'LTOPTIONS_VERSION' => 1,
|
||||
'AC_ENABLE_FAST_INSTALL' => 1,
|
||||
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
||||
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
||||
'AC_CONFIG_MACRO_DIR' => 1,
|
||||
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
||||
'LT_AC_PROG_SED' => 1,
|
||||
'AC_LIBTOOL_DLOPEN' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'_LT_AC_LANG_F77_CONFIG' => 1,
|
||||
'_LT_CC_BASENAME' => 1,
|
||||
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
||||
'AM_SET_LEADING_DOT' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'AM_DEP_TRACK' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
||||
'_LT_PROG_LTMAIN' => 1,
|
||||
'_LT_WITH_SYSROOT' => 1,
|
||||
'_LT_AC_LANG_F77' => 1,
|
||||
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
||||
'_LT_AC_LANG_GCJ' => 1,
|
||||
'AM_DISABLE_SHARED' => 1,
|
||||
'LT_PROG_GCJ' => 1,
|
||||
'AC_CHECK_LIBM' => 1,
|
||||
'LT_LIB_M' => 1,
|
||||
'_LT_COMPILER_OPTION' => 1,
|
||||
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
||||
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
||||
'GC_SET_VERSION' => 1,
|
||||
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
||||
'AM_ENABLE_SHARED' => 1,
|
||||
'AC_PROG_LD' => 1,
|
||||
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
||||
'LT_AC_PROG_RC' => 1,
|
||||
'LT_PROG_GO' => 1,
|
||||
'AM_MISSING_HAS_RUN' => 1,
|
||||
'AM_SANITY_CHECK' => 1,
|
||||
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
||||
'AM_SUBST_NOTMAKE' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'_LT_AC_LANG_RC_CONFIG' => 1,
|
||||
'_LT_DLL_DEF_P' => 1,
|
||||
'_LT_PATH_TOOL_PREFIX' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'AC_ENABLE_STATIC' => 1,
|
||||
'LTVERSION_VERSION' => 1,
|
||||
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
||||
'_LT_AC_PROG_CXXCPP' => 1,
|
||||
'AC_LIBTOOL_GCJ' => 1,
|
||||
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
||||
'LT_AC_PROG_EGREP' => 1,
|
||||
'AM_MISSING_PROG' => 1,
|
||||
'AC_DEFUN_ONCE' => 1,
|
||||
'_LT_PROG_F77' => 1,
|
||||
'_LT_AC_CHECK_DLFCN' => 1,
|
||||
'AC_PROG_NM' => 1,
|
||||
'AM_PROG_NM' => 1,
|
||||
'_AM_SET_OPTIONS' => 1,
|
||||
'_AM_CONFIG_MACRO_DIRS' => 1,
|
||||
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
||||
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
||||
'AC_DISABLE_FAST_INSTALL' => 1,
|
||||
'_LT_AC_SHELL_INIT' => 1,
|
||||
'AC_LIBTOOL_RC' => 1,
|
||||
'_LT_AC_LANG_RC_CONFIG' => 1,
|
||||
'AM_RUN_LOG' => 1,
|
||||
'_AC_PROG_LIBTOOL' => 1,
|
||||
'AC_LIBTOOL_CXX' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'_LT_LINKER_BOILERPLATE' => 1,
|
||||
'AC_DEFUN' => 1,
|
||||
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
||||
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
||||
'_LT_PROG_FC' => 1,
|
||||
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
||||
'AC_PATH_TOOL_PREFIX' => 1,
|
||||
'include' => 1,
|
||||
'LT_LANG' => 1,
|
||||
'AC_LIBTOOL_FC' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'LT_AC_PROG_GCJ' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'LTSUGAR_VERSION' => 1,
|
||||
'_AM_PROG_TAR' => 1,
|
||||
'AM_SET_DEPDIR' => 1,
|
||||
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
||||
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
||||
'AC_LTDL_PREOPEN' => 1,
|
||||
'AM_MAKE_INCLUDE' => 1,
|
||||
'AC_PROG_LD_GNU' => 1,
|
||||
'AC_LIBTOOL_CONFIG' => 1,
|
||||
'LT_SYS_DLOPEN_SELF' => 1,
|
||||
'AM_PROG_AS' => 1,
|
||||
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1
|
||||
'_AM_DEPENDENCIES' => 1,
|
||||
'_AM_IF_OPTION' => 1,
|
||||
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
||||
'AC_PROG_EGREP' => 1,
|
||||
'AC_LIBTOOL_PICMODE' => 1,
|
||||
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
||||
'AC_LIBTOOL_WIN32_DLL' => 1,
|
||||
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'_LT_AC_TAGVAR' => 1,
|
||||
'_LT_DLL_DEF_P' => 1,
|
||||
'LTOBSOLETE_VERSION' => 1,
|
||||
'LT_PATH_NM' => 1,
|
||||
'AC_LIBTOOL_SETUP' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AM_PROG_INSTALL_STRIP' => 1,
|
||||
'AC_DEFUN_ONCE' => 1,
|
||||
'AC_LIBTOOL_F77' => 1,
|
||||
'AM_PROG_INSTALL_SH' => 1,
|
||||
'm4_include' => 1,
|
||||
'_LT_PROG_CXX' => 1,
|
||||
'LT_PROG_RC' => 1,
|
||||
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
||||
'LT_PATH_LD' => 1,
|
||||
'_LT_AC_LOCK' => 1,
|
||||
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
||||
'_LT_AC_LANG_CXX' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
||||
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
||||
'AC_DISABLE_STATIC' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AC_ENABLE_SHARED' => 1,
|
||||
'_AM_SET_OPTION' => 1,
|
||||
'AM_PROG_LD' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'AC_PATH_MAGIC' => 1,
|
||||
'AC_DISABLE_SHARED' => 1,
|
||||
'AC_LTDL_ENABLE_INSTALL' => 1,
|
||||
'AC_LTDL_OBJDIR' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
||||
'AM_AUX_DIR_EXPAND' => 1,
|
||||
'AM_SANITY_CHECK' => 1,
|
||||
'_AM_MANGLE_OPTION' => 1,
|
||||
'AC_LIBTOOL_OBJDIR' => 1,
|
||||
'_AM_AUTOCONF_VERSION' => 1,
|
||||
'_LT_AC_FILE_LTDLL_C' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1
|
||||
}
|
||||
], 'Autom4te::Request' )
|
||||
);
|
||||
|
4
external/bdwgc/config.log
vendored
4
external/bdwgc/config.log
vendored
@ -10,7 +10,7 @@ generated by GNU Autoconf 2.69. Invocation command line was
|
||||
## Platform. ##
|
||||
## --------- ##
|
||||
|
||||
hostname = az-ubuntu-generalce9b70
|
||||
hostname = az-ubuntu-generalcb2590
|
||||
uname -m = x86_64
|
||||
uname -r = 4.15.0-1113-azure
|
||||
uname -s = Linux
|
||||
@ -747,7 +747,7 @@ generated by GNU Autoconf 2.69. Invocation command line was
|
||||
CONFIG_COMMANDS =
|
||||
$ ./config.status
|
||||
|
||||
on az-ubuntu-generalce9b70
|
||||
on az-ubuntu-generalcb2590
|
||||
|
||||
config.status:1238: creating Makefile
|
||||
config.status:1238: creating bdw-gc.pc
|
||||
|
6
external/bdwgc/darwin_stop_world.c
vendored
6
external/bdwgc/darwin_stop_world.c
vendored
@ -196,10 +196,12 @@ STATIC ptr_t GC_stack_range_for(ptr_t *phi, thread_act_t thread, GC_thread p,
|
||||
/* else */ {
|
||||
mach_msg_type_number_t thread_state_count = GC_MACH_THREAD_STATE_COUNT;
|
||||
|
||||
/* Get the thread state (registers, etc) */
|
||||
kern_result = thread_get_state(thread, GC_MACH_THREAD_STATE,
|
||||
do {
|
||||
/* Get the thread state (registers, etc) */
|
||||
kern_result = thread_get_state(thread, GC_MACH_THREAD_STATE,
|
||||
(natural_t *)&state,
|
||||
&thread_state_count);
|
||||
} while (kern_result == KERN_ABORTED);
|
||||
}
|
||||
# ifdef DEBUG_THREADS
|
||||
GC_log_printf("thread_get_state returns value = %d\n", kern_result);
|
||||
|
2
external/bdwgc/dyn_load.c
vendored
2
external/bdwgc/dyn_load.c
vendored
@ -26,7 +26,7 @@
|
||||
* But then not much of anything is safe in the presence of dlclose.
|
||||
*/
|
||||
|
||||
#if !defined(MACOS) && !defined(SN_TARGET_ORBIS) && !defined(SN_TARGET_PSP2) \
|
||||
#if !defined(MACOS) && !defined(GC_NO_TYPES) && !defined(SN_TARGET_PSP2) \
|
||||
&& !defined(_WIN32_WCE) && !defined(__CC_ARM)
|
||||
# include <sys/types.h>
|
||||
#endif
|
||||
|
4
external/bdwgc/extra/gc.c
vendored
4
external/bdwgc/extra/gc.c
vendored
@ -70,8 +70,12 @@
|
||||
#include "../darwin_stop_world.c"
|
||||
#include "../dyn_load.c"
|
||||
#include "../gc_dlopen.c"
|
||||
#if !defined(PLATFORM_MACH_DEP)
|
||||
#include "../mach_dep.c"
|
||||
#endif
|
||||
#if !defined(PLATFORM_STOP_WORLD)
|
||||
#include "../pthread_stop_world.c"
|
||||
#endif
|
||||
#include "../pthread_support.c"
|
||||
#include "../specific.c"
|
||||
#include "../win32_threads.c"
|
||||
|
7
external/bdwgc/finalize.c
vendored
7
external/bdwgc/finalize.c
vendored
@ -78,6 +78,13 @@ STATIC struct fnlz_roots_s {
|
||||
struct finalizable_object *finalize_now;
|
||||
} GC_fnlz_roots = { NULL, NULL };
|
||||
|
||||
void GC_clear_finalizable_object_table()
|
||||
{
|
||||
log_fo_table_size = -1;
|
||||
GC_fnlz_roots.fo_head = NULL;
|
||||
GC_fnlz_roots.finalize_now = NULL;
|
||||
}
|
||||
|
||||
#ifdef AO_HAVE_store
|
||||
/* Update finalize_now atomically as GC_should_invoke_finalizers does */
|
||||
/* not acquire the allocation lock. */
|
||||
|
17
external/bdwgc/headers.c
vendored
17
external/bdwgc/headers.c
vendored
@ -32,6 +32,12 @@ STATIC bottom_index * GC_all_bottom_indices_end = 0;
|
||||
/* Pointer to the last (highest address) */
|
||||
/* bottom_index. Assumes the lock is held. */
|
||||
|
||||
void GC_clear_bottom_indices()
|
||||
{
|
||||
GC_all_bottom_indices = 0;
|
||||
GC_all_bottom_indices_end = 0;
|
||||
}
|
||||
|
||||
/* Non-macro version of header location routine */
|
||||
GC_INNER hdr * GC_find_header(ptr_t h)
|
||||
{
|
||||
@ -194,10 +200,13 @@ GC_INNER void GC_init_headers(void)
|
||||
{
|
||||
unsigned i;
|
||||
|
||||
GC_all_nils = (bottom_index *)GC_scratch_alloc(sizeof(bottom_index));
|
||||
if (GC_all_nils == NULL) {
|
||||
GC_err_printf("Insufficient memory for GC_all_nils\n");
|
||||
EXIT();
|
||||
if (GC_all_nils == NULL)
|
||||
{
|
||||
GC_all_nils = (bottom_index *)GC_scratch_alloc(sizeof(bottom_index));
|
||||
if (GC_all_nils == NULL) {
|
||||
GC_err_printf("Insufficient memory for GC_all_nils\n");
|
||||
EXIT();
|
||||
}
|
||||
}
|
||||
BZERO(GC_all_nils, sizeof(bottom_index));
|
||||
for (i = 0; i < TOP_SZ; i++) {
|
||||
|
2
external/bdwgc/include/gc.h.REMOVED.git-id
vendored
2
external/bdwgc/include/gc.h.REMOVED.git-id
vendored
@ -1 +1 @@
|
||||
13c7c2a9438dd67e911b9d9e43e7216965338d89
|
||||
3d10a9a401af64c27b90614806c1340674c38f15
|
7
external/bdwgc/include/gc_config_macros.h
vendored
7
external/bdwgc/include/gc_config_macros.h
vendored
@ -70,6 +70,7 @@
|
||||
# define GC_WIN32_THREADS
|
||||
#endif
|
||||
|
||||
|
||||
#if defined(GC_AIX_THREADS) || defined(GC_DARWIN_THREADS) \
|
||||
|| defined(GC_DGUX386_THREADS) || defined(GC_FREEBSD_THREADS) \
|
||||
|| defined(GC_HPUX_THREADS) \
|
||||
@ -77,7 +78,7 @@
|
||||
|| defined(GC_NETBSD_THREADS) || defined(GC_OPENBSD_THREADS) \
|
||||
|| defined(GC_OSF1_THREADS) || defined(GC_SOLARIS_THREADS) \
|
||||
|| defined(GC_WIN32_THREADS) || defined(GC_RTEMS_PTHREADS) \
|
||||
|| defined(SN_TARGET_ORBIS) || defined(SN_TARGET_PSP2)
|
||||
|| defined(SN_TARGET_PSP2)
|
||||
# ifndef GC_THREADS
|
||||
# define GC_THREADS
|
||||
# endif
|
||||
@ -91,8 +92,8 @@
|
||||
# define GC_HAIKU_THREADS
|
||||
# elif defined(__OpenBSD__)
|
||||
# define GC_OPENBSD_THREADS
|
||||
# elif defined(__DragonFly__) || defined(__FreeBSD_kernel__) \
|
||||
|| (defined(__FreeBSD__) && !defined(SN_TARGET_ORBIS))
|
||||
# elif ( defined(__DragonFly__) || defined(__FreeBSD_kernel__) \
|
||||
|| defined(__FreeBSD__) ) && !defined(GC_NO_FREEBSD)
|
||||
# define GC_FREEBSD_THREADS
|
||||
# elif defined(__NetBSD__)
|
||||
# define GC_NETBSD_THREADS
|
||||
|
1
external/bdwgc/include/gc_vector.h
vendored
1
external/bdwgc/include/gc_vector.h
vendored
@ -53,6 +53,7 @@ GC_API GC_ATTR_MALLOC void * GC_CALL GC_gcj_vector_malloc(size_t /* lb */,
|
||||
|
||||
GC_API struct GC_ms_entry *GC_CALL
|
||||
GC_gcj_vector_mark_proc (struct GC_ms_entry *mark_stack_ptr,
|
||||
struct GC_ms_entry* mark_stack_limit,
|
||||
GC_descr element_desc,
|
||||
GC_word*start,
|
||||
GC_word*end,
|
||||
|
2
external/bdwgc/include/private/gc_locks.h
vendored
2
external/bdwgc/include/private/gc_locks.h
vendored
@ -48,7 +48,7 @@
|
||||
# endif
|
||||
|
||||
# if (!defined(AO_HAVE_test_and_set_acquire) || defined(GC_RTEMS_PTHREADS) \
|
||||
|| defined(SN_TARGET_ORBIS) || defined(SN_TARGET_PS3) \
|
||||
|| defined(SN_TARGET_PS3) \
|
||||
|| defined(GC_WIN32_THREADS) || defined(LINT2)) && defined(GC_PTHREADS)
|
||||
# define USE_PTHREAD_LOCKS
|
||||
# undef USE_SPIN_LOCK
|
||||
|
@ -1 +1 @@
|
||||
6acaabb4d7ff0d1fcb682f7b39d9a0926826e11c
|
||||
9945f1a480c350f0b9d817ca87aec82361118729
|
@ -1 +1 @@
|
||||
7982ce39fa13ddf857c72df12952ddfbf66e9a2c
|
||||
242f0a0a7280a594a64445eb069ae8e362f1b7e3
|
@ -49,9 +49,8 @@ struct thread_stop_info {
|
||||
ptr_t reg_storage[NACL_GC_REG_STORAGE_SIZE];
|
||||
# endif
|
||||
|
||||
#if defined(SN_TARGET_ORBIS)
|
||||
# define ORBIS_GC_REG_STORAGE_SIZE 27
|
||||
__uint64_t registers[ORBIS_GC_REG_STORAGE_SIZE];
|
||||
#if defined(PLATFORM_GC_REG_STORAGE_SIZE)
|
||||
__uint64_t registers[PLATFORM_GC_REG_STORAGE_SIZE];
|
||||
#endif
|
||||
};
|
||||
|
||||
|
4
external/bdwgc/libatomic_ops/Makefile.in
vendored
4
external/bdwgc/libatomic_ops/Makefile.in
vendored
@ -195,8 +195,8 @@ DIST_SUBDIRS = $(SUBDIRS)
|
||||
am__DIST_COMMON = $(srcdir)/Makefile.in \
|
||||
$(top_srcdir)/pkgconfig/atomic_ops-uninstalled.pc.in \
|
||||
$(top_srcdir)/pkgconfig/atomic_ops.pc.in AUTHORS COPYING \
|
||||
ChangeLog TODO compile config.guess config.sub install-sh \
|
||||
ltmain.sh missing
|
||||
ChangeLog TODO compile config.guess config.sub depcomp \
|
||||
install-sh ltmain.sh missing
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
distdir = $(PACKAGE)-$(VERSION)
|
||||
top_distdir = $(distdir)
|
||||
|
694
external/bdwgc/libatomic_ops/autom4te.cache/requests
vendored
694
external/bdwgc/libatomic_ops/autom4te.cache/requests
vendored
@ -41,161 +41,161 @@
|
||||
'configure.ac'
|
||||
],
|
||||
{
|
||||
'LT_PROG_GO' => 1,
|
||||
'_LT_AC_PROG_CXXCPP' => 1,
|
||||
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'AM_PROG_INSTALL_SH' => 1,
|
||||
'_AM_PROG_CC_C_O' => 1,
|
||||
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
||||
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
||||
'AM_PROG_NM' => 1,
|
||||
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
||||
'LT_SYS_DLOPEN_SELF' => 1,
|
||||
'AC_PROG_EGREP' => 1,
|
||||
'_AM_SET_OPTION' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'_AM_PROG_TAR' => 1,
|
||||
'_LT_AC_SYS_COMPILER' => 1,
|
||||
'AM_PROG_INSTALL_STRIP' => 1,
|
||||
'AM_SUBST_NOTMAKE' => 1,
|
||||
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
||||
'_LT_PROG_FC' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'AC_LIBTOOL_WIN32_DLL' => 1,
|
||||
'LT_OUTPUT' => 1,
|
||||
'AC_LIBTOOL_DLOPEN' => 1,
|
||||
'AC_PROG_LD_GNU' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'AC_PROG_LD' => 1,
|
||||
'LTOPTIONS_VERSION' => 1,
|
||||
'AC_DEFUN_ONCE' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
||||
'_LT_AC_TAGVAR' => 1,
|
||||
'_AM_MANGLE_OPTION' => 1,
|
||||
'_LT_PATH_TOOL_PREFIX' => 1,
|
||||
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
||||
'AM_SET_LEADING_DOT' => 1,
|
||||
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'_LT_LINKER_BOILERPLATE' => 1,
|
||||
'AC_PATH_TOOL_PREFIX' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
||||
'AC_LTDL_OBJDIR' => 1,
|
||||
'_LT_PROG_F77' => 1,
|
||||
'AC_CHECK_LIBM' => 1,
|
||||
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'LTSUGAR_VERSION' => 1,
|
||||
'_LT_PROG_CXX' => 1,
|
||||
'LTVERSION_VERSION' => 1,
|
||||
'AM_ENABLE_STATIC' => 1,
|
||||
'_AM_IF_OPTION' => 1,
|
||||
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
||||
'LTOBSOLETE_VERSION' => 1,
|
||||
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'AM_DISABLE_STATIC' => 1,
|
||||
'AM_MAKE_INCLUDE' => 1,
|
||||
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
||||
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
||||
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'AC_DEFUN' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
||||
'LT_PATH_NM' => 1,
|
||||
'AC_LIBTOOL_FC' => 1,
|
||||
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
||||
'AM_PROG_AS' => 1,
|
||||
'_AM_CONFIG_MACRO_DIRS' => 1,
|
||||
'_LT_AC_LANG_CXX' => 1,
|
||||
'AC_LIBTOOL_RC' => 1,
|
||||
'AC_PATH_MAGIC' => 1,
|
||||
'_AM_AUTOCONF_VERSION' => 1,
|
||||
'_LT_AC_LANG_C_CONFIG' => 1,
|
||||
'_AM_DEPENDENCIES' => 1,
|
||||
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
||||
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
||||
'LT_AC_PROG_GCJ' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'AC_ENABLE_STATIC' => 1,
|
||||
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
||||
'AM_SET_DEPDIR' => 1,
|
||||
'AC_LIBTOOL_CXX' => 1,
|
||||
'LT_PROG_RC' => 1,
|
||||
'AC_PROG_NM' => 1,
|
||||
'_LT_AC_LANG_GCJ' => 1,
|
||||
'_LT_AC_LANG_RC_CONFIG' => 1,
|
||||
'AM_MISSING_PROG' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'AC_LIBTOOL_OBJDIR' => 1,
|
||||
'_LT_COMPILER_OPTION' => 1,
|
||||
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AC_ENABLE_FAST_INSTALL' => 1,
|
||||
'LT_AC_PROG_EGREP' => 1,
|
||||
'AC_DISABLE_FAST_INSTALL' => 1,
|
||||
'LT_PATH_LD' => 1,
|
||||
'AC_LIBTOOL_GCJ' => 1,
|
||||
'_LT_AC_LANG_F77_CONFIG' => 1,
|
||||
'AM_SANITY_CHECK' => 1,
|
||||
'AM_DEP_TRACK' => 1,
|
||||
'AM_PROG_LD' => 1,
|
||||
'include' => 1,
|
||||
'AC_LIBTOOL_SETUP' => 1,
|
||||
'AM_MISSING_HAS_RUN' => 1,
|
||||
'_LT_WITH_SYSROOT' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
||||
'_LT_LINKER_OPTION' => 1,
|
||||
'_LT_AC_SHELL_INIT' => 1,
|
||||
'LT_CMD_MAX_LEN' => 1,
|
||||
'_LT_AC_FILE_LTDLL_C' => 1,
|
||||
'AC_DISABLE_SHARED' => 1,
|
||||
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
||||
'AC_LTDL_PREOPEN' => 1,
|
||||
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
||||
'_LT_PROG_LTMAIN' => 1,
|
||||
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
||||
'_LT_AC_LANG_F77' => 1,
|
||||
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
||||
'AM_DISABLE_SHARED' => 1,
|
||||
'LT_PROG_GCJ' => 1,
|
||||
'LT_LIB_M' => 1,
|
||||
'AC_LIBTOOL_PICMODE' => 1,
|
||||
'_LT_AC_LOCK' => 1,
|
||||
'_AM_SET_OPTIONS' => 1,
|
||||
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
||||
'AC_LIBTOOL_F77' => 1,
|
||||
'AC_LTDL_ENABLE_INSTALL' => 1,
|
||||
'LT_LANG' => 1,
|
||||
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'LT_AC_PROG_SED' => 1,
|
||||
'AU_DEFUN' => 1,
|
||||
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
||||
'_LT_DLL_DEF_P' => 1,
|
||||
'_LT_AC_CHECK_DLFCN' => 1,
|
||||
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
||||
'AM_ENABLE_SHARED' => 1,
|
||||
'AM_AUX_DIR_EXPAND' => 1,
|
||||
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
||||
'm4_include' => 1,
|
||||
'_LT_COMPILER_BOILERPLATE' => 1,
|
||||
'AC_ENABLE_SHARED' => 1,
|
||||
'AM_RUN_LOG' => 1,
|
||||
'AC_CONFIG_MACRO_DIR' => 1,
|
||||
'AC_DISABLE_STATIC' => 1,
|
||||
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'_AM_PROG_CC_C_O' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'_AM_AUTOCONF_VERSION' => 1,
|
||||
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
||||
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
||||
'AM_MAKE_INCLUDE' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
||||
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'_AM_IF_OPTION' => 1,
|
||||
'AC_DEFUN' => 1,
|
||||
'_LT_CC_BASENAME' => 1,
|
||||
'AU_DEFUN' => 1,
|
||||
'include' => 1,
|
||||
'AM_PROG_NM' => 1,
|
||||
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
||||
'AM_SANITY_CHECK' => 1,
|
||||
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
||||
'_LT_AC_SHELL_INIT' => 1,
|
||||
'_LT_AC_LANG_GCJ' => 1,
|
||||
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
||||
'AM_SUBST_NOTMAKE' => 1,
|
||||
'_AM_SET_OPTIONS' => 1,
|
||||
'AC_LIBTOOL_F77' => 1,
|
||||
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'AC_PATH_MAGIC' => 1,
|
||||
'_LT_WITH_SYSROOT' => 1,
|
||||
'LT_AC_PROG_SED' => 1,
|
||||
'LT_AC_PROG_GCJ' => 1,
|
||||
'_AM_CONFIG_MACRO_DIRS' => 1,
|
||||
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
||||
'AC_LIBTOOL_SETUP' => 1,
|
||||
'_LT_COMPILER_BOILERPLATE' => 1,
|
||||
'LT_PATH_NM' => 1,
|
||||
'AC_ENABLE_FAST_INSTALL' => 1,
|
||||
'AC_LIBTOOL_CONFIG' => 1,
|
||||
'LT_AC_PROG_RC' => 1,
|
||||
'_LT_AC_PROG_CXXCPP' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'LT_AC_PROG_EGREP' => 1,
|
||||
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
||||
'LTOBSOLETE_VERSION' => 1,
|
||||
'LTVERSION_VERSION' => 1,
|
||||
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
||||
'AC_LIBTOOL_CXX' => 1,
|
||||
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
||||
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
||||
'AM_MISSING_PROG' => 1,
|
||||
'_LT_PROG_F77' => 1,
|
||||
'AC_LIBTOOL_RC' => 1,
|
||||
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
||||
'AC_LIBTOOL_WIN32_DLL' => 1,
|
||||
'_LT_AC_SYS_COMPILER' => 1,
|
||||
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
||||
'LT_PROG_RC' => 1,
|
||||
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
||||
'AC_ENABLE_SHARED' => 1,
|
||||
'AM_AUX_DIR_EXPAND' => 1,
|
||||
'AM_DISABLE_SHARED' => 1,
|
||||
'm4_include' => 1,
|
||||
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
||||
'_LT_PROG_CXX' => 1,
|
||||
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
||||
'_LT_AC_LANG_F77' => 1,
|
||||
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
||||
'LTSUGAR_VERSION' => 1,
|
||||
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
||||
'AC_LTDL_OBJDIR' => 1,
|
||||
'AM_PROG_AS' => 1,
|
||||
'_LT_AC_LANG_RC_CONFIG' => 1,
|
||||
'AC_PATH_TOOL_PREFIX' => 1,
|
||||
'_LT_PROG_FC' => 1,
|
||||
'AM_MISSING_HAS_RUN' => 1,
|
||||
'LT_AC_PROG_RC' => 1,
|
||||
'_LT_AC_FILE_LTDLL_C' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'_AM_PROG_TAR' => 1,
|
||||
'AC_LIBTOOL_DLOPEN' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'LT_PROG_GO' => 1,
|
||||
'AM_PROG_LD' => 1,
|
||||
'_LT_PATH_TOOL_PREFIX' => 1,
|
||||
'AC_LIBTOOL_OBJDIR' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
||||
'AC_PROG_LD' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'_LT_LINKER_OPTION' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'AC_DISABLE_STATIC' => 1,
|
||||
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
||||
'LT_PROG_GCJ' => 1,
|
||||
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
||||
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'AC_PROG_LD_GNU' => 1,
|
||||
'LT_OUTPUT' => 1,
|
||||
'_AM_DEPENDENCIES' => 1,
|
||||
'LT_SYS_DLOPEN_SELF' => 1,
|
||||
'_LT_AC_LANG_C_CONFIG' => 1,
|
||||
'AM_PROG_INSTALL_SH' => 1,
|
||||
'LT_CMD_MAX_LEN' => 1,
|
||||
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
||||
'_LT_AC_LOCK' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
||||
'AM_ENABLE_SHARED' => 1,
|
||||
'AM_ENABLE_STATIC' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
||||
'_LT_PROG_LTMAIN' => 1,
|
||||
'_LT_AC_TAGVAR' => 1,
|
||||
'AM_DISABLE_STATIC' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AC_LTDL_PREOPEN' => 1,
|
||||
'_LT_COMPILER_OPTION' => 1,
|
||||
'LT_LANG' => 1,
|
||||
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
||||
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
||||
'_LT_LINKER_BOILERPLATE' => 1,
|
||||
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
||||
'_LT_AC_LANG_CXX' => 1,
|
||||
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AC_PROG_EGREP' => 1,
|
||||
'AC_DEFUN_ONCE' => 1,
|
||||
'AC_CONFIG_MACRO_DIR' => 1,
|
||||
'LT_PATH_LD' => 1,
|
||||
'AM_SET_LEADING_DOT' => 1,
|
||||
'AC_LTDL_ENABLE_INSTALL' => 1,
|
||||
'LT_LIB_M' => 1,
|
||||
'LTOPTIONS_VERSION' => 1,
|
||||
'AM_SET_DEPDIR' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'_LT_AC_LANG_F77_CONFIG' => 1,
|
||||
'AC_LIBTOOL_FC' => 1,
|
||||
'_AM_MANGLE_OPTION' => 1,
|
||||
'AM_DEP_TRACK' => 1,
|
||||
'AM_RUN_LOG' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'AC_ENABLE_STATIC' => 1,
|
||||
'AC_DISABLE_FAST_INSTALL' => 1,
|
||||
'_LT_DLL_DEF_P' => 1,
|
||||
'AC_DISABLE_SHARED' => 1,
|
||||
'_AC_PROG_LIBTOOL' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1
|
||||
'_AM_SET_OPTION' => 1,
|
||||
'AC_LIBTOOL_GCJ' => 1,
|
||||
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
||||
'AM_PROG_INSTALL_STRIP' => 1,
|
||||
'AC_PROG_NM' => 1,
|
||||
'AC_LIBTOOL_PICMODE' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'AC_CHECK_LIBM' => 1
|
||||
}
|
||||
], 'Autom4te::Request' ),
|
||||
bless( [
|
||||
@ -210,66 +210,66 @@
|
||||
'configure.ac'
|
||||
],
|
||||
{
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
||||
'AM_POT_TOOLS' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'AC_CANONICAL_HOST' => 1,
|
||||
'AC_SUBST_TRACE' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'AM_GNU_GETTEXT' => 1,
|
||||
'AC_CANONICAL_TARGET' => 1,
|
||||
'AC_CANONICAL_BUILD' => 1,
|
||||
'AM_EXTRA_RECURSIVE_TARGETS' => 1,
|
||||
'_AM_COND_ENDIF' => 1,
|
||||
'AM_PROG_FC_C_O' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'AM_PROG_MKDIR_P' => 1,
|
||||
'AC_CANONICAL_SYSTEM' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AH_OUTPUT' => 1,
|
||||
'm4_sinclude' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'AM_POT_TOOLS' => 1,
|
||||
'AC_FC_PP_DEFINE' => 1,
|
||||
'AM_PROG_MOC' => 1,
|
||||
'AC_INIT' => 1,
|
||||
'AH_OUTPUT' => 1,
|
||||
'm4_include' => 1,
|
||||
'include' => 1,
|
||||
'AC_CONFIG_LINKS' => 1,
|
||||
'sinclude' => 1,
|
||||
'AC_CONFIG_SUBDIRS' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AC_CONFIG_HEADERS' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'AC_FC_PP_SRCEXT' => 1,
|
||||
'AC_FC_SRCEXT' => 1,
|
||||
'AM_PATH_GUILE' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'_AM_MAKEFILE_INCLUDE' => 1,
|
||||
'_AM_COND_ELSE' => 1,
|
||||
'AC_CONFIG_FILES' => 1,
|
||||
'_AM_COND_IF' => 1,
|
||||
'AM_PROG_F77_C_O' => 1,
|
||||
'AM_NLS' => 1,
|
||||
'AC_CONFIG_LINKS' => 1,
|
||||
'AC_LIBSOURCE' => 1,
|
||||
'AM_PROG_FC_C_O' => 1,
|
||||
'AC_CONFIG_AUX_DIR' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AM_EXTRA_RECURSIVE_TARGETS' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'AM_PROG_CXX_C_O' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AC_REQUIRE_AUX_FILE' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'AM_PROG_F77_C_O' => 1,
|
||||
'AM_PATH_GUILE' => 1,
|
||||
'sinclude' => 1,
|
||||
'_AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AM_PROG_CXX_C_O' => 1,
|
||||
'AC_CONFIG_HEADERS' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'AC_FC_FREEFORM' => 1,
|
||||
'AC_CANONICAL_HOST' => 1,
|
||||
'AC_LIBSOURCE' => 1,
|
||||
'AC_SUBST_TRACE' => 1,
|
||||
'AM_PROG_AR' => 1,
|
||||
'AC_FC_SRCEXT' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
|
||||
'AC_FC_PP_DEFINE' => 1,
|
||||
'AM_XGETTEXT_OPTION' => 1,
|
||||
'_AM_COND_ELSE' => 1,
|
||||
'AM_MAKEFILE_INCLUDE' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'AM_GNU_GETTEXT' => 1,
|
||||
'AM_ENABLE_MULTILIB' => 1,
|
||||
'm4_include' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'AC_DEFINE_TRACE_LITERAL' => 1,
|
||||
'AC_CONFIG_FILES' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'_AM_COND_IF' => 1,
|
||||
'AC_FC_PP_SRCEXT' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'AM_PROG_MOC' => 1,
|
||||
'AC_CANONICAL_TARGET' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AM_PROG_MKDIR_P' => 1,
|
||||
'AC_CONFIG_SUBDIRS' => 1,
|
||||
'AC_CONFIG_AUX_DIR' => 1,
|
||||
'_AM_COND_ENDIF' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'AC_SUBST' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'm4_pattern_forbid' => 1
|
||||
'AM_PROG_AR' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'AM_XGETTEXT_OPTION' => 1,
|
||||
'AM_ENABLE_MULTILIB' => 1,
|
||||
'AC_FC_FREEFORM' => 1,
|
||||
'AC_DEFINE_TRACE_LITERAL' => 1,
|
||||
'm4_sinclude' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1
|
||||
}
|
||||
], 'Autom4te::Request' ),
|
||||
bless( [
|
||||
@ -310,161 +310,161 @@
|
||||
'configure.ac'
|
||||
],
|
||||
{
|
||||
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'_LT_AC_PROG_CXXCPP' => 1,
|
||||
'LT_PROG_GO' => 1,
|
||||
'_AM_PROG_CC_C_O' => 1,
|
||||
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
||||
'AM_PROG_INSTALL_SH' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'AM_PROG_NM' => 1,
|
||||
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
||||
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
||||
'_AM_SET_OPTION' => 1,
|
||||
'LT_SYS_DLOPEN_SELF' => 1,
|
||||
'AC_PROG_EGREP' => 1,
|
||||
'_LT_AC_SYS_COMPILER' => 1,
|
||||
'_AM_PROG_TAR' => 1,
|
||||
'AM_PROG_INSTALL_STRIP' => 1,
|
||||
'AM_SUBST_NOTMAKE' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'_LT_PROG_FC' => 1,
|
||||
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
||||
'AC_LIBTOOL_WIN32_DLL' => 1,
|
||||
'AC_LIBTOOL_DLOPEN' => 1,
|
||||
'LT_OUTPUT' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'AC_PROG_LD_GNU' => 1,
|
||||
'AC_PROG_LD' => 1,
|
||||
'LTOPTIONS_VERSION' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AC_DEFUN_ONCE' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
||||
'_AM_MANGLE_OPTION' => 1,
|
||||
'_LT_PATH_TOOL_PREFIX' => 1,
|
||||
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
||||
'_LT_AC_TAGVAR' => 1,
|
||||
'AC_PATH_TOOL_PREFIX' => 1,
|
||||
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'_LT_LINKER_BOILERPLATE' => 1,
|
||||
'AC_LTDL_OBJDIR' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
||||
'AM_SET_LEADING_DOT' => 1,
|
||||
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
||||
'AC_CHECK_LIBM' => 1,
|
||||
'_LT_PROG_F77' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'LTSUGAR_VERSION' => 1,
|
||||
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
||||
'_AM_IF_OPTION' => 1,
|
||||
'LTVERSION_VERSION' => 1,
|
||||
'_LT_PROG_CXX' => 1,
|
||||
'AM_ENABLE_STATIC' => 1,
|
||||
'LTOBSOLETE_VERSION' => 1,
|
||||
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
||||
'AM_DISABLE_STATIC' => 1,
|
||||
'AM_MAKE_INCLUDE' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AC_DEFUN' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
||||
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
||||
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
||||
'_AM_CONFIG_MACRO_DIRS' => 1,
|
||||
'AM_PROG_AS' => 1,
|
||||
'AC_LIBTOOL_RC' => 1,
|
||||
'AC_PATH_MAGIC' => 1,
|
||||
'_LT_AC_LANG_CXX' => 1,
|
||||
'AC_LIBTOOL_FC' => 1,
|
||||
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
||||
'LT_PATH_NM' => 1,
|
||||
'_AM_DEPENDENCIES' => 1,
|
||||
'_LT_AC_LANG_C_CONFIG' => 1,
|
||||
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
||||
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
||||
'_AM_AUTOCONF_VERSION' => 1,
|
||||
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
||||
'LT_AC_PROG_GCJ' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'AC_ENABLE_STATIC' => 1,
|
||||
'AC_PROG_NM' => 1,
|
||||
'_LT_AC_LANG_RC_CONFIG' => 1,
|
||||
'_LT_AC_LANG_GCJ' => 1,
|
||||
'AM_SET_DEPDIR' => 1,
|
||||
'AC_LIBTOOL_CXX' => 1,
|
||||
'LT_PROG_RC' => 1,
|
||||
'LT_AC_PROG_EGREP' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'AM_MISSING_PROG' => 1,
|
||||
'AC_ENABLE_FAST_INSTALL' => 1,
|
||||
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
||||
'_LT_COMPILER_OPTION' => 1,
|
||||
'AC_LIBTOOL_OBJDIR' => 1,
|
||||
'LT_PATH_LD' => 1,
|
||||
'AC_DISABLE_FAST_INSTALL' => 1,
|
||||
'AM_DEP_TRACK' => 1,
|
||||
'AM_SANITY_CHECK' => 1,
|
||||
'AC_LIBTOOL_GCJ' => 1,
|
||||
'_LT_AC_LANG_F77_CONFIG' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
||||
'_LT_WITH_SYSROOT' => 1,
|
||||
'_LT_LINKER_OPTION' => 1,
|
||||
'AC_LIBTOOL_SETUP' => 1,
|
||||
'AM_MISSING_HAS_RUN' => 1,
|
||||
'AM_PROG_LD' => 1,
|
||||
'include' => 1,
|
||||
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
||||
'AC_LTDL_PREOPEN' => 1,
|
||||
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
||||
'AC_DISABLE_SHARED' => 1,
|
||||
'LT_CMD_MAX_LEN' => 1,
|
||||
'_LT_AC_FILE_LTDLL_C' => 1,
|
||||
'_LT_AC_SHELL_INIT' => 1,
|
||||
'AM_DISABLE_SHARED' => 1,
|
||||
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
||||
'_LT_AC_LANG_F77' => 1,
|
||||
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
||||
'LTOPTIONS_VERSION' => 1,
|
||||
'LT_LIB_M' => 1,
|
||||
'LT_PROG_GCJ' => 1,
|
||||
'_LT_PROG_LTMAIN' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
||||
'LT_AC_PROG_SED' => 1,
|
||||
'AU_DEFUN' => 1,
|
||||
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
||||
'_AM_SET_OPTIONS' => 1,
|
||||
'_LT_AC_LOCK' => 1,
|
||||
'AC_LIBTOOL_PICMODE' => 1,
|
||||
'LT_LANG' => 1,
|
||||
'AC_LTDL_ENABLE_INSTALL' => 1,
|
||||
'AC_LIBTOOL_F77' => 1,
|
||||
'_LT_AC_CHECK_DLFCN' => 1,
|
||||
'_LT_DLL_DEF_P' => 1,
|
||||
'AM_ENABLE_SHARED' => 1,
|
||||
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
||||
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
||||
'AM_SET_LEADING_DOT' => 1,
|
||||
'AC_CONFIG_MACRO_DIR' => 1,
|
||||
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
||||
'AM_AUX_DIR_EXPAND' => 1,
|
||||
'AM_RUN_LOG' => 1,
|
||||
'AC_ENABLE_SHARED' => 1,
|
||||
'_LT_COMPILER_BOILERPLATE' => 1,
|
||||
'm4_include' => 1,
|
||||
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
||||
'LT_PATH_LD' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'_LT_LINKER_BOILERPLATE' => 1,
|
||||
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
||||
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
||||
'LT_LANG' => 1,
|
||||
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AC_DISABLE_STATIC' => 1,
|
||||
'_LT_CC_BASENAME' => 1,
|
||||
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
||||
'AM_DISABLE_STATIC' => 1,
|
||||
'_LT_COMPILER_OPTION' => 1,
|
||||
'AC_LTDL_PREOPEN' => 1,
|
||||
'AC_PROG_EGREP' => 1,
|
||||
'AC_DEFUN_ONCE' => 1,
|
||||
'_LT_AC_LANG_CXX' => 1,
|
||||
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AC_LIBTOOL_GCJ' => 1,
|
||||
'_AM_SET_OPTION' => 1,
|
||||
'_AC_PROG_LIBTOOL' => 1,
|
||||
'AC_DISABLE_SHARED' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'AC_CHECK_LIBM' => 1,
|
||||
'AC_LIBTOOL_PICMODE' => 1,
|
||||
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
||||
'AC_PROG_NM' => 1,
|
||||
'AM_PROG_INSTALL_STRIP' => 1,
|
||||
'AM_RUN_LOG' => 1,
|
||||
'AM_DEP_TRACK' => 1,
|
||||
'_AM_MANGLE_OPTION' => 1,
|
||||
'AC_LIBTOOL_FC' => 1,
|
||||
'_LT_AC_LANG_F77_CONFIG' => 1,
|
||||
'_LT_DLL_DEF_P' => 1,
|
||||
'AC_ENABLE_STATIC' => 1,
|
||||
'AC_DISABLE_FAST_INSTALL' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'AC_DISABLE_STATIC' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'AC_PROG_LD_GNU' => 1,
|
||||
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
||||
'LT_PROG_GCJ' => 1,
|
||||
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
||||
'AM_PROG_LD' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'LT_PROG_GO' => 1,
|
||||
'AC_LIBTOOL_DLOPEN' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'_LT_LINKER_OPTION' => 1,
|
||||
'AC_PROG_LD' => 1,
|
||||
'AC_LIBTOOL_OBJDIR' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
||||
'_LT_PATH_TOOL_PREFIX' => 1,
|
||||
'_LT_PROG_LTMAIN' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
||||
'_LT_AC_TAGVAR' => 1,
|
||||
'_LT_AC_LANG_C_CONFIG' => 1,
|
||||
'AM_PROG_INSTALL_SH' => 1,
|
||||
'LT_CMD_MAX_LEN' => 1,
|
||||
'LT_OUTPUT' => 1,
|
||||
'_AM_DEPENDENCIES' => 1,
|
||||
'LT_SYS_DLOPEN_SELF' => 1,
|
||||
'AM_ENABLE_STATIC' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
||||
'AM_ENABLE_SHARED' => 1,
|
||||
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
||||
'_LT_AC_LOCK' => 1,
|
||||
'AC_LIBTOOL_RC' => 1,
|
||||
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
||||
'_LT_PROG_F77' => 1,
|
||||
'AC_ENABLE_SHARED' => 1,
|
||||
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
||||
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
||||
'LT_PROG_RC' => 1,
|
||||
'_LT_AC_SYS_COMPILER' => 1,
|
||||
'AC_LIBTOOL_WIN32_DLL' => 1,
|
||||
'LTOBSOLETE_VERSION' => 1,
|
||||
'LT_AC_PROG_EGREP' => 1,
|
||||
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
||||
'AM_MISSING_PROG' => 1,
|
||||
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
||||
'LTVERSION_VERSION' => 1,
|
||||
'AC_LIBTOOL_CXX' => 1,
|
||||
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
||||
'LT_AC_PROG_RC' => 1,
|
||||
'AC_LIBTOOL_CONFIG' => 1
|
||||
'_LT_PROG_FC' => 1,
|
||||
'AM_MISSING_HAS_RUN' => 1,
|
||||
'AC_PATH_TOOL_PREFIX' => 1,
|
||||
'_LT_AC_LANG_RC_CONFIG' => 1,
|
||||
'AM_PROG_AS' => 1,
|
||||
'_AM_PROG_TAR' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'_LT_AC_FILE_LTDLL_C' => 1,
|
||||
'_LT_AC_LANG_F77' => 1,
|
||||
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
||||
'_LT_PROG_CXX' => 1,
|
||||
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
||||
'm4_include' => 1,
|
||||
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
||||
'AM_AUX_DIR_EXPAND' => 1,
|
||||
'AM_DISABLE_SHARED' => 1,
|
||||
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
||||
'AC_LTDL_OBJDIR' => 1,
|
||||
'LTSUGAR_VERSION' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
||||
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
||||
'AC_DEFUN' => 1,
|
||||
'_AM_IF_OPTION' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'_AM_PROG_CC_C_O' => 1,
|
||||
'_LT_AC_CHECK_DLFCN' => 1,
|
||||
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
||||
'AM_MAKE_INCLUDE' => 1,
|
||||
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
||||
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
||||
'_AM_AUTOCONF_VERSION' => 1,
|
||||
'LT_AC_PROG_GCJ' => 1,
|
||||
'AC_ENABLE_FAST_INSTALL' => 1,
|
||||
'LT_PATH_NM' => 1,
|
||||
'AC_LIBTOOL_CONFIG' => 1,
|
||||
'_LT_AC_PROG_CXXCPP' => 1,
|
||||
'AC_LIBTOOL_SETUP' => 1,
|
||||
'_LT_COMPILER_BOILERPLATE' => 1,
|
||||
'_AM_CONFIG_MACRO_DIRS' => 1,
|
||||
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
||||
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
||||
'AM_SUBST_NOTMAKE' => 1,
|
||||
'AM_SANITY_CHECK' => 1,
|
||||
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
||||
'_LT_AC_SHELL_INIT' => 1,
|
||||
'_LT_AC_LANG_GCJ' => 1,
|
||||
'AM_PROG_NM' => 1,
|
||||
'include' => 1,
|
||||
'AU_DEFUN' => 1,
|
||||
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
||||
'_LT_CC_BASENAME' => 1,
|
||||
'_LT_WITH_SYSROOT' => 1,
|
||||
'LT_AC_PROG_SED' => 1,
|
||||
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'AC_PATH_MAGIC' => 1,
|
||||
'AC_LIBTOOL_F77' => 1,
|
||||
'_AM_SET_OPTIONS' => 1
|
||||
}
|
||||
], 'Autom4te::Request' )
|
||||
);
|
||||
|
2
external/bdwgc/libtool.REMOVED.git-id
vendored
2
external/bdwgc/libtool.REMOVED.git-id
vendored
@ -1 +1 @@
|
||||
292a76974d0c8cba0ff2388683f9ce934f90869b
|
||||
93fb338f6b3161fe4a1f5f9c12919d711e540115
|
2
external/bdwgc/mach_dep.c
vendored
2
external/bdwgc/mach_dep.c
vendored
@ -14,7 +14,7 @@
|
||||
|
||||
#include "private/gc_priv.h"
|
||||
|
||||
#if !defined(SN_TARGET_ORBIS) && !defined(SN_TARGET_PSP2)
|
||||
#if !defined(PLATFORM_MACH_DEP) && !defined(SN_TARGET_PSP2)
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
|
14
external/bdwgc/mark.c
vendored
14
external/bdwgc/mark.c
vendored
@ -122,6 +122,17 @@ static struct hblk * scan_ptr;
|
||||
STATIC GC_bool GC_objects_are_marked = FALSE;
|
||||
/* Are there collectible marked objects in the heap? */
|
||||
|
||||
void GC_reset_mark_statics()
|
||||
{
|
||||
GC_n_mark_procs = GC_RESERVED_MARK_PROCS;
|
||||
GC_n_kinds = GC_N_KINDS_INITIAL_VALUE;
|
||||
GC_mark_stack_size = 0;
|
||||
GC_mark_state = MS_NONE;
|
||||
GC_mark_stack_too_small = FALSE;
|
||||
scan_ptr = NULL;
|
||||
GC_objects_are_marked = FALSE;
|
||||
}
|
||||
|
||||
/* Is a collection in progress? Note that this can return true in the */
|
||||
/* nonincremental case, if a collection has been abandoned and the */
|
||||
/* mark state is now MS_INVALID. */
|
||||
@ -653,7 +664,8 @@ GC_INNER mse * GC_mark_from(mse *mark_stack_top, mse *mark_stack,
|
||||
# ifdef OS2 /* Use untweaked version to circumvent compiler problem */
|
||||
while ((word)mark_stack_top >= (word)mark_stack && credit >= 0)
|
||||
# else
|
||||
while ((((ptr_t)mark_stack_top - (ptr_t)mark_stack) | credit) >= 0)
|
||||
while (((((word)mark_stack_top - (word)mark_stack) | (word)credit)
|
||||
& SIGNB) == 0)
|
||||
# endif
|
||||
{
|
||||
current_p = mark_stack_top -> mse_start;
|
||||
|
5
external/bdwgc/mark_rts.c
vendored
5
external/bdwgc/mark_rts.c
vendored
@ -512,6 +512,11 @@ struct exclusion GC_excl_table[MAX_EXCLUSIONS];
|
||||
|
||||
STATIC size_t GC_excl_table_entries = 0;/* Number of entries in use. */
|
||||
|
||||
GC_API void GC_CALL GC_clear_exclusion_table(void)
|
||||
{
|
||||
GC_excl_table_entries = 0;
|
||||
}
|
||||
|
||||
/* Return the first exclusion range that includes an address >= start_addr */
|
||||
/* Assumes the exclusion table contains at least one entry (namely the */
|
||||
/* GC data structures). */
|
||||
|
15
external/bdwgc/misc.c
vendored
15
external/bdwgc/misc.c
vendored
@ -58,7 +58,7 @@
|
||||
GC_INNER PCR_Th_ML GC_allocate_ml;
|
||||
# elif defined(SN_TARGET_PSP2)
|
||||
GC_INNER WapiMutex GC_allocate_ml_PSP2 = { 0, NULL };
|
||||
# elif defined(SN_TARGET_ORBIS) || defined(SN_TARGET_PS3)
|
||||
# elif defined(GC_PTHREAD_MUTEX) || defined(SN_TARGET_PS3)
|
||||
# include <pthread.h>
|
||||
GC_INNER pthread_mutex_t GC_allocate_ml;
|
||||
# endif
|
||||
@ -1419,6 +1419,8 @@ GC_API void GC_CALL GC_enable_incremental(void)
|
||||
}
|
||||
#endif
|
||||
|
||||
extern void GC_reset_default_push_other_roots(void);
|
||||
|
||||
GC_API void GC_CALL GC_deinit(void)
|
||||
{
|
||||
if (GC_is_initialized) {
|
||||
@ -1428,6 +1430,13 @@ GC_API void GC_CALL GC_enable_incremental(void)
|
||||
DeleteCriticalSection(&GC_write_cs);
|
||||
DeleteCriticalSection(&GC_allocate_ml);
|
||||
# endif
|
||||
GC_clear_exclusion_table();
|
||||
memset(&GC_arrays, 0, sizeof(GC_arrays));
|
||||
GC_clear_freelist();
|
||||
GC_clear_bottom_indices();
|
||||
GC_clear_finalizable_object_table();
|
||||
GC_reset_mark_statics();
|
||||
GC_reset_default_push_other_roots();
|
||||
}
|
||||
}
|
||||
|
||||
@ -1723,14 +1732,14 @@ GC_API void GC_CALL GC_enable_incremental(void)
|
||||
# define WRITE(level, buf, len) switch_log_write(buf, len)
|
||||
|
||||
#else
|
||||
# if !defined(AMIGA) && !defined(MSWIN_XBOX1) && !defined(SN_TARGET_ORBIS) \
|
||||
# if !defined(AMIGA) && !defined(MSWIN_XBOX1) && !defined(GC_NO_TYPES) \
|
||||
&& !defined(SN_TARGET_PSP2) && !defined(__CC_ARM)
|
||||
# include <unistd.h>
|
||||
# endif
|
||||
|
||||
STATIC int GC_write(int fd, const char *buf, size_t len)
|
||||
{
|
||||
# if defined(ECOS) || defined(SN_TARGET_ORBIS) || defined(SN_TARGET_PSP2) \
|
||||
# if defined(ECOS) || defined(PLATFORM_WRITE) || defined(SN_TARGET_PSP2) \
|
||||
|| defined(NOSYS)
|
||||
# ifdef ECOS
|
||||
/* FIXME: This seems to be defined nowhere at present. */
|
||||
|
2
external/bdwgc/os_dep.c.REMOVED.git-id
vendored
2
external/bdwgc/os_dep.c.REMOVED.git-id
vendored
@ -1 +1 @@
|
||||
7bee84c1e1d35cd43d4623ae4a69a488d373ff70
|
||||
0158990be1ea64eec996dffe22fc50426522fb3b
|
62
external/bdwgc/pthread_stop_world.c
vendored
62
external/bdwgc/pthread_stop_world.c
vendored
@ -128,9 +128,12 @@ STATIC volatile AO_t GC_world_is_stopped = FALSE;
|
||||
|| defined(ADDRESS_SANITIZER) || defined(MEMORY_SANITIZER)
|
||||
STATIC GC_bool GC_retry_signals = TRUE;
|
||||
#else
|
||||
STATIC GC_bool GC_retry_signals = FALSE;
|
||||
// Unity: Always enable retry signals, since any platform could lose signals
|
||||
STATIC GC_bool GC_retry_signals = TRUE;
|
||||
#endif
|
||||
|
||||
#define UNITY_RETRY_SIGNALS
|
||||
|
||||
/*
|
||||
* We use signals to stop threads during GC.
|
||||
*
|
||||
@ -459,6 +462,49 @@ static int resend_lost_signals(int n_live_threads,
|
||||
return n_live_threads;
|
||||
}
|
||||
|
||||
#ifdef UNITY_RETRY_SIGNALS
|
||||
static void suspend_restart_barrier_retry(int n_live_threads,
|
||||
int (*suspend_restart_all)(void))
|
||||
{
|
||||
# define TIMEOUT_UNIT 10000
|
||||
|
||||
int i;
|
||||
int acked_threads = 0;
|
||||
struct timespec ts;
|
||||
|
||||
if (clock_gettime(CLOCK_REALTIME, &ts) == -1) {
|
||||
n_live_threads = resend_lost_signals(n_live_threads, suspend_restart_all);
|
||||
suspend_restart_barrier(n_live_threads);
|
||||
return;
|
||||
}
|
||||
|
||||
ts.tv_nsec += TIMEOUT_UNIT * 1000;
|
||||
|
||||
for (i = 0; i < n_live_threads; i++) {
|
||||
while (0 != sem_timedwait(&GC_suspend_ack_sem, &ts)) {
|
||||
/* On Linux, sem_wait is documented to always return zero. */
|
||||
/* But the documentation appears to be incorrect. */
|
||||
/* EINTR seems to happen with some versions of gdb. */
|
||||
|
||||
if (errno == ETIMEDOUT || errno == EINVAL) {
|
||||
// Wait timed out or the timeout period has passed
|
||||
n_live_threads = resend_lost_signals(n_live_threads - acked_threads, suspend_restart_all);
|
||||
suspend_restart_barrier(n_live_threads);
|
||||
return;
|
||||
}
|
||||
else if (errno != EINTR) {
|
||||
ABORT("sem_wait failed");
|
||||
}
|
||||
}
|
||||
acked_threads++;
|
||||
}
|
||||
# ifdef GC_ASSERTIONS
|
||||
sem_getvalue(&GC_suspend_ack_sem, &i);
|
||||
GC_ASSERT(0 == i);
|
||||
# endif
|
||||
}
|
||||
#endif
|
||||
|
||||
STATIC void GC_restart_handler(int sig)
|
||||
{
|
||||
# if defined(DEBUG_THREADS)
|
||||
@ -897,9 +943,16 @@ GC_INNER void GC_stop_world(void)
|
||||
# endif
|
||||
AO_store_release(&GC_world_is_stopped, TRUE);
|
||||
n_live_threads = GC_suspend_all();
|
||||
#ifndef UNITY_RETRY_SIGNALS
|
||||
if (GC_retry_signals)
|
||||
n_live_threads = resend_lost_signals(n_live_threads, GC_suspend_all);
|
||||
suspend_restart_barrier(n_live_threads);
|
||||
#else
|
||||
if (GC_retry_signals)
|
||||
suspend_restart_barrier_retry(n_live_threads, GC_suspend_all);
|
||||
else
|
||||
suspend_restart_barrier(n_live_threads);
|
||||
#endif
|
||||
# ifdef MANUAL_VDB
|
||||
GC_release_dirty_lock(); /* cannot be done in GC_suspend_all */
|
||||
# endif
|
||||
@ -1147,13 +1200,20 @@ GC_INNER void GC_start_world(void)
|
||||
# endif
|
||||
n_live_threads = GC_restart_all();
|
||||
# ifndef GC_OPENBSD_UTHREADS
|
||||
# ifndef UNITY_RETRY_SIGNALS
|
||||
if (GC_retry_signals)
|
||||
n_live_threads = resend_lost_signals(n_live_threads, GC_restart_all);
|
||||
# endif
|
||||
# ifdef GC_NETBSD_THREADS_WORKAROUND
|
||||
suspend_restart_barrier(n_live_threads);
|
||||
# else
|
||||
if (GC_retry_signals)
|
||||
# ifndef UNITY_RETRY_SIGNALS
|
||||
suspend_restart_barrier(n_live_threads);
|
||||
# else
|
||||
suspend_restart_barrier_retry(n_live_threads, GC_restart_all);
|
||||
# endif
|
||||
|
||||
# endif
|
||||
# else
|
||||
(void)n_live_threads;
|
||||
|
15
external/bdwgc/vector_mlc.c
vendored
15
external/bdwgc/vector_mlc.c
vendored
@ -142,7 +142,7 @@ GC_API void GC_CALL GC_init_gcj_vector (int mp_index,
|
||||
#define ELEMENT_CHUNK_SIZE 256
|
||||
|
||||
GC_API mse *GC_CALL
|
||||
GC_gcj_vector_mark_proc (mse *mark_stack_ptr, GC_descr element_desc, word *start, word *end, int words_per_element)
|
||||
GC_gcj_vector_mark_proc (mse *mark_stack_ptr, mse* mark_stack_limit, GC_descr element_desc, word *start, word *end, int words_per_element)
|
||||
{
|
||||
/* create new descriptor that is shifted two bits to account
|
||||
* for lack of object header. Descriptors for value types include
|
||||
@ -162,6 +162,8 @@ GC_gcj_vector_mark_proc (mse *mark_stack_ptr, GC_descr element_desc, word *start
|
||||
/* attempt to bulk process multiple elements with single descriptor */
|
||||
size_t elements_per_desc = (CPP_WORDSZ - GC_DS_TAG_BITS) / words_per_element;
|
||||
|
||||
if (mark_stack_ptr >= mark_stack_limit)
|
||||
return GC_signal_mark_stack_overflow (mark_stack_ptr);
|
||||
|
||||
/* setup bulk processing */
|
||||
if (elements_per_desc > 1) {
|
||||
@ -188,12 +190,16 @@ GC_gcj_vector_mark_proc (mse *mark_stack_ptr, GC_descr element_desc, word *start
|
||||
remainder_count = 0;
|
||||
|
||||
mark_stack_ptr++;
|
||||
if (mark_stack_ptr >= mark_stack_limit)
|
||||
mark_stack_ptr = GC_signal_mark_stack_overflow (mark_stack_ptr);
|
||||
mark_stack_ptr->mse_descr.w = GC_MAKE_PROC (GC_gcj_vector_mp_index, 1 /* continue processing */);
|
||||
mark_stack_ptr->mse_start = (ptr_t)end;
|
||||
}
|
||||
|
||||
while (bulk_count > 0) {
|
||||
mark_stack_ptr++;
|
||||
if (mark_stack_ptr >= mark_stack_limit)
|
||||
mark_stack_ptr = GC_signal_mark_stack_overflow (mark_stack_ptr);
|
||||
|
||||
mark_stack_ptr->mse_start = (ptr_t) (current);
|
||||
mark_stack_ptr->mse_descr.w = bulk_desc;
|
||||
@ -206,6 +212,8 @@ GC_gcj_vector_mark_proc (mse *mark_stack_ptr, GC_descr element_desc, word *start
|
||||
|
||||
while (remainder_count > 0) {
|
||||
mark_stack_ptr++;
|
||||
if (mark_stack_ptr >= mark_stack_limit)
|
||||
mark_stack_ptr = GC_signal_mark_stack_overflow (mark_stack_ptr);
|
||||
|
||||
mark_stack_ptr->mse_start = (ptr_t) (current);
|
||||
mark_stack_ptr->mse_descr.w = element_desc_shifted;
|
||||
@ -224,6 +232,9 @@ GC_gcj_vector_mark_proc (mse *mark_stack_ptr, GC_descr element_desc, word *start
|
||||
end = start + remainder_count * words_per_element;
|
||||
|
||||
mark_stack_ptr++;
|
||||
if (mark_stack_ptr >= mark_stack_limit)
|
||||
mark_stack_ptr = GC_signal_mark_stack_overflow (mark_stack_ptr);
|
||||
|
||||
mark_stack_ptr->mse_descr.w = GC_MAKE_PROC (GC_gcj_vector_mp_index, 1 /* continue processing */);
|
||||
mark_stack_ptr->mse_start = (ptr_t)end;
|
||||
}
|
||||
@ -231,6 +242,8 @@ GC_gcj_vector_mark_proc (mse *mark_stack_ptr, GC_descr element_desc, word *start
|
||||
word *current = start;
|
||||
while (remainder_count > 0) {
|
||||
mark_stack_ptr++;
|
||||
if (mark_stack_ptr >= mark_stack_limit)
|
||||
mark_stack_ptr = GC_signal_mark_stack_overflow (mark_stack_ptr);
|
||||
|
||||
mark_stack_ptr->mse_start = (ptr_t) (current);
|
||||
mark_stack_ptr->mse_descr.w = element_desc_shifted;
|
||||
|
4
external/bockbuild/bockbuild/package.py
vendored
4
external/bockbuild/bockbuild/package.py
vendored
@ -380,7 +380,7 @@ class Package:
|
||||
# if source.startswith ('http://'):
|
||||
# raise Exception ('HTTP downloads are no longer allowed: %s', source)
|
||||
|
||||
if source.startswith(('http://', 'https://', 'ftp://')):
|
||||
if source.startswith(('http://', 'https://', 'ftp://')) and not source.endswith('.git'):
|
||||
cache = get_download_dest(source, self.version)
|
||||
if self.profile.cache_host is not None:
|
||||
cached_source = os.path.join(
|
||||
@ -1040,7 +1040,7 @@ class GitHubPackage (Package):
|
||||
configure_flags=configure_flags,
|
||||
configure=configure,
|
||||
sources=[
|
||||
'git://github.com/%{organization}/%{name}.git'],
|
||||
'https://github.com/%{organization}/%{name}.git'],
|
||||
override_properties=override_properties)
|
||||
|
||||
|
||||
|
2
external/bockbuild/packages/gtk-sharp.py
vendored
2
external/bockbuild/packages/gtk-sharp.py
vendored
@ -2,7 +2,7 @@ class GtkSharp212ReleasePackage (Package):
|
||||
|
||||
def __init__(self):
|
||||
Package.__init__(self, 'gtk-sharp',
|
||||
sources=['git://github.com/mono/gtk-sharp.git'],
|
||||
sources=['https://github.com/mono/gtk-sharp.git'],
|
||||
git_branch='gtk-sharp-2-12-branch',
|
||||
revision='33fabaf9333f6cf26af1682cc67b4cfa99a0fc41',
|
||||
override_properties={
|
||||
|
2
external/linker/.gitmodules
vendored
2
external/linker/.gitmodules
vendored
@ -1,3 +1,3 @@
|
||||
[submodule "cecil"]
|
||||
path = external/cecil
|
||||
url = git://github.com/mono/cecil.git
|
||||
url = https://github.com/mono/cecil.git
|
||||
|
@ -41,7 +41,7 @@ static partial class Consts
|
||||
// Use these assembly version constants to make code more maintainable.
|
||||
//
|
||||
|
||||
public const string MonoVersion = "6.12.0.154";
|
||||
public const string MonoVersion = "6.12.0.156";
|
||||
public const string MonoCompany = "Mono development team";
|
||||
public const string MonoProduct = "Mono Common Language Infrastructure";
|
||||
public const string MonoCopyright = "(c) Various Mono authors";
|
||||
|
@ -1 +1 @@
|
||||
da956bfb7de7549706847fa09a12bc2d37476b85
|
||||
fa79cdf31da931fdc1d5b53c0e4c2a5251fe5311
|
@ -1 +1 @@
|
||||
a5284facf5b1e1a8a4c20bae8fe6ce727421e156
|
||||
a30257857bf73beaff43bc0565dcfaf26edb66d4
|
@ -1 +1 @@
|
||||
462f2d54ad4fe5700a067544d4dd6c3a5906cb6c
|
||||
e15f537552197ad3f81bc21dafb9541b389d6d88
|
@ -1 +1 @@
|
||||
01eedb674c05a54a30cb6dac583e715122a17553
|
||||
8ad2003fd985c20e712b884bd68d6d435857c292
|
@ -1 +1 @@
|
||||
76dac215e150f05f9babab9f8959957bd4103b8b
|
||||
30a2a8f512425428ec8dd4c9ff99bdc13362a09a
|
@ -1 +1 @@
|
||||
267a51d5112e6dbb9f29e426d8c81b33ca17f1c5
|
||||
75197bc7ea663b82d0f0e125d125da379fb63406
|
@ -1 +1 @@
|
||||
58edb4924657d68ca84d376f7d1b45b6943fa327
|
||||
1083eba34b8228c5ae229cf39a4255102ef73601
|
@ -1 +1 @@
|
||||
bfbf938f131dd34436f55e6807f6c6f80d1a871e
|
||||
847192d01e7e338129a37d73f43a8a5e70dc9a3b
|
@ -1 +1 @@
|
||||
da956bfb7de7549706847fa09a12bc2d37476b85
|
||||
fa79cdf31da931fdc1d5b53c0e4c2a5251fe5311
|
@ -1 +1 @@
|
||||
a5284facf5b1e1a8a4c20bae8fe6ce727421e156
|
||||
a30257857bf73beaff43bc0565dcfaf26edb66d4
|
@ -1 +1 @@
|
||||
462f2d54ad4fe5700a067544d4dd6c3a5906cb6c
|
||||
e15f537552197ad3f81bc21dafb9541b389d6d88
|
@ -1 +1 @@
|
||||
01eedb674c05a54a30cb6dac583e715122a17553
|
||||
8ad2003fd985c20e712b884bd68d6d435857c292
|
@ -1 +1 @@
|
||||
76dac215e150f05f9babab9f8959957bd4103b8b
|
||||
30a2a8f512425428ec8dd4c9ff99bdc13362a09a
|
@ -1 +1 @@
|
||||
267a51d5112e6dbb9f29e426d8c81b33ca17f1c5
|
||||
75197bc7ea663b82d0f0e125d125da379fb63406
|
@ -1 +1 @@
|
||||
58edb4924657d68ca84d376f7d1b45b6943fa327
|
||||
1083eba34b8228c5ae229cf39a4255102ef73601
|
@ -1 +1 @@
|
||||
bfbf938f131dd34436f55e6807f6c6f80d1a871e
|
||||
847192d01e7e338129a37d73f43a8a5e70dc9a3b
|
@ -1 +1 @@
|
||||
da956bfb7de7549706847fa09a12bc2d37476b85
|
||||
fa79cdf31da931fdc1d5b53c0e4c2a5251fe5311
|
@ -1 +1 @@
|
||||
a5284facf5b1e1a8a4c20bae8fe6ce727421e156
|
||||
a30257857bf73beaff43bc0565dcfaf26edb66d4
|
@ -1 +1 @@
|
||||
462f2d54ad4fe5700a067544d4dd6c3a5906cb6c
|
||||
e15f537552197ad3f81bc21dafb9541b389d6d88
|
@ -1 +1 @@
|
||||
01eedb674c05a54a30cb6dac583e715122a17553
|
||||
8ad2003fd985c20e712b884bd68d6d435857c292
|
@ -1 +1 @@
|
||||
76dac215e150f05f9babab9f8959957bd4103b8b
|
||||
30a2a8f512425428ec8dd4c9ff99bdc13362a09a
|
@ -1 +1 @@
|
||||
267a51d5112e6dbb9f29e426d8c81b33ca17f1c5
|
||||
75197bc7ea663b82d0f0e125d125da379fb63406
|
@ -1 +1 @@
|
||||
58edb4924657d68ca84d376f7d1b45b6943fa327
|
||||
1083eba34b8228c5ae229cf39a4255102ef73601
|
@ -1 +1 @@
|
||||
bfbf938f131dd34436f55e6807f6c6f80d1a871e
|
||||
847192d01e7e338129a37d73f43a8a5e70dc9a3b
|
@ -1 +1 @@
|
||||
da956bfb7de7549706847fa09a12bc2d37476b85
|
||||
fa79cdf31da931fdc1d5b53c0e4c2a5251fe5311
|
@ -1 +1 @@
|
||||
a5284facf5b1e1a8a4c20bae8fe6ce727421e156
|
||||
a30257857bf73beaff43bc0565dcfaf26edb66d4
|
@ -1 +1 @@
|
||||
9445e067dd69cc1faa5622ce713bdf30ad6cf55b
|
||||
5dbbb1de98daaae037ba53b2c27251760daad2a2
|
@ -1 +1 @@
|
||||
01eedb674c05a54a30cb6dac583e715122a17553
|
||||
8ad2003fd985c20e712b884bd68d6d435857c292
|
@ -1 +1 @@
|
||||
76dac215e150f05f9babab9f8959957bd4103b8b
|
||||
30a2a8f512425428ec8dd4c9ff99bdc13362a09a
|
@ -1 +1 @@
|
||||
267a51d5112e6dbb9f29e426d8c81b33ca17f1c5
|
||||
75197bc7ea663b82d0f0e125d125da379fb63406
|
@ -1 +1 @@
|
||||
58edb4924657d68ca84d376f7d1b45b6943fa327
|
||||
1083eba34b8228c5ae229cf39a4255102ef73601
|
@ -1 +1 @@
|
||||
3432192e988372698330f27328aba8ce2c309048
|
||||
d36da3bb7aefcca32c9c2ec7cce88ddc0fdec3cf
|
@ -1 +1 @@
|
||||
#define FULL_VERSION "explicit/0c979e6"
|
||||
#define FULL_VERSION "explicit/5a21247"
|
||||
|
@ -1608,10 +1608,10 @@ distclean-generic:
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
@CROSS_COMPILE_TRUE@test-local:
|
||||
@HOST_WIN32_TRUE@test-local:
|
||||
@CROSS_COMPILE_TRUE@clean-local:
|
||||
@HOST_WIN32_TRUE@clean-local:
|
||||
@CROSS_COMPILE_TRUE@test-local:
|
||||
@HOST_WIN32_TRUE@test-local:
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-checkPROGRAMS clean-generic clean-libtool clean-local \
|
||||
|
@ -1,7 +1,7 @@
|
||||
[
|
||||
{
|
||||
"name": "jemalloc",
|
||||
"url": "git://github.com/mono/jemalloc.git",
|
||||
"url": "https://github.com/mono/jemalloc.git",
|
||||
"rev": "896ed3a8b3f41998d4fb4d625d30ac63ef2d51fb",
|
||||
"remote-branch": "origin/master",
|
||||
"branch": "master",
|
||||
|
@ -535,8 +535,8 @@ distclean-generic:
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
@ENABLE_MSVC_FALSE@clean-local:
|
||||
@ENABLE_MSVC_FALSE@install-exec-local:
|
||||
@ENABLE_MSVC_FALSE@clean-local:
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libtool clean-local mostlyclean-am
|
||||
|
BIN
po/mcs/de.gmo
BIN
po/mcs/de.gmo
Binary file not shown.
@ -1 +1 @@
|
||||
41c98e3d3223d1fccf0617012cbbe7de31ed51e0
|
||||
d95d11cb670b8aff0d609f04a4d926911127da48
|
BIN
po/mcs/es.gmo
BIN
po/mcs/es.gmo
Binary file not shown.
@ -1 +1 @@
|
||||
ff339f5f41e796ed9217acbd7167f3592c43f7ea
|
||||
09ddcaddebf3e374574411ad56177caf41eed7ee
|
BIN
po/mcs/ja.gmo
BIN
po/mcs/ja.gmo
Binary file not shown.
@ -1 +1 @@
|
||||
ef6798465015ac4242d779ae01434b9f43c4d3af
|
||||
1226ab07a737270748089a304ed0339ec4efd852
|
@ -6,9 +6,9 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: mono 6.12.0.154\n"
|
||||
"Project-Id-Version: mono 6.12.0.156\n"
|
||||
"Report-Msgid-Bugs-To: http://www.mono-project.com/Bugs\n"
|
||||
"POT-Creation-Date: 2021-09-03 21:22+0000\n"
|
||||
"POT-Creation-Date: 2021-09-28 18:18+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
BIN
po/mcs/pt_BR.gmo
BIN
po/mcs/pt_BR.gmo
Binary file not shown.
@ -1 +1 @@
|
||||
8bf9ca2c1f28280411204a61e93f4948700c38ac
|
||||
9e8e0a7b853a86c3d4cb641b281e093b82cf42a3
|
@ -927,8 +927,8 @@ distclean-generic:
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
@ENABLE_MSVC_ONLY_TRUE@test-bundle-local:
|
||||
@ENABLE_MSVC_ONLY_FALSE@clean-local:
|
||||
@ENABLE_MSVC_ONLY_TRUE@test-bundle-local:
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic clean-libLTLIBRARIES clean-libtool clean-local \
|
||||
|
Loading…
x
Reference in New Issue
Block a user