summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-06-27Document *BSD build command in readmeGreg V1-0/+9
2018-06-27Consistent preprocessor indentation in Builder constructorGreg V1-8/+8
That one '# ifdef __linux__' was sticking out
2018-06-27Add FreeBSD and DragonFly targetsGreg V4-5/+77
Also adjust macOS comment. FreeBSD also uses clang and lld (current dev version even uses lld as /usr/bin/ld), function-sections/gc-sections are very well supported. It's probably a Mach-O issue on Macs.
2018-06-27Makefile improvementsGreg V2-4/+5
- one 'make -> $(MAKE)' - customizable LLVM targets, add ARM/AArch64 by default - CXX/CC instead of hardcoded 'g++'/'gcc' for LLVM build
2018-06-27Move src/include/string_view.hpp into own namespaceGreg V2-4/+5
libc++ offers std::string_view regardless of -std flag, so defining a custom std::string_view results in a conflict. This one is actually not a precise clone of the real one (uses two pointers instead of pointer+length).
2018-06-24Expand derive - Slight restructure to allow Copy/Clone magicJohn Hodge1-102/+123
2018-06-24Main - Emit a warning when an unknown phase is included in MRUSTC_DEBUGJohn Hodge1-6/+15
2018-06-04All - Ensure that all files have a header comment, remove some dead codeJohn Hodge78-320/+520
2018-06-04Travis CI - Silence failures from OSX buildsJohn Hodge1-0/+2
2018-06-04MIR Helpers - Handle ItemAddr to enum/struct constructorsJohn Hodge5-5/+81
2018-06-03Merge branch 'master' of https://github.com/thepowersgang/mrustcJohn Hodge115-4246/+5774
2018-06-03Toml - Slightly better commentingJohn Hodge1-1/+5
2018-06-03Trans C - Add configuration for linker argsJohn Hodge3-30/+114
2018-06-03Notes - Borrowck planningJohn Hodge1-0/+22
2018-06-03Script overrides - Include macos libc, add note about originJohn Hodge2-1/+5
2018-06-03Standalone MIRI - Fix parse errors from mrustc changes, add recursion limitJohn Hodge8-12/+83
2018-06-03Build scripts - macos supportJohn Hodge9-1/+13
2018-06-03Travis CI - More output from hello world compile (for debugging)John Hodge1-1/+1
2018-06-03Docs - Rough documentation on invoking minicargo/mrustcJohn Hodge2-2/+115
2018-06-03All - Move host target auto-detection to be common between compiler and ↵John Hodge4-75/+73
minicargo
2018-06-03Travis CI - Stop build if libstd/hello fail to compileJohn Hodge1-6/+7
2018-06-03Testrunner - Fix compilation on OSX, add optimisation and debuginfoJohn Hodge1-1/+15
2018-06-03Trans - Fix some minor errors from building with clangJohn Hodge2-0/+11
2018-06-03Trans - Fix target_os for macJohn Hodge1-1/+1
2018-06-03minicargo - Rough OSX supportJohn Hodge1-4/+29
2018-06-02Remove serialise.cpp compileJohn Hodge1-1/+1
2018-06-02Minicargo - Tweaked error reportingJohn Hodge1-2/+2
2018-06-02AST - Remove old serialisation code (now all done on HIR)John Hodge17-758/+9
2018-06-02HIR Serialise - Explicitly serialise tokens (instead of using ancient code)John Hodge4-18/+57
2018-06-02All - Warning cleanup when built with clangJohn Hodge8-10/+11
2018-06-02Makefile - Only extract debuginfo on gnu targetsJohn Hodge1-0/+1
2018-06-02Clang Compile FixJohn Hodge1-1/+1
2018-06-02OSX Build Tweak - environ definitionJohn Hodge1-1/+1
2018-06-02Travis CI - Tweak environmentJohn Hodge1-3/+3
2018-06-02Targets - Add a rough OSX targetJohn Hodge2-4/+25
2018-06-02Travis CI - Enable OSX buildsJohn Hodge1-16/+25
2018-06-02AST - Annotate all patterns with spansJohn Hodge6-179/+194
2018-06-02Misc - Clean up/triage some testsJohn Hodge2-4/+5
2018-05-27MIR Optimise - Propagate constants into callsJohn Hodge1-0/+6
2018-05-27Include - Add missing fileJohn Hodge1-0/+89
2018-05-27Tests - Clean up some now-passing testsJohn Hodge1-19/+9
2018-05-27AST - Fix missing handling of `for<>` in a few placesJohn Hodge5-21/+42
2018-05-27Trans - Plannin for dynamic library supportJohn Hodge3-48/+67
2018-05-27AST - Include HRBs on fn() types, fix minor parsing bugJohn Hodge4-7/+15
2018-05-26Codegen C - Don't emit destructor when type doesn't need itJohn Hodge1-0/+5
2018-05-26main - Make emiting debug dumps optionalJohn Hodge1-28/+106
2018-05-26HIR Const Eval - (minor) Clean up useless code, comments on potential changesJohn Hodge1-26/+11
2018-05-26Include - Add file/line to ASSERT_BUGJohn Hodge2-1/+8
2018-05-26disabled_tests_run-pass.txt - Sort tests based on logical progressionJohn Hodge1-52/+52
2018-05-25Makefile - Remove -WerrorJohn Hodge1-4/+0