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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-05-09[build] Bail out early if `git` is not installedAndrés G. Aragoneses
Otherwise typing `make` would fail with this error: ``` $ make if test -d ".git"; then \ git submodule sync; \ git submodule update --init --recursive || exit 1; \ fi /bin/sh: 2: git: not found /bin/sh: 3: git: not found Makefile:12: recipe for target 'update_submodules' failed make: *** [update_submodules] Error 1 ```
2016-01-24Update MakefileArsenShnurkov
2015-12-04Merge branch 'master' into roslynMatt Ward
Conflicts: main/src/addins/NUnit/Gui/AbstractUnitTestEditorExtension.cs version-checks
2015-12-03Add code of conductMiguel de Icaza
2015-10-30[Mac Platform] Enable 64bit with an environment variableiain holmes
2015-10-06[UITest] Allow running a UITest by test case, test fixture or a namespaceManish Sinha
2015-07-10Missing SEMICOLONMarius Ungureanu
2015-07-10[Build] Add `git submodule sync` as a pre-build command.Marius Ungureanu
2015-06-23[build] Let fsharp compile in El CapitanAlan McGovern
With El Capitan we will no longer be able to symlink our binaries in /usr/bin. As such we need to either use full paths to our binaries like 'xbuild' and 'nuget' or we need to ensure they are available in PATH by adding in the path to mono's bin dir. I opted for the latter. This fix is not the best way, so if someone else wants to implement this in a better way feel free.
2015-04-16Create a new test target named uitest to run UITestsManish Sinha
2015-03-10[Coverage] Add a make coverage option to run coverage testsiain holmes
2014-09-16Forcibly remove all assemblies from generated tarball, for source-only build.Jo Shields
2014-09-16Always regenerate buildinfo when making a tarballJo Shields
(buildinfo is cached otherwise)
2014-06-04explicitly generate buildinfo during make dist;Timotheus Pokorra
fixing problems with comments in Makefile, caused by my previous commit
2014-06-03put the buildinfo file into the top srcdir of the tarball.Timotheus Pokorra
the buildinfo target should check if that file exists in the top srcdir, and copy it, or generate with the configure.exe from scripts directory, if the file does not exist yet
2014-05-30improvement: the valid buildinfo file is now copied to the tarballTimotheus Pokorra
2014-05-28fix previous commit, need to escape dollar signs in makefileTimotheus Pokorra
2014-05-28address the problems with version.config missing in the tarball, and the ↵Timotheus Pokorra
scripts directory. do not call scripts/configure.cs in the tarball, because it tries to resolve the version from the git history
2013-07-09Nuke some unnecessary local copiesAlan McGovern
2013-07-09Hide the verbose output in make aotAlan McGovern
2013-07-09More better the 'make aot' targetAlan McGovern
It can now find all the required assemblies by autogenerating MONO_PATH to include all the paths we place our binaries in.
2013-06-25[build] AOT with debug symbolsAlan McGovern
2013-06-25[build] Ensure the addins can be AOT'ed when they reference core libsAlan McGovern
2013-06-25[build] better messagesAlan McGovern
2013-06-25[build] Fix up make aot a bit ;)Alan McGovern
2013-06-25[build] Hello make aotAlan McGovern
If someone wants to AOT their binaries after compilation they can now just run 'make aot' from the toplevel makefile. This is useful for getting nice information in the macos profiler, or in gdb when backtracing.
2012-12-03[Build] if something goes wrong updating the submodules, bail outAlan McGovern
2012-10-22[build] Only update the submodules if inside a git checkoutAlan McGovern
2012-09-28[Makefiles] Add run-sgen targets that run MD with SGen enabled.Bojan Rajkovic
2012-09-07Revert "Remove the other call to update the submodules"Michael Hutchinson
This reverts commit 71f54037d767fc4d37ec7a7728006c6ce870db95.
2012-09-07Revert "[build] Don't reset the submodule here, it breaks normal developer ↵Michael Hutchinson
workflow" This reverts commit 2b9a4c1a1373828114a9af1b5c9cee90d7058fba.
2012-09-04Remove the other call to update the submodulesAlan McGovern
2012-09-04[build] Don't reset the submodule here, it breaks normal developer workflowAlan McGovern
If we constantly reset submodules here it makes it impossible to do in-tree changes and use them.
2012-06-05[Test] Propagate arguments when invoking 'make test'Alan McGovern
2012-06-05[Tests] Import a new test runner using a git submodule and enable the testsAlan McGovern
When MonoDevelop is compiled using --enable-tests we now build MonoMac, MacDev and the UnitTests assemblies. These can then be run on the bots as part of the build process.
2012-05-17Fix #5113 - Improve building portabilityRomain Tartière
2012-05-17[Build] Use the correct version string, it should be PACKAGE_VERSIONAlan McGovern
2012-05-17[Build] Distinguish between externals and addinsAlan McGovern
All the submodule tarballs are put into tarballs/external. These are then merged into the main monodevelop tarball. The regular addin tarballs are left unmerged.
2012-05-17[Build] Put the monodevelop version in a file so i can use it for distAlan McGovern
2012-05-17[Build] Ensure 'make dist' updates the submodulesAlan McGovern
2012-05-17[Build] Use the correct flag for testAlan McGovern
-a is a boolean AND operator. -e checks if the file exists.
2012-05-17[Build] Use more cross platform flags for tarAlan McGovern
2012-05-17[Build] Merge all resulting tarballs into one mega-ballAlan McGovern
2012-05-17[Build] Move submodules to monodevelop/main/externals instead of ↵Alan McGovern
monodevelop/externals This will simplify make dist and building from tarballs as everything will have the correct relative path.
2012-04-26[build] Removed MonoDevelop.MonoMac from the default buildJeffrey Stedfast
2012-03-08Ensure the submodules are updated when make is invoked.Alan McGovern
2011-12-15Added run-gdb makefile targetJeffrey Stedfast
2011-12-15Fixed suspicius lines in MakefileJeffrey Stedfast
2011-11-22Add build magic so that dependencies are linked using git hashesRolf Bjarne Kvinge
2011-09-08Generate spec files when running make distLluis Sanchez Gual