File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
src/Installers/Windows/AspNetCoreModule-Setup/Forwarders Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 11call %1 -host_arch=x64 -arch=arm64 -no_logo
22call build.cmd %2 %3 %4
3+ exit /b 0
Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ cl /nologo /c /arm64EC /Fo%objDir%\aspnetcorev2_x64.obj empty.cpp
88link /lib /nologo /machine:arm64 /def:aspnetcorev2_arm64.def /out:%objDir% \aspnetcorev2_arm64.lib
99link /lib /nologo /machine:x64 /def:aspnetcorev2_x64.def /out:%objDir% \aspnetcorev2_x64.lib
1010
11- link /dll /nologo /noentry /machine:arm64x /defArm64Native:aspnetcorev2_arm64.def /def:aspnetcorev2_x64.def %objDir% \aspnetcorev2_arm64.obj %objDir% \aspnetcorev2_x64.obj %objDir% \..\AspNetCoreModuleShim\x64\%configuration% \aspnetcoremodule.res /out:%binDir% \aspnetcorev2.dll %objDir% \aspnetcorev2_arm64.lib %objDir% \aspnetcorev2_x64.lib
11+ link /dll /nologo /noentry /machine:arm64x /defArm64Native:aspnetcorev2_arm64.def /def:aspnetcorev2_x64.def %objDir% \aspnetcorev2_arm64.obj %objDir% \aspnetcorev2_x64.obj %objDir% \..\AspNetCoreModuleShim\x64\%configuration% \aspnetcoremodule.res /out:%binDir% \aspnetcorev2.dll %objDir% \aspnetcorev2_arm64.lib %objDir% \aspnetcorev2_x64.lib /FORCE:UNRESOLVED
1212
1313cl /nologo /nologo /c /Fo%objDir% \aspnetcorev2_outofprocess_arm64.obj empty.cpp
1414cl /nologo /nologo /c /arm64EC /Fo%objDir% \aspnetcorev2_outofprocess_x64.obj empty.cpp
1515
1616link /lib /nologo /machine:arm64 /def:aspnetcorev2_outofprocess_arm64.def /out:%objDir% \aspnetcorev2_outofprocess_arm64.lib
1717link /lib /nologo /machine:x64 /def:aspnetcorev2_outofprocess_x64.def /out:%objDir% \aspnetcorev2_outofprocess_x64.lib
1818
19- link /dll /nologo /noentry /machine:arm64x /defArm64Native:aspnetcorev2_outofprocess_arm64.def /def:aspnetcorev2_outofprocess_x64.def %objDir% \aspnetcorev2_outofprocess_arm64.obj %objDir% \aspnetcorev2_outofprocess_x64.obj %objDir% \..\OutOfProcessRequestHandler\x64\%configuration% \outofprocessrequesthandler.res /out:%binDir% \aspnetcorev2_outofprocess.dll %objDir% \aspnetcorev2_outofprocess_arm64.lib %objDir% \aspnetcorev2_outofprocess_x64.lib
19+ link /dll /nologo /noentry /machine:arm64x /defArm64Native:aspnetcorev2_outofprocess_arm64.def /def:aspnetcorev2_outofprocess_x64.def %objDir% \aspnetcorev2_outofprocess_arm64.obj %objDir% \aspnetcorev2_outofprocess_x64.obj %objDir% \..\OutOfProcessRequestHandler\x64\%configuration% \outofprocessrequesthandler.res /out:%binDir% \aspnetcorev2_outofprocess.dll %objDir% \aspnetcorev2_outofprocess_arm64.lib %objDir% \aspnetcorev2_outofprocess_x64.lib /FORCE:UNRESOLVED
Original file line number Diff line number Diff line change 1616 <Import Project =" $(VCTargetsPath)\Microsoft.Cpp.targets" />
1717 <Target Name =" Build" DependsOnTargets =" SetBuildDefaultEnvironmentVariables" >
1818 <MakeDir Directories =" $(ObjDir);$(BinDir)" />
19- <Exec Command =" all.cmd $(Prompt) $(ObjDir) $(BinDir) $(Configuration)" />
19+ <!-- Ignore link.exe ARM64X pure forwarder bug -->
20+ <Exec Command =" all.cmd $(Prompt) $(ObjDir) $(BinDir) $(Configuration)" ContinueOnError =" true" IgnoreStandardErrorWarningFormat =" true" />
2021 </Target >
21- </Project >
22+ </Project >
You can’t perform that action at this time.
0 commit comments