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
2020-02-11Move offsets-tool into mono/tools (#18783)Alexander Köplinger
This allows us to consume it in the dotnet/runtime build.
2019-10-18[sdks] add .gitignore python __pycache__ (#17414)Kenneth Pouncey
This will ignore the __pycache__ files generated after the tools offset build.
2019-10-03[sdks] .gitignore python virtualenv (#17168)Bernhard Urban-Forster
2019-06-16Add the compiler server log to the gitignoreKatelyn Gadd
2019-06-03[Mono.Profiler.Log] Add profiled data reader APIsMarek Safar
2019-05-22[netcore] Set System.Private.Corlib AssemblyVersion to 4.0.0.0 (#14556)Egor Bogatov
* clean up * cleanup * bump assembly version
2019-05-11[sdks] Build Android SDK on Windows (#14402)Aleksey Kliger (λgeek)
Modify the sdks/builds/ infrastructure to support compiling the Android SDK on Windows. The initial goal of this commit is to build only the monodroid BCL on Windows. Compilation of the host and cross-compiler mono binaries is future work. There's one kind of hacky bit in here. Had to make sure that scripts/ci/run-jenkins.sh does _not_ set MONO_EXECUTABLE. Normally windows builds use the msvc in-tree compiled mono binary to build the BCL. In the case of the SDKs, we don't build that msvc binary, and we just use the usual (cygwin) mono to build the BCL. * [sdks] allow building on cygwin * [sdks] Start adding stub templates to llvm.mk * [sdks] provision-android stubs for win32 * [sdks] Pass cygwin host triple to calls to configure on win32 * [sdks] Add runtime stub templates * [sdks] Add android stub templates for win32 This is enough to get configure-android to work on cygwin x86_64 * [sdks] On win32, the HostMxe build is the host buildwe want the x86_64-w64-mingw32 toolchain, not the cygwin toolchain * [sdks] For android on cygwin depend on the mingw64-{x86_64,i686}-zlib * [sdks] Add android SDK build artifacts to .gitignore * [sdks] Add AndroidCrossMXETemplate stub to android.mk for Windows builds * [sdks] Fixup comments in android.mk * [sdks] use UNAME=Windows for Cygwin and WSL Don't assume Cygwin is the build platform for Windows Android SDK builds. Keep using UNAME for coarse platform descriptions. Switch to HOST_ARCH_MINGW32 instead of CYGWIN_BUILD_MACHINE for variable holding the machine part of the host triplet for Windows. * [sdks] Dummy provision-mxe target for windows * [ci] Don't provision-android on Windows It doesn't work yet. * [sdks] temporarily turn off android-host-mxe-Win64-release Needs mingw64-x86_64-zlib on all the CI builds bots. * FIXME: hack - don't set MONO_EXECUTABLE to the msvc mono for Android SDK build * [sdks] drop LLVMProvisionTemplateStub
2019-05-10Merge pull request #14332 from ↵Johan Lorensson
lateralusX/lateralusX/add-llvm-windows-msvc-build-packaging-support Add LLVM Windows MSVC build/packaging/archive/download support.
2019-05-09[gitignore] Add crash dump files, .dylib.dSYM directories, and test-path ↵Ryan Lucia
(#14408) [gitignore] Add crash dump files, .dylib.dSYM directories, and test-path Wasn't sure where in the file to best put the .dylib.dSYM stuff, so suggestions are welcome
2019-05-03Add LLVM SDK build/package support for Windows msvc build LLVM.lateralusX
2019-05-02[netcore] Onboard Arcade (#14301)Jo Shields
2018-11-06Don't override default LLVM's opt & llc args via llvmopts-add and ↵Egor Bogatov
llvmllc-add commands (#11556) Don't override default LLVM's opt & llc args via llvmopts-add and llvmllc-add commands Currently we can pass custom arguments to LLVM's `opt` and `llc` via: ``` mono --aot=llvm,llvmopts="...",llvmllc="..." ``` but those completely override the default arguments mono uses (some of them are required). E.g. lets say I need to add `-foo` to both opt and llc, I should do: ``` mono --aot=llvm,llvmllc="**-foo** -march=x86-64 -mattr=sse4.1 -asm-verbose=false -disable-gnu-eh-frame -enable-mono-eh-frame -mono-eh-frame-symbol=_mono_aot_p_eh_frame -disable-tail-calls -no-x86-call-frame-opt -relocation-model=pic -filetype=obj,llvmopts="**-foo** -O2 -disable-tail-calls" ``` So this PR introduces new commands `llvmopts-add` and `llvmllc-add` to be able to simply do: `mono --aot=llvm,llvmopts-add="-foo",llvmllc-add="-foo"` PS: let me know if you don't like the `-add` suffix /cc: @migueldeicaza
2018-10-30[gitgnore] put .dylib on ignore list (#11453)Bernhard Urban
2018-04-10Clean up some .gitignore files and add *.mlpd to the root file.Alex Rønne Petersen
2018-02-23Updates to support building the BCL using Visual Studio 2017 on windows (#6877)Katelyn Gadd
2017-10-19Update root gitignore (#5831)Egor Bogatov
".idea" - folder generated by jetBrains Rider IDE (it's possible to open, compile and debug net_4_x.sln solution in it)
2017-01-25Adding .exp to git ignore file.Henric Müller
2016-07-21[versions.mk] Make path to SUBMODULES.json based on srcdir (#3314)Alexander Köplinger
Since acceptance-tests/Makefile (and llvm/Makefile) include scripts/submodules/versions.mk which evals versions.py which looks for a SUBMODULES.json file in the current working directory we got confusing error messages if the build directory is not the src dir: ``` Traceback (most recent call last): File "../../mono/scripts/submodules/versions.py", line 22, in <module> submodules = json.load(open(CONFIG_FILE)) IOError: [Errno 2] No such file or directory: 'SUBMODULES.json' ``` Instead we now pass the path to SUBMODULES.json as a variable to versions.py and set it based on $(top_srcdir) so it works even for out-of-tree builds.
2015-11-17Ignore extensions-config.hRolf Bjarne Kvinge
2015-07-16Remove aggressive filterMarek Safar
2015-06-13[tests] Avoid "Address already in use"Marcin Cieslak
Few tests using networking seem to fail due to "Address already in use" error that may be caused by opening listening port too fast - because of some tests running in parallel or because 2MSL TIME_WAIT period.
2015-04-07Remove spec file as we don't use it anymore.Alex Rønne Petersen
See: https://github.com/directhex/mono-snapshot
2015-03-17[genproj] Ignore temporary project generation inputs.João Matos
2015-02-16[git] Ignore Doxygen-related generated files.João Matos
2014-11-25[msvc] Allow cygwin "make" to be called after winsetup.batJo Shields
As-is, winsetup.bat replaces config.h with winconfig.h, which is needed for the MSVC compilation - but breaks all further use of cygwin's make (e.g. to build the class library, or run "make install"). This patch introduces a new cygconfig.h as a backup prior to squashing config.h (if it exists, so the runtime can still be built without cygwin ever being used), and makes winconfig.h use it on non-MSVC compilers (i.e. cygwin)
2014-07-06Ignore automake 'test-driver' fileAlexander Köplinger
This was introduced by automake 1.12 and can be safely ignored.
2013-10-27Ignore .dirstamp files.Alex Rønne Petersen
2013-07-10Ignore only local MakefileMarek Safar
2013-03-08Make the build .gitignore rule absolute. It didn't like mcs/build/.Rodrigo Kumpera
2013-02-07Organized the .gitignore. Added patterns for temporary and user-specific filesJack Pappas
generated by development tools. Added patterns to ignore binaries when projects in mcs/ are compiled.
2012-02-17Add few missing csproj filesMarek Safar
2011-10-07Ignore headers generated by dtrace.Rolf Bjarne Kvinge
2011-04-20Dist fixesAndrew Jorgensen
2011-01-09Ignore files ending in '~'barkerm
2010-01-19Added/Updated .gitignore filesRolf Bjarne Kvinge
svn path=/trunk/mono/; revision=149816
2009-02-28Create .gitignore's.Martin Baulig
svn path=/trunk/mono/; revision=128265