File tree Expand file tree Collapse file tree 3 files changed +11
-22
lines changed Expand file tree Collapse file tree 3 files changed +11
-22
lines changed Original file line number Diff line number Diff line change 11TOP =../../../../
2- DOTNET: =$(TOP ) ./ dotnet.sh
2+ DOTNET: =$(TOP ) dotnet.sh
33DOTNET_Q_ARGS =--nologo -v:q -consoleloggerparameters:NoSummary
44
5- MONO_CONFIG ?=Debug
6- MONO_ARCH =x64
5+ MONO_CONFIG? =Debug
6+ MONO_ARCH? =$(shell . $(TOP ) eng/native/init-os-and-arch.sh && echo $${arch})
7+ TARGET_OS? =$(shell . $(TOP ) eng/native/init-os-and-arch.sh && echo $${os} | tr "[:upper:]" "[:lower:]")
78AOT? =false
89
910# NET_TRACE_PATH=<path-to-trace-of-sample>
1011# PGO_BINARY_PATH=<path-to-dotnet-pgo-executable>
1112# MIBC_PROFILE_PATH=<path-to-mibc-for-sample>
1213
13- OS := $(shell uname -s)
14- ifeq ($(OS ) ,Darwin)
15- TARGET_OS=osx
16- else
17- TARGET_OS=linux
18- endif
19-
2014MONO_ENV_OPTIONS ?=
2115
2216publish :
Original file line number Diff line number Diff line change 1- CONFIG =Debug
2- MONO_ARCH =x64
3- DOTNET := ../../../../../dotnet.sh
1+ TOP =../../../../../
2+ CONFIG? =Debug
3+ MONO_ARCH? =$(shell . $(TOP ) eng/native/init-os-and-arch.sh && echo $${arch})
4+ DOTNET: =$(TOP ) dotnet.sh
45
56run-sim :
67 $(DOTNET ) publish -c $(CONFIG ) /p:TargetOS=iOSSimulator /p:TargetArchitecture=$(MONO_ARCH ) \
Original file line number Diff line number Diff line change 11TOP =../../../../../
2- DOTNET: =$(TOP ) ./ dotnet.sh
2+ DOTNET: =$(TOP ) dotnet.sh
33DOTNET_Q_ARGS =--nologo -v:q -consoleloggerparameters:NoSummary
44
55# How to build the project. For hot reload this must be Debug
66CONFIG ?=Debug
77# How was dotnet/runtime built? should be the same as build.sh -c option
88BUILT_RUNTIME_CONFIG ?= Release
9- MONO_ARCH =x64
10-
11- OS := $(shell uname -s)
12- ifeq ($(OS ) ,Darwin)
13- TARGET_OS=osx
14- else
15- TARGET_OS=linux
16- endif
9+ MONO_ARCH? =$(shell . $(TOP ) eng/native/init-os-and-arch.sh && echo $${arch})
10+ TARGET_OS? =$(shell . $(TOP ) eng/native/init-os-and-arch.sh && echo $${os} | tr "[:upper:]" "[:lower:]")
1711
1812MONO_ENV_OPTIONS = --interp
1913
You can’t perform that action at this time.
0 commit comments