aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
Commit message (Collapse)AuthorAgeFilesLines
* Fix error where make check would not produce compilers first, due to make's ↵Graydon Hoare2011-03-311-0/+32
| | | | infinite-recursion-prevention heuristic.
* Improve 'clean' make target.Graydon Hoare2011-03-311-2/+3
|
* Um, that'd be, align the word *before* retpc. Addresses point to the low ↵Graydon Hoare2011-03-301-3/+0
| | | | part of a word. Un-XFAIL nbody on Darwin.
* Add support for --enable-foo and --disable-foo flags to configure, that ↵Graydon Hoare2011-03-301-6/+10
| | | | Makefile.in respects.
* Beef up the SREQ variables in Makefile.in, make tests depend on libstd.soGraydon Hoare2011-03-291-11/+9
|
* Apparently I learned to type yesterday.Graydon Hoare2011-03-291-1/+1
|
* Add -lstd to the stage0, 1, 2 test executable link commands.Graydon Hoare2011-03-291-6/+11
|
* XFAIL nbody on darwin, quiet tinderbox for now.Graydon Hoare2011-03-291-0/+3
|
* Fix Makefile.in grep for use on weaker greps (win32 mingw).Graydon Hoare2011-03-261-15/+6
|
* Switch xfail system to use comments embedded in source files.Graydon Hoare2011-03-251-234/+56
|
* Parse FP literals without coercing to int. This allows parsing 64-bitTim Chevalier2011-03-251-3/+3
| | | | | | floats. However, if someone writes a literal that can't be represented precisely in 64 bits, the front-end will accept it while the back-end will (presumably) complain.
* Implement local declarations with receive. Un-XFAIL decl-with-recv.rs.Brian Anderson2011-03-251-1/+0
|
* Add test for local declarations with receive. XFAIL in rustc.Brian Anderson2011-03-251-0/+1
|
* Auto-reconfigure on Makefile.in or configure change.Graydon Hoare2011-03-251-0/+10
|
* Un-XFAIL task-comm-4, 5 & 6Brian Anderson2011-03-251-3/+0
|
* Start making the standard-lib utf-8 awareMarijn Haverbeke2011-03-251-0/+1
| | | | | | Finally implements _str.is_utf8, adds from_chars, from_char, to_chars, char_at, char_len, (push|pop|shift|unshift)_char. Also, proper character I/O for streams.
* Don't delete rust.texi on 'make clean'Graydon Hoare2011-03-251-1/+2
|
* Untabify Makefile entry.Graydon Hoare2011-03-251-1/+1
|
* Placate win32 build; no idea how it can be working currently on tinderbox.Graydon Hoare2011-03-251-3/+3
|
* A first stab at the 'nbody' demo, with support for calling C sqrt().Lindsey Kuper2011-03-251-1/+2
|
* build: Generate an object file for stage0/libstd.dylibPatrick Walton2011-03-241-12/+23
|
* rustc: XFAIL use.rs too. Should put out burning tinderbox.Patrick Walton2011-03-241-0/+1
|
* rustc: Open "use"d crates; add a _vec.vec_from_buf() method along the way; ↵Patrick Walton2011-03-241-0/+1
| | | | XFAIL use-import-export.rs in rustc
* build: Add -Wl,-whole-archive to the link flags. Should put out the burning ↵Patrick Walton2011-03-241-4/+7
| | | | tinderbox on Linux.
* build: Use "true" instead of /bin/true, since it's /usr/bin/true on DarwinPatrick Walton2011-03-241-1/+1
|
* Generate the platform-specific .def files at build timePatrick Walton2011-03-241-2/+20
|
* Add a Linux .def file. Might put out burning tinderbox.Patrick Walton2011-03-241-3/+3
|
* rustc: Use a .def file for Darwin. Puts out burning Darwin tinderbox.Patrick Walton2011-03-241-8/+10
|
* XFAIL floating point tests in rustc to put out burning tinderboxPatrick Walton2011-03-241-1/+2
|
* build: Use the .def files when linking on WindowsPatrick Walton2011-03-231-1/+6
|
* build: On newer MinGWs it seems that flexlink needs "-cclib -L/usr/lib". Add ↵Patrick Walton2011-03-231-0/+4
| | | | this.
* Support for 'float' in type signatures.Lindsey Kuper2011-03-231-1/+2
|
* Split too-long 'tidy' command-line up using xargs, for win32.Graydon Hoare2011-03-231-2/+3
|
* More miserable win32 configury fixes. Getting closer.Graydon Hoare2011-03-231-5/+14
|
* Guard texi2pdf on tex probe as well. OSX package systems are real permissive.Graydon Hoare2011-03-231-1/+5
|
* Add layer of indirection to differentiate LD_LIBRARY_PATH vs. DYLD_LIBRARY_PATH.Graydon Hoare2011-03-231-2/+5
|
* Calculate git-derived versions correctly when out-of-tree.Graydon Hoare2011-03-231-4/+4
|
* Fix the float XFAILs in Makefile.in.Graydon Hoare2011-03-231-2/+2
|
* Pick up new XFAIL from Makefile.Graydon Hoare2011-03-231-0/+1
|
* Add doc rules to Makefile.inGraydon Hoare2011-03-231-2/+39
|
* Further support for floating-point. Literals with exponents workTim Chevalier2011-03-221-1/+2
| | | | | | and literals with the 'f32' or 'f64' suffixes work as well. In addition, logging things with the f32 or f64 type works. (float is still assumed to be a synonym for f64).
* Clean a little bit harder.Graydon Hoare2011-03-221-1/+1
|
* XFAIL float.rs in boot under new Makefile.inGraydon Hoare2011-03-221-0/+5
|
* Trim redundant /Graydon Hoare2011-03-221-1/+1
|
* Port auto-dep logic to new Makefile.inGraydon Hoare2011-03-221-1/+80
|
* Add a regression test for channels of nil, which happens to work in rustc, ↵Brian Anderson2011-03-221-0/+1
| | | | but not in rustboot
* Repair some fallout from pcwalton's last few build changes.Graydon Hoare2011-03-211-25/+26
|
* Add .def file support to the new build system (which does nothing at the ↵Patrick Walton2011-03-211-5/+8
| | | | moment since I don't know how to use .defs on MinGW)
* Change llvmext.dll to rustllvm.dll in the new build system to match the def filePatrick Walton2011-03-211-1/+1
|
* Minor distcheck fixesGraydon Hoare2011-03-211-4/+10
|