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
AgeCommit message (Collapse)Author
2019-09-17[corlib] Fix building nunit-lite twice (#16894)Alexander Köplinger
We sometimes saw the following build error in Mono SDKs builds on Jenkins: ``` [2019-09-16T01:03:30.709Z] CSC [xammac] nunit-lite-console.exe [2019-09-16T01:03:30.709Z] error CS0009: Metadata file '/Users/builder/jenkins/workspace/archive-mono/2019-08/mac/release/mcs/class/lib/xammac/nunitlite.dll' could not be opened -- PE image doesn't contain managed metadata. ``` Taking a closer look we found out that nunit-lite was trying to be built twice for the same profile which caused a race where the file was corrupted. The reason for this is that the corlib Makefile defines two test assemblies: the normal PROFILE_corlib_test.dll and BinarySerializationOverVersionsTest.dll and integrating the BinarySerializationOverVersionsTest.dll via the `test-vts` target incorrectly overwrote the `test` target instead of using `test-local`.
2019-09-17[android sdk] Add aprofutil toolRadek Doulik
2019-08-07[aotprof-tool] Initial import of AOT profiler tool (#15384)Radek Doulik
* [aotprof-tool] Initial import Imported https://github.com/radekdoulik/aotprofile-tool and updated it to use Mono.Profiler.Log * [aotprof-tool] Added man page * [aotprof-tool] Use the shortened name in README.md
2019-04-16[wasm] [packager] Run mono-cil-strip from wasm-tools (#14035)Kenneth Pouncey
* [wasm] Add mono-cil-strip to the wasm tools build * Run mono-cil-strip.exe from tools.
2019-02-27[ci] Add new mode of execution for nunit tests on Android (#13098)Ludovic Henry
* [ci] Add new mode of execution for nunit tests on Android This makes it possible to run the `nunit-lite-console.exe` on the host, while the tests still run on the device. This makes it transparent wherever the tests are running, giving us a seamless integration with the existing infrastructure based around nunit. * [android] Fix System.Net.Http test suite * [android] Fix System.ServiceModel.Web test suite * [android] Fix Mono.Security test suite * fixup! [ci] Add new mode of execution for nunit tests on Android * [ci] Disable failing tests * [csproj] Update project files
2019-01-21[wasm] Add support for linking out unused icalls in interpreter and ↵Zoltan Varga
aot+interp mode using a new --link-icalls option. (#12512) * [wasm] Add a 'wasm-tuner' helper tool which is ran during the app build process. Currently it only supports one option: --gen-icall-table which generates a linked icall table based on a linked mscorlib.dll. * [wasm] Add support for linking out unused icalls in interpreter and aot+interp mode using a new --link-icalls option. This involves the following steps: - mono --print-icall-table > icall-table.json - tuner.exe --gen-icall-table icall-table.json linker-out/mscorlib.dll > icall-table.h - link icall-table.h into the final executable. The downside is that this requires compiling a new mono.wasm even in interpreter mode. * Update README. * Fix thisdir. * [csproj] Update project files
2018-11-19[sdks] Add monotouch_tools profile + Add mono-api-info and pdb2mdb to ↵Ludovic Henry
monodroid_tools profile (#11707) * [sdks] Add monotouch_tools profile * [sdks] Add mono-api-info and pdb2mdb to monodroid_tools profile * [csproj] Update project files
2018-11-13[tools] Add client for sending jobs to HelixAlexander Köplinger
This uses the Helix SDK to create jobs in the Helix environment.
2018-10-25Fix tarball build by including upload-to-sentryAlexander Köplinger
2018-10-25[build] Fixes wasm tools to run on desktop .net as well (#11351)Marek Safar
* [build] Fixes wasm tools to run on desktop .net as well Fixes #11326 * [csproj] Update project files
2018-10-25[build] Add more tools for monodroid to reduce sources dependency (#11352)Marek Safar
* [build] Add more tools for monodroid to reduce sources dependency * [csproj] Update project files
2018-10-23[crash] Add mono_crash uploader for Sentry (#10840)Alexander Kyte
* [crash] Report which thread was crashing * [crash] Added upload-to-sentry tool * [crash] Add sentry uploader step to telemetry
2018-10-10[build] Unify bootstrap profiles (#11024)Marek Safar
* [build] Unify bootstrap profiles We can now rely on build only as we have reliable monolite and package compilers * Fixes genproj dependencies * [csproj] Update project files
2018-10-08[build] Fixes Mono.Cecil boostrap dependencyMarek Safar
2018-09-18[build] Fixes make dist (#10640)Marek Safar
* [build] Fixes make dist * Update Makefile
2018-09-09[build] Enable more BCL build parallelization (#10486)Marek Safar
<!-- Thank you for your Pull Request! If you are new to contributing to Mono, please try to do your best at conforming to our coding guidelines http://www.mono-project.com/community/contributing/coding-guidelines/ but don't worry if you get something wrong. One of the project members will help you to get things landed. Does your pull request fix any of the existing issues? Please use the following format: Fixes #issue-number -->
2018-07-15[mono-api-diff] Moved mono-api-diff into its own tools directory (#9563)Matthew Leibowitz
* [mono-api-diff] Moved mono-api-diff into its own tools directory * [mono-api-diff] Making the requested changes
2018-05-29[build] Includes tools used by XI/XA build CI in build profile (#8924)Marek Safar
2018-03-24Genproj updates for BCL build in Windows Visual Studio (#7755)Katelyn Gadd
This batch of commits makes further updates to our support for building the BCL using msbuild (Visual Studio, to be specific). * Generates a single sln and set of csproj files with support for all of our build profiles (orbis, monodroid, net_4_x, etc) * Project configuration selector (in VS or as parameter to msbuild) can be used to select which profile to build * Includes partial dependency information so that culevel and jay are compiled before the rest of the sln (this keeps pre/post events from from failing on first build) As of this rev things are working pretty good, but a lot of the measures I took here are temporary so I'd appreciate thoughts on how to go about them. The hard-coded System.Web -> Culevel dependency feels gross, for example - I kind of want to go through and build an automatic solution for it but I'm not sure it's necessary. Implements #6858 --- * Checkpoint: Generate single .csproj file with conditional item/property groups * Checkpoint: Updates to csproj and sln generation to support building specific profiles * Move targets file in csproj template so that it isn't evaluated before all properties are set * Checkpoint profile fallback (use net_4_x if project does not have appropriate profile) * Use in-process cache for project guids to fix bug where many guids were being generated. Fix profile fallback. * Clean up unnecessary debug writelines * genproj error fixes * Remove duplicate gacutil entry from makefile to fix order.xml corruption. Cleaner project names in msbuild sln. Compile genproj before generating inputs. * Delete genproj.exe at beginning of update-solution-files because otherwise syntax errors will cause an old version to be used silently Cleaner messages from genproj * Hard-code the guid for culevel and add it as a dependency for system.web * Bug fixes * sln files are sensitive to whitespace format * Don't generate pointless solution configurations if we have no information for them * Updates based on PR feedback
2017-12-16[monodroid] Build linker-analyzer tool for monodroidRadek Doulik
We would like to include linker analyzer in the Xamarin.Android installation (https://github.com/xamarin/xamarin-android/issues/1093)
2017-11-15[runtime] Add Dedup Support to MkBundle (#5484)Alexander Kyte
* [runtime] Fix mkbundle compilation on OSX * [runtime] Add aot arguments to mkbundle * [runtime] Enable compiling aot with mkbundle * [runtime] Add new dedup interface to mkbundle * [runtime] Fix path resolving for mkbundle * [runtime] Use mkbundle in BCL tests * [runtime] Skip building System.Security, System.IdentityModel tests on testing_aot_full * [runtime] Fix in-tree building for mkbundle * [runtime] Move testing dll into profile * [runtime] Add target to mkbundle all tests before CI * [runtime] Build stripper and use with mkbundle Preliminary linker support ran into dependency-finding bug with the monolinker.exe binary. Fix postponed until later. * [runtime] Skip not supported tests with mkbundle * [runtime] Don't re-aot when running BCL tests * [runtime] Provide config to mkbundle * [runtime] Fix mkbundle internationalization test results, build all * [runtime] Clean up temp mkbundle aot directory * [runtime] Add mkbundle support for dedup * [runtime] Fix tracking of dedup module in mkbundle * [runtime] Document mkbundle AOT options in man pages * [runtime] Fix CADMessage generic method argument marshalling
2017-11-10[sdks] Change how we run test suites on the app (#5894)Ludovic Henry
Instead of using a textbox in the app, we use a file which contains which the name of the dll that contains the tests
2017-10-05Add new profile for monodroid tools (#5699)Alexander Köplinger
* Add new profile for monodroid tools This allows the XA build to use these instead of needing to build net_4_x. We build the assemblies against the .NET 4.6 reference assemblies. * Skip monodroid_tools in verify (aka mcs-compileall) Exclude it from the test_profiles since running tests makes no sense there. Also refactor to exclude binary_reference_assemblies as well, it was already excluded manually in mcs-compileall before.
2017-08-31Revert "Merge pull request #5330 from alexanderkyte/dedup_mkbundle"Alexander Köplinger
This reverts commit 9a287c04126d095e7371afee32632febd0dafd93, reversing changes made to 4a79280b3bef8d5f15da9ddd2a2af3a03e194b03. It breaks tons of tests.
2017-08-30[runtime] Build stripper and use with mkbundleAlexander Kyte
Preliminary linker support ran into dependency-finding bug with the monolinker.exe binary. Fix postponed until later.
2017-07-19[bcl] Fix the parallel build in the tools dir. (#5236)Zoltan Varga
2017-05-23Remove outdated info and unused files from mcs/ (#4916)Alexander Köplinger
Most of the removed files weren't touched in the last decade and are unused so it's better to remove them to avoid confusion about what they do. I also went over and removed the most outdated info from readme files, we probably want to do a more thorough overhaul in the future.
2017-05-18Add linker testsMarek Safar
2017-05-09[tools] Add resx2sr to "build" profile (#4807)Alexander Köplinger
Similar to 9635b9cea0515432fead4c370b0533db91861bfe we can now break the dependency on WinForms from resx2sr. This allows us to add it to the "build" profile and clean up the Makefile.
2017-04-10[resgen] Remove dependency on WinForms and use it in mobile profiles (#4667)Alexander Köplinger
resgen.exe used to load WinForms via reflection which is a pretty large dependency. Instead we can just embed the few types that are used for reading/writing resx files directly into the app. Add System.Drawing.dll to the "build" profile so we can put resgen there as well and allow us to no longer rely on system resgen for mobile profiles like monotouch/monodroid.
2017-01-17[tools] Add mdb2ppdb tool for converting a .mdb file to a portable pdb .pdb ↵Zoltan Varga
file. (#4251)
2017-01-13[btls] Remove btls-cert-sync and integrate it into cert-syncAlexander Köplinger
cert-sync already knew how to import into the BTLS cert store, update it to always import into both stores so we don't need the btls-cert-sync tool anymore.
2016-11-11Remove extracted linker sources and reuse them via submoduleMarek Safar
2016-09-30[BTLS]: Add managed BTLS sources.Martin Baulig
* external/boringssl: unmanaged code from Google (added earlier). * mono/btls: unmanaged BTLS lives here (added earlier). * System/Mono.Btls: managed BTLS lives here. * Mono.Btls.Interface: The purpose of this assembly is to allow test suites such as xamarin/web-tests to test parts of the BTLS APIs without making System.dll's internals visible. It is not a stable and maintained API.
2016-04-14Revert "Revert "[build] Clean up common crypto build""Marek Safar
This reverts commit ba9d141ed8b7680d812e54f5db8adf19e1a3d4f4.
2016-04-14Revert "[build] Clean up common crypto build"Bernhard Urban
This reverts commit ecd2f512ced44cd6c6e48594aa27435d0e64eecc.
2016-04-13[build] Clean up common crypto buildMarek Safar
2016-04-04[build] Change the way how mcs references are passed to compiler to always ↵Marek Safar
use full path. One of csc prerequisites because csc uses -lib as path which is considered after RuntimeEnvironment.GetRuntimeDirectory which makes -lib useless
2016-03-04[bcl] Redo referencesource resource string integration to not depend on mcsMarek Safar
2015-09-18[linker-analyzer] enable build of linker-analyzer toolRadek Doulik
2015-03-09[mono-symbolicate] Changed files to use new tool name.Marcos Henrich
2015-02-28[bcl] Enable parallel build for parts of the 4.5 class libs/tools.Zoltan Varga
2015-02-03Remove obsolete profiles and profile checks from the build system.Alex Rønne Petersen
* Removed all old profiles from VALID_PROFILE checks. * Removed most logic under checks like ifeq (net_2_0), $(PROFILE)) as it is dead code now that those old profiles are gone. * Simplified the list of assemblies in mcs/class/Makefile now that we only have one profile. * LIBRARY_NEEDS_POSTPROCESSING has been removed as it was only used by old 1.x assemblies that no longer exist. * Build logic that sets MONO_PATH now points to mcs/class/lib/net_4_5 instead of mcs/class/lib/net_2_0.
2015-01-27Add tools/symbolicate to the build.Zoltan Varga
2014-11-23Remove build system support for the net 2.0/3.5 profiles.Zoltan Varga
2014-03-25Distribute the ikdasm managed disassembler written by Jeroen Frijters.Zoltan Varga
2013-02-01Add new mdbrebase tool that lets you change the prefix of its source files.Rodrigo Kumpera
2013-01-14[monodoc] Move to /class instead of /tools and re-enable compilation for 4.0 ↵Jeremie Laval
profile.
2012-03-27Make monodoc 4.0 lib when mdoc is 4.0 appMarek Safar
2011-09-29Make mdoc a .NET 4.0 profile app.Jonathan Pryor
This isn't so much so that mdoc can use C#4 features. It's instead so that the mdoc unit tests can use C#4 features. :-)