Imported Upstream version 6.12.0.86
Former-commit-id: 7a84ce7d08c42c458ac8e74b27186ca863315d79
This commit is contained in:
parent
92747312ea
commit
0b380204a4
19
autogen.sh
19
autogen.sh
@ -104,12 +104,10 @@ if grep "^AM_PROG_LIBTOOL" configure.ac >/dev/null; then
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
#
|
||||
# Plug in the extension module
|
||||
#
|
||||
# Parse parameters
|
||||
has_ext_mod=false
|
||||
ext_mod_args=''
|
||||
has_disable_boehm=false
|
||||
for PARAM; do
|
||||
if [[ $PARAM =~ "--enable-extension-module" ]] ; then
|
||||
has_ext_mod=true
|
||||
@ -117,8 +115,14 @@ for PARAM; do
|
||||
ext_mod_args=`echo $PARAM | cut -d= -f2`
|
||||
fi
|
||||
fi
|
||||
if [[ $PARAM =~ "--disable-boehm" ]] ; then
|
||||
has_disable_boehm=true
|
||||
fi
|
||||
done
|
||||
|
||||
#
|
||||
# Plug in the extension module
|
||||
#
|
||||
if test x$has_ext_mod = xtrue; then
|
||||
pushd $top_srcdir../mono-extensions/scripts
|
||||
sh ./prepare-repo.sh $ext_mod_args || exit 1
|
||||
@ -150,7 +154,12 @@ automake $am_opt ||
|
||||
echo "Running autoconf ..."
|
||||
autoconf || { echo "**Error**: autoconf failed."; exit 1; }
|
||||
|
||||
if test -d $srcdir/external/bdwgc; then
|
||||
# Update all submodules recursively to ensure everything is checked out
|
||||
if test -e $srcdir/scripts/update_submodules.sh; then
|
||||
(cd $srcdir && scripts/update_submodules.sh)
|
||||
fi
|
||||
|
||||
if test x$has_disable_boehm = xfalse -a -d $srcdir/external/bdwgc; then
|
||||
echo Running external/bdwgc/autogen.sh ...
|
||||
(cd $srcdir/external/bdwgc ; NOCONFIGURE=1 ./autogen.sh "$@")
|
||||
echo Done running external/bdwgc/autogen.sh ...
|
||||
|
@ -27,6 +27,9 @@
|
||||
/* Disable agent attach support */
|
||||
#undef DISABLE_ATTACH
|
||||
|
||||
/* Disable config directories. */
|
||||
#undef DISABLE_CFGDIR_CONFIG
|
||||
|
||||
/* Disable runtime cleanup. */
|
||||
#undef DISABLE_CLEANUP
|
||||
|
||||
@ -1532,6 +1535,12 @@
|
||||
/* Define to the version of this package. */
|
||||
#undef PACKAGE_VERSION
|
||||
|
||||
/* PowerPC ELFv1 */
|
||||
#undef POWERPC_ELF
|
||||
|
||||
/* PowerPC ELFv2 */
|
||||
#undef POWERPC_ELFV2
|
||||
|
||||
/* getpriority with int who */
|
||||
#undef PRIORITY_REQUIRES_INT_WHO
|
||||
|
||||
|
@ -1 +1 @@
|
||||
57151bd040b7d72a70d75fc7b3935fb3ece1abc3
|
||||
8881f9e3281be1b876b8e97720363b2ce45b5244
|
@ -1 +1 @@
|
||||
d9eb465c39764c44d304b411dd7a31baa2d4bcc9
|
||||
b736fbcec00fc8bd8dbad8a763bc97bb709e56f0
|
@ -242,7 +242,7 @@ namespace HtmlAgilityPack
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Checks for existance of attribute with given name
|
||||
/// Checks for existence of attribute with given name
|
||||
/// </summary>
|
||||
/// <param name="name"></param>
|
||||
/// <returns></returns>
|
||||
|
@ -253,7 +253,7 @@ mono_counters_dump (int section_mask, FILE *outfile)
|
||||
</div>
|
||||
<p />
|
||||
<div class="mapi-section">Parameters</div>
|
||||
<table class="mapi-parameters"><tbody><tr><td><i>section_mask</i></td><td> The sections to dump counters for</td></tr><tr><td><i>outfile</i></td><td> a FILE to dump the results to</td></tr></tbody></table> <div class="mapi-section">Description</div>
|
||||
<table class="mapi-parameters"><tbody><tr><td><i>section_mask</i></td><td> The sections to dump counters for</td></tr><tr><td><i>outfile</i></td><td> a FILE to dump the results to; <code>NULL</code> will default to g_print</td></tr></tbody></table> <div class="mapi-section">Description</div>
|
||||
<div>
|
||||
Displays the counts of all the enabled counters registered.
|
||||
To filter by variance, you can OR one or more variance with the specific section you want.
|
||||
|
@ -1 +1 @@
|
||||
3e8933930502d0d8ded2c9654341153068d92d73
|
||||
e52ae1321cb12d23e3b585c7556602edad61b435
|
@ -1 +1 @@
|
||||
ed1414ca828ee9519a6607ede29370c74a68f69b
|
||||
2c9ad44ed0aa5722e9ba1a8610b6b7dfa4c7dfc0
|
@ -2,12 +2,12 @@
|
||||
// The .NET Foundation licenses this file to you under the MIT license.
|
||||
// See the LICENSE file in the project root for more information.
|
||||
|
||||
[assembly:System.Reflection.AssemblyVersionAttribute("0.11.0.0")]
|
||||
[assembly:System.Reflection.AssemblyVersionAttribute("0.11.1.0")]
|
||||
[assembly:System.CLSCompliantAttribute(false)]
|
||||
[assembly:System.Diagnostics.DebuggableAttribute(System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
|
||||
[assembly:System.Reflection.AssemblyCopyrightAttribute("Copyright © 2008 - 2018 Jb Evain")]
|
||||
[assembly:System.Reflection.AssemblyFileVersionAttribute("0.11.0.0")]
|
||||
[assembly:System.Reflection.AssemblyInformationalVersionAttribute("0.11.0.0")]
|
||||
[assembly:System.Reflection.AssemblyFileVersionAttribute("0.11.1.0")]
|
||||
[assembly:System.Reflection.AssemblyInformationalVersionAttribute("0.11.1.0")]
|
||||
[assembly:System.Reflection.AssemblyProductAttribute("Mono.Cecil")]
|
||||
[assembly:System.Reflection.AssemblyTitleAttribute("Mono.Cecil.Mdb")]
|
||||
[assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
|
||||
|
@ -1 +1 @@
|
||||
7d65de02df2ecf34d5528debc47da5e04ca08c3c
|
||||
d885583bf5126fa7cef592508f257eead32e1fd6
|
@ -103,6 +103,7 @@ namespace Mono.Debugger.Soft
|
||||
{
|
||||
internal CommandException() { }
|
||||
public Mono.Debugger.Soft.ErrorCode ErrorCode { get { throw null; } set { } }
|
||||
public string ErrorMessage { get { throw null; } }
|
||||
}
|
||||
public abstract partial class Connection
|
||||
{
|
||||
@ -174,6 +175,7 @@ namespace Mono.Debugger.Soft
|
||||
{
|
||||
public ErrorHandlerEventArgs() { }
|
||||
public Mono.Debugger.Soft.ErrorCode ErrorCode { get { throw null; } set { } }
|
||||
public string ErrorMessage { get { throw null; } set { } }
|
||||
}
|
||||
public abstract partial class Event
|
||||
{
|
||||
@ -204,6 +206,7 @@ namespace Mono.Debugger.Soft
|
||||
protected void CheckMirror(Mono.Debugger.Soft.VirtualMachine vm, Mono.Debugger.Soft.Mirror m) { }
|
||||
public void Disable() { }
|
||||
public virtual void Enable() { }
|
||||
public int GetId() { throw null; }
|
||||
protected void SetEnabled(int id) { }
|
||||
}
|
||||
public partial class EventSet
|
||||
|
@ -1 +1 @@
|
||||
971ec0433e2549af734d0be493c45056564c2b41
|
||||
d227de624686ae491802de93462fadfaf51e3d05
|
@ -1 +1 @@
|
||||
d22c0752cbf3a18e72df8083ab5354f346c648f8
|
||||
f335934c8d138cba6480252052ba3f3ea71d10fc
|
690
external/bdwgc/autom4te.cache/requests
vendored
690
external/bdwgc/autom4te.cache/requests
vendored
File diff suppressed because it is too large
Load Diff
8
external/bdwgc/config.log
vendored
8
external/bdwgc/config.log
vendored
@ -10,11 +10,11 @@ generated by GNU Autoconf 2.69. Invocation command line was
|
||||
## Platform. ##
|
||||
## --------- ##
|
||||
|
||||
hostname = az-ubuntu-generala37872
|
||||
hostname = az-ubuntu-general34f900
|
||||
uname -m = x86_64
|
||||
uname -r = 4.15.0-1082-azure
|
||||
uname -r = 4.15.0-1091-azure
|
||||
uname -s = Linux
|
||||
uname -v = #92~16.04.1-Ubuntu SMP Tue Apr 14 22:28:34 UTC 2020
|
||||
uname -v = #101~16.04.1-Ubuntu SMP Fri Jun 26 01:14:12 UTC 2020
|
||||
|
||||
/usr/bin/uname -p = unknown
|
||||
/bin/uname -X = unknown
|
||||
@ -747,7 +747,7 @@ generated by GNU Autoconf 2.69. Invocation command line was
|
||||
CONFIG_COMMANDS =
|
||||
$ ./config.status
|
||||
|
||||
on az-ubuntu-generala37872
|
||||
on az-ubuntu-general34f900
|
||||
|
||||
config.status:1238: creating Makefile
|
||||
config.status:1238: creating bdw-gc.pc
|
||||
|
895
external/bdwgc/libatomic_ops/Makefile.in
vendored
Normal file
895
external/bdwgc/libatomic_ops/Makefile.in
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1213
external/bdwgc/libatomic_ops/aclocal.m4
vendored
Normal file
1213
external/bdwgc/libatomic_ops/aclocal.m4
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
external/bdwgc/libatomic_ops/autom4te.cache/output.0.REMOVED.git-id
vendored
Normal file
1
external/bdwgc/libatomic_ops/autom4te.cache/output.0.REMOVED.git-id
vendored
Normal file
@ -0,0 +1 @@
|
||||
503d73065590595e5d71ea576187d317e0a74368
|
1
external/bdwgc/libatomic_ops/autom4te.cache/output.1.REMOVED.git-id
vendored
Normal file
1
external/bdwgc/libatomic_ops/autom4te.cache/output.1.REMOVED.git-id
vendored
Normal file
@ -0,0 +1 @@
|
||||
503d73065590595e5d71ea576187d317e0a74368
|
1
external/bdwgc/libatomic_ops/autom4te.cache/output.2.REMOVED.git-id
vendored
Normal file
1
external/bdwgc/libatomic_ops/autom4te.cache/output.2.REMOVED.git-id
vendored
Normal file
@ -0,0 +1 @@
|
||||
503d73065590595e5d71ea576187d317e0a74368
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user