diff --git a/eng/pipelines/coreclr/templates/build-perf-sample-apps.yml b/eng/pipelines/coreclr/templates/build-perf-sample-apps.yml index fd55342e1a055..901078393fab8 100644 --- a/eng/pipelines/coreclr/templates/build-perf-sample-apps.yml +++ b/eng/pipelines/coreclr/templates/build-perf-sample-apps.yml @@ -38,7 +38,7 @@ steps: displayName: clean bindir - ${{ if and(eq(parameters.osGroup, 'ios'), eq(parameters.nameSuffix, 'iOSMono')) }}: - - script: make build-appbundle TARGET=ios MONO_ARCH=arm64 MONO_CONFIG=Release AOT=True USE_LLVM=False DEPLOY_AND_RUN=false STRIP_DEBUG_SYMBOLS=false HYBRID_GLOBALIZATION=${{ parameters.hybridGlobalization }} + - script: make build-appbundle TARGET_OS=ios TARGET_ARCH=arm64 BUILD_CONFIG=Release AOT=True USE_LLVM=False DEPLOY_AND_RUN=false STRIP_DEBUG_SYMBOLS=false HYBRID_GLOBALIZATION=${{ parameters.hybridGlobalization }} env: DevTeamProvisioning: '-' workingDirectory: $(Build.SourcesDirectory)/src/mono/sample/iOS @@ -60,7 +60,7 @@ steps: - script: rm -r -f $(Build.SourcesDirectory)/src/mono/sample/iOS/bin workingDirectory: $(Build.SourcesDirectory)/src/mono/sample/iOS displayName: Clean bindir - - script: make build-appbundle TARGET=ios MONO_ARCH=arm64 MONO_CONFIG=Release AOT=True USE_LLVM=False DEPLOY_AND_RUN=false STRIP_DEBUG_SYMBOLS=true HYBRID_GLOBALIZATION=${{ parameters.hybridGlobalization }} + - script: make build-appbundle TARGET_OS=ios TARGET_ARCH=arm64 BUILD_CONFIG=Release AOT=True USE_LLVM=False DEPLOY_AND_RUN=false STRIP_DEBUG_SYMBOLS=true HYBRID_GLOBALIZATION=${{ parameters.hybridGlobalization }} env: DevTeamProvisioning: '-' workingDirectory: $(Build.SourcesDirectory)/src/mono/sample/iOS @@ -82,7 +82,7 @@ steps: - script: rm -r -f $(Build.SourcesDirectory)/src/mono/sample/iOS/bin workingDirectory: $(Build.SourcesDirectory)/src/mono/sample/iOS displayName: Clean bindir - - script: make build-appbundle TARGET=ios MONO_ARCH=arm64 MONO_CONFIG=Release AOT=True USE_LLVM=True DEPLOY_AND_RUN=false STRIP_DEBUG_SYMBOLS=false HYBRID_GLOBALIZATION=${{ parameters.hybridGlobalization }} + - script: make build-appbundle TARGET_OS=ios TARGET_ARCH=arm64 BUILD_CONFIG=Release AOT=True USE_LLVM=True DEPLOY_AND_RUN=false STRIP_DEBUG_SYMBOLS=false HYBRID_GLOBALIZATION=${{ parameters.hybridGlobalization }} env: DevTeamProvisioning: '-' workingDirectory: $(Build.SourcesDirectory)/src/mono/sample/iOS @@ -104,7 +104,7 @@ steps: - script: rm -r -f $(Build.SourcesDirectory)/src/mono/sample/iOS/bin workingDirectory: $(Build.SourcesDirectory)/src/mono/sample/iOS displayName: Clean bindir - - script: make build-appbundle TARGET=ios MONO_ARCH=arm64 MONO_CONFIG=Release AOT=True USE_LLVM=True DEPLOY_AND_RUN=false STRIP_DEBUG_SYMBOLS=true HYBRID_GLOBALIZATION=${{ parameters.hybridGlobalization }} + - script: make build-appbundle TARGET_OS=ios TARGET_ARCH=arm64 BUILD_CONFIG=Release AOT=True USE_LLVM=True DEPLOY_AND_RUN=false STRIP_DEBUG_SYMBOLS=true HYBRID_GLOBALIZATION=${{ parameters.hybridGlobalization }} env: DevTeamProvisioning: '-' workingDirectory: $(Build.SourcesDirectory)/src/mono/sample/iOS diff --git a/src/mono/sample/iOS/Makefile b/src/mono/sample/iOS/Makefile index a7579772a7977..b7e85dce7a26f 100644 --- a/src/mono/sample/iOS/Makefile +++ b/src/mono/sample/iOS/Makefile @@ -1,8 +1,11 @@ -MONO_CONFIG?=Debug -MONO_ARCH?=x64 -DOTNET := ../../../../dotnet.sh +.DEFAULT_GOAL := all + +TOP=../../../../ + +BUILD_CONFIG?=Debug +TARGET_ARCH?=$(shell . $(TOP)eng/common/native/init-os-and-arch.sh && echo $${arch}) +TARGET_OS?=iossimulator USE_LLVM=true -TARGET?=iossimulator DEPLOY_AND_RUN?=true APP_SANDBOX?=false STRIP_DEBUG_SYMBOLS?=false # only used when measuring SOD via build-appbundle make target @@ -15,22 +18,26 @@ HYBRID_GLOBALIZATION?=true #DIAGNOSTIC_PORTS=127.0.0.1:9000,suspend #DIAGNOSTIC_PORTS=$(DOTNET_DiagnosticPorts) +REPO_DIR=$(realpath $(TOP)) +TASKS_DIR=$(REPO_DIR)/src/tasks +DOTNET=$(REPO_DIR)/dotnet.sh +BUILD_SCRIPT=$(REPO_DIR)/build.sh + all: runtimepack run -TOOLS_DIR=../../../tasks appbuilder: - $(DOTNET) build -c Debug $(TOOLS_DIR)/AotCompilerTask/MonoAOTCompiler.csproj - $(DOTNET) build -c Debug $(TOOLS_DIR)/MonoTargetsTasks/MonoTargetsTasks.csproj - $(DOTNET) build -c Debug $(TOOLS_DIR)/AppleAppBuilder/AppleAppBuilder.csproj + $(DOTNET) build -c $(BUILD_CONFIG) $(TASKS_DIR)/AotCompilerTask/MonoAOTCompiler.csproj + $(DOTNET) build -c $(BUILD_CONFIG) $(TASKS_DIR)/MonoTargetsTasks/MonoTargetsTasks.csproj + $(DOTNET) build -c $(BUILD_CONFIG) $(TASKS_DIR)/AppleAppBuilder/AppleAppBuilder.csproj runtimepack: - ../../../../build.sh mono+libs -os $(TARGET) -arch $(MONO_ARCH) -c $(MONO_CONFIG) + $(BUILD_SCRIPT) mono+libs -os $(TARGET_OS) -arch $(TARGET_ARCH) -c $(BUILD_CONFIG) build-appbundle: clean appbuilder $(DOTNET) publish \ - -c $(MONO_CONFIG) \ - /p:TargetOS=$(TARGET) \ - /p:TargetArchitecture=$(MONO_ARCH) \ + -c $(BUILD_CONFIG) \ + /p:TargetOS=$(TARGET_OS) \ + /p:TargetArchitecture=$(TARGET_ARCH) \ /p:MonoEnableLLVM=$(USE_LLVM) \ /p:StripDebugSymbols=$(STRIP_DEBUG_SYMBOLS) \ /p:DeployAndRun=false \ @@ -39,9 +46,9 @@ build-appbundle: clean appbuilder run: clean appbuilder $(DOTNET) publish \ - -c $(MONO_CONFIG) \ + -c $(BUILD_CONFIG) \ /p:TargetOS=ios \ - /p:TargetArchitecture=$(MONO_ARCH) \ + /p:TargetArchitecture=$(TARGET_ARCH) \ /p:MonoEnableLLVM=$(USE_LLVM) \ /p:DeployAndRun=$(DEPLOY_AND_RUN) \ '/p:DiagnosticPorts="$(DIAGNOSTIC_PORTS)"' \ @@ -49,9 +56,9 @@ run: clean appbuilder run-sim: clean appbuilder $(DOTNET) publish \ - -c $(MONO_CONFIG) \ + -c $(BUILD_CONFIG) \ /p:TargetOS=iossimulator \ - /p:TargetArchitecture=$(MONO_ARCH) \ + /p:TargetArchitecture=$(TARGET_ARCH) \ /p:MonoEnableLLVM=$(USE_LLVM) \ /p:MonoForceInterpreter=false \ /p:DeployAndRun=$(DEPLOY_AND_RUN) \ @@ -60,9 +67,9 @@ run-sim: clean appbuilder run-sim-interp: clean appbuilder $(DOTNET) publish \ - -c $(MONO_CONFIG) \ + -c $(BUILD_CONFIG) \ /p:TargetOS=iossimulator \ - /p:TargetArchitecture=$(MONO_ARCH) \ + /p:TargetArchitecture=$(TARGET_ARCH) \ /p:MonoEnableLLVM=$(USE_LLVM) \ /p:MonoForceInterpreter=true \ /p:DeployAndRun=$(DEPLOY_AND_RUN) \ @@ -71,9 +78,9 @@ run-sim-interp: clean appbuilder run-catalyst: clean appbuilder $(DOTNET) publish \ - -c $(MONO_CONFIG) \ + -c $(BUILD_CONFIG) \ /p:TargetOS=maccatalyst \ - /p:TargetArchitecture=$(MONO_ARCH) \ + /p:TargetArchitecture=$(TARGET_ARCH) \ /p:MonoEnableLLVM=false \ /p:MonoForceInterpreter=false \ /p:DeployAndRun=$(DEPLOY_AND_RUN) \ @@ -82,9 +89,9 @@ run-catalyst: clean appbuilder run-catalyst-interp: clean appbuilder $(DOTNET) publish \ - -c $(MONO_CONFIG) \ + -c $(BUILD_CONFIG) \ /p:TargetOS=maccatalyst \ - /p:TargetArchitecture=$(MONO_ARCH) \ + /p:TargetArchitecture=$(TARGET_ARCH) \ /p:MonoEnableLLVM=false \ /p:MonoForceInterpreter=true \ /p:DeployAndRun=$(DEPLOY_AND_RUN) \ @@ -92,4 +99,4 @@ run-catalyst-interp: clean appbuilder /bl clean: - rm -rf bin + rm -rf obj bin *.binlog