9
0
Fork 0

Update ChangeLog

This commit is contained in:
Gregory Nutt 2015-02-03 08:29:15 -06:00
parent 36c809cf02
commit 5694858d44
1 changed files with 8 additions and 1 deletions

View File

@ -1203,4 +1203,11 @@
(2015-01-27).
* apps/examples/udgram: Add a simple test of Unix domain datagram
sockets (2015-01-28)
* apps/Makefile and builtin/Makefile: Fix for building with parallel
make. Build-server sometimes failed 'make -j24' with errors in the
builtin line or or sometimes silently succeeds but generateed builds
that contain a random subset of configured NuttX applications. There
are two root causes for this: (1) Recipes for building builtin_list.h
and builtin_proto.h are not linearizable, and (2) Nothing ensures
that 'make context' is run first for apps/builtin. This change
address both issues. From Juha Niskanen (2015-02-03).