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:
authorAlexis Christoforides <alexis@thenull.net>2016-12-07 00:49:49 +0300
committerAlexis Christoforides <alexis@thenull.net>2016-12-07 00:53:32 +0300
commit3b3b69dae1a851289376e8430a100797cae6a083 (patch)
treef2147ec1603d19599e44a86e0dfb7ae92d600a7a /packaging/MacSDK
parentcd8e84c1f1dede8d6b7670957834d0f14d72c959 (diff)
[Mac SDK] Use MSBuild to build IronPython/IronRuby.
Xbuild currently fails with 'CSC: error CS0041: Unexpected error writing debug information -- 'Windows PDB writer is not available -- could not find Microsoft.DiaSymReader.Native.x86.dll' Xbuild should be passing "/debug:Portable" to csc in order to work. There is a possibly broken attempt to this in 2d08353991213b17f58f64b6ef0fb4525eb4c659.
Diffstat (limited to 'packaging/MacSDK')
-rw-r--r--packaging/MacSDK/ironlangs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/MacSDK/ironlangs.py b/packaging/MacSDK/ironlangs.py
index 0d4e336a879..bf1c347de10 100644
--- a/packaging/MacSDK/ironlangs.py
+++ b/packaging/MacSDK/ironlangs.py
@@ -23,9 +23,9 @@ class IronLanguagesPackage(GitHubTarballPackage):
self.ironpython = os.path.join(
self.workspace, 'ironpython', 'bin') + os.sep
self.sh(
- 'xbuild /p:Configuration=Release /p:OutDir="%{ironruby}" Solutions/Ruby.sln')
+ 'msbuild /p:Configuration=Release /p:OutDir="%{ironruby}" Solutions/Ruby.sln'
self.sh(
- 'xbuild /p:Configuration=Release /p:OutDir="%{ironpython}" Solutions/IronPython.Mono.sln')
+ 'msbuild /p:Configuration=Release /p:OutDir="%{ironpython}" Solutions/IronPython.Mono.sln')
def install_ruby_scripts(self, path, installdir):
for cmd, ext in map(os.path.splitext, os.listdir(path)):