Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-06-21Undo accidental 2.0 -> 2.1 renames (#5981)Jan Kotas
2018-06-21Rev netcoreapp2.0 to netcoreapp2.1 (#5974)Adeel Mujahid
2018-06-19Pass RID to crossgenAdeel
2018-05-24Change Alpine RID to linux-musl (#5849)Adeel Mujahid
To match new RID set in CoreCLR and CoreFX scripts.
2018-02-23Update buildtools (#5426)Jan Kotas
2017-10-27Fix init-tools when launched from a different directory (#4815)Michal Strehovský
2017-10-26Fix standalone run of init-tools.sh (#4802)Michal Strehovský
* Fix standalone run of init-tools.sh * Split out buildtype-independent vars
2017-10-25Add logging to init-tools.sh (#4797)Michal Strehovský
2017-10-04Enable x86 support for UnixAdeel
Also enabled cross compilation of x86 binaries on x64 host. Ubuntu Dockerfiles: <details> <summary><b><ins>Baseline: x64 build on x64 host</ins></b></summary> ```dockerfile FROM ubuntu RUN cat /etc/*-release RUN apt-get update RUN apt-get install -y \ autoconf bash clang cmake gcc libtool curl \ libunwind-dev llvm make openssl lldb git uuid-dev RUN git clone https://github.com/dotnet/corert -b master --single-branch WORKDIR /corert RUN ./build.sh # or ./build.sh x64 ``` </details> <details> <summary><b><ins>PR: x86 build on x86 host</ins></b></summary> ```dockerfile FROM i386/ubuntu RUN cat /etc/*-release RUN apt-get update RUN apt-get install -y \ bash clang cmake gcc libtool curl \ libunwind-dev llvm make openssl lldb git uuid-dev RUN git clone https://github.com/am11/corert -b linux-x86 --single-branch WORKDIR /corert RUN ./build.sh x86 ``` </details> <details> <summary><b><ins>PR: x86 build on x64 host</ins></b></summary> ```dockerfile FROM ubuntu RUN cat /etc/*-release RUN apt-get update RUN apt-get install -y \ bash clang cmake gcc libtool curl \ libunwind-dev llvm make openssl lldb git uuid-dev \ g++-multilib RUN git clone https://github.com/am11/corert -b linux-x86 --single-branch WORKDIR /corert RUN ./build.sh x86 ``` </details>
2017-10-04Updating CLI to 2.0.0 version (#4667)Jan Kotas
2017-09-21Enable Alpine build (#4579)Adeel Mujahid
Using Linux distro detection part of CoreCLR's init-tools.sh here. The following DockerFile is used to build on Alpine Linue: ```dockerfile FROM alpine:3.6 RUN cat /etc/*-release RUN apk update RUN apk add --no-cache \ autoconf bash build-base clang clang-dev \ cmake curl-dev gcc gettext-dev git icu-dev libtool \ linux-headers libunwind-dev llvm make openssl zlib-dev \ util-linux-dev # note that the testing URL will be changed once lldb-dev is moved to # aports' (more prominent) "main" repo. # See https://github.com/alpinelinux/aports/pull/2342#issuecomment-330894890 RUN apk add --no-cache \ -X https://dl-cdn.alpinelinux.org/alpine/edge/testing \ lldb-dev RUN git clone https://github.com/dotnet/corert -b master --single-branch \ && cd corert && ./build.sh ```
2017-07-15Update init-tools.sh from corefx (#4166)Jan Kotas
2017-06-24Update CoreRT build to use latest .NET CLI and build tools (#3916)Jan Kotas
- Pick up latest .NET Core 2.0 CLI and buildtools - Remove all project.json references and convert everything to msbuild projects - Stick to vanilla .NET CLI project shape as much as possible. Minimize dependencies on buildtools special behaviors
2017-02-26Download newer version of .NET Core 1.0 in init-tools.sh (#2834)Jan Kotas
2017-02-25Update build tools to latest (#2815)Jan Kotas
* Update BuildToolsVersion to latest * Cleanup CLSCompliant warnings * Delete workaround that is no longer needed * Download .NET Core 1.1 * Fix Roslyn props * MSBuild.exe was renamed to MSBuild.dll * Fix CoreCLR tests * Rename netcoreapp12 -> netcoreapp20 * Fix UnitTests runs * Fix RemoveEmptyFinalizers CodeAnalysis warnings * Port init-tools.sh cleanup from CoreCLR
2016-12-08Split build scripts for CI (#2309)Chris Rummel
In order to sign and package our builds properly in CI we need to split the build phases up. These changes add build-native, build-managed, and build-tests scripts, with build-packages soon to come. Summary: - Variable handling moved to buildvars-setup scripts to avoid duplication. - Everything else is from the old scripts with some path cleanup changes. - Build.cmd/sh now calls into the split scripts. - Updated build pipeline definitions for new scripts.
2016-09-27Update buildtools to 1.0.26-prerelease-00809-01 (#1922)Jan Kotas
2016-09-20Update CLIJan Kotas
2016-08-08Update Roslyn compiler to Microsoft.Net.Compilers 2.0.0-beta3 (#1620)Jan Kotas
Microsoft.Net.Compilers 2.0.0-beta3 has support for byref locals and returns that will allow us to improve and simplify number of low-level constructs in the runtime.
2016-04-16Copy init-tools script from corefx repoJan Kotas