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:
authorJo Shields <joshield@microsoft.com>2019-05-17 03:36:31 +0300
committerGitHub <noreply@github.com>2019-05-17 03:36:31 +0300
commit2b35b6bab451c77fcfe7c2cec725ba135333af31 (patch)
tree7887deed5f41b9b44d9d9516378d8b48eebbe85f /configure.ac
parent871e6f58465c973e2e128369875e9d1a55869786 (diff)
[netcore] Build/upload Windows runtime nupkg (#14506)
* [netcore] Switch build properties from /p: to -p: due to MSYS2/dotnet bug * [netcore] Switch from nuget pack to dotnet pack * [netcore] Add Windows x64 build
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index d724f9e2d27..6c2b6671e29 100644
--- a/configure.ac
+++ b/configure.ac
@@ -162,7 +162,7 @@ case "$host" in
fi
HOST_CC="gcc"
RID="win-x86"
- CORETARGETS="/p:TargetsWindows=true"
+ CORETARGETS="-p:TargetsWindows=true"
COREARCH="x86"
# Boehm not supported on 64-bit Windows.
case "$host" in
@@ -312,7 +312,7 @@ case "$host" in
libmono_cflags="-D_REENTRANT"
libdl="-ldl"
libgc_threads=pthreads
- CORETARGETS="/p:TargetsUnix=true"
+ CORETARGETS="-p:TargetsUnix=true"
use_sigposix=yes
if test "x$cross_compiling" != "xno"; then
# to bypass the underscore linker check, not
@@ -404,7 +404,7 @@ case "$host" in
need_link_unlink=yes
AC_DEFINE(PTHREAD_POINTER_ID)
AC_DEFINE(USE_MACH_SEMA, 1, [...])
- CORETARGETS="/p:TargetsUnix=true /p:TargetsOSX=true"
+ CORETARGETS="-p:TargetsUnix=true -p:TargetsOSX=true"
libdl=
libgc_threads=pthreads
has_dtrace=yes
@@ -492,7 +492,7 @@ case "$host" in
dnl ppc Linux is the same? test further
disable_munmap=yes
RID="aix-ppc64"
- CORETARGETS="/p:TargetsUnix=true"
+ CORETARGETS="-p:TargetsUnix=true"
;;
*)
AC_MSG_WARN([*** Please add $host to configure.ac checks!])