[uClibc-cvs] CVS uClibc++

CVS User gkajmowi gkajmowi at codepoet.org
Thu Dec 23 16:06:44 UTC 2004


Update of /var/cvs/uClibc++
In directory nail:/tmp/cvs-serv884

Modified Files:
	ChangeLog Makefile 
Log Message:
Fix iterator issue in list, streambuf not meeting spec.  Also now valarray is more (but not) complete.
Test suite is much better.

--- /var/cvs/uClibc++/ChangeLog	2004/11/30 17:38:09	1.7
+++ /var/cvs/uClibc++/ChangeLog	2004/12/23 16:06:43	1.8
@@ -1,3 +1,16 @@
+0.1.7 - 2004-12-23
+-	Significant changes to the library
+-	Converted a lot of forced instanteation from double definitions to ifdef tricks
+-	Merged some of the helper functions into the main files
+-	Split off i/ostream string code from core string header
+-	Lots of little bugfixes done involving function definitions, etc.
+-	Fixed a spec error in list code - erase now returns a pointer after deleted elements, not before
+-	Fixed a spec error in streambuf - now call pbackfail instead of returning error.
+-	Added more code to valarray - now supports slice_array - untested
+-	Modified test suite (by popular demand).  Now the process can be automated
+-	Added targets make tests and make test.  tests builds tests and test runs them
+
+
 0.1.6 - 2004-11-30
 -	Fixed problem with straembuf where a value was being returned instead of a pointer
 -	Fixed a problem where a buffer was not flushed on close of an fstraem
--- /var/cvs/uClibc++/Makefile	2004/09/10 04:27:16	1.6
+++ /var/cvs/uClibc++/Makefile	2004/12/23 16:06:43	1.7
@@ -15,9 +15,12 @@
 	$(MAKE) -C src all
 	$(MAKE) -C bin all
 
-test:	all
+tests:	all
 	$(MAKE) -C tests all
 
+test:	all tests
+	$(MAKE) -C tests test
+
 clean:
 	for dir in $(SUBDIRS); do \
 		$(MAKE) -C $$dir clean; \



More information about the uClibc-cvs mailing list