From: John Chen (CLR) Date: Fri, 4 Mar 2016 21:39:47 +0000 (-0800) Subject: Restore linking debug corerun.exe with retail CRT X-Git-Tag: accepted/tizen/base/20180629.140029~5393^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c044e74c13c26229c0c001f810798bc7c7cf1bb;p=platform%2Fupstream%2Fcoreclr.git Restore linking debug corerun.exe with retail CRT The long path support feature modified debug corerun.exe with debug CRT (msvcrtd.dll). This made it more difficult to use corerun.exe, since the debug CRT is not always available. It turns out this change is no longer necessary, so reverting part of the change to link debug corerun.exe with retail CRT (msvcrt.dll) again. --- diff --git a/src/coreclr/hosts/corerun/CMakeLists.txt b/src/coreclr/hosts/corerun/CMakeLists.txt index 5c489bd..3a992eb 100644 --- a/src/coreclr/hosts/corerun/CMakeLists.txt +++ b/src/coreclr/hosts/corerun/CMakeLists.txt @@ -28,7 +28,7 @@ else() oleaut32.lib uuid.lib user32.lib - msvcrt$<$,$>:d>.lib + msvcrt.lib ) # Can't compile on linux yet so only add for windows