Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'netcore/build.sh')
-rwxr-xr-xnetcore/build.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/netcore/build.sh b/netcore/build.sh
index 53eb9d9ba69..a57401e8195 100755
--- a/netcore/build.sh
+++ b/netcore/build.sh
@@ -123,6 +123,10 @@ if [ "$llvm" = "true" ]; then
autogen_params="$autogen_params --enable-llvm"
fi
+if [[ "$configuration" == "Debug" ]]; then
+ autogen_params="$autogen_params --enable-checked-build=private_types"
+fi
+
# run .././autogen.sh only once or if "--rebuild" argument is provided
if [[ "$force_rebuild" == "true" || ! -f .configured ]]; then
(cd .. && ./autogen.sh --with-core=only $autogen_params CFLAGS="$EXTRA_CFLAGS" CXXFLAGS="$EXTRA_CXXFLAGS") || (Write-PipelineTelemetryError -c "configure" -e 1 "Error running autogen" && exit 1)