diff mbox

[uclibc-ng-devel] uClibc-ng - small C library for embedded systems branch master updated. v1.0.18-19-ge87c79f

Message ID 20161023071340.868E610103@helium.openadk.org
State Not Applicable
Headers show

Commit Message

wbx Oct. 23, 2016, 7:13 a.m. UTC
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "uClibc-ng - small C library for embedded systems".

The branch, master has been updated
       via  e87c79f7983d995b1a69151e3dd43e9e7466b333 (commit)
       via  a3c78c66667ffaa0487b59e3cc6a5dab5a4e59f2 (commit)
       via  8d2f169a82bec9b8c143e33e447b64e7b555e66a (commit)
      from  a6cdfdfff38584cadec40b6d6f2df2651e0b34b8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit e87c79f7983d995b1a69151e3dd43e9e7466b333
Author: Waldemar Brodkorb <wbx@uclibc-ng.org>
Date:   Sun Oct 23 09:13:29 2016 +0200

    bump for release

commit a3c78c66667ffaa0487b59e3cc6a5dab5a4e59f2
Author: Waldemar Brodkorb <wbx@uclibc-ng.org>
Date:   Sat Oct 22 19:03:37 2016 +0200

    test: add a simple check, that -std=c99 working

commit 8d2f169a82bec9b8c143e33e447b64e7b555e66a
Author: Vineet Gupta <Vineet.Gupta1@synopsys.com>
Date:   Fri Oct 21 14:20:55 2016 -0700

    ARC: build: don't force usage of llock and swape instructions
    
    This is because some old ARC750 cores lack these instructions.
    
    We now rely on the default for the toolchain driver:
    -mcpu=A7 won't enable those, while -mcpu=archs will as these
    instructions are baseline (and thus is not impacted with this change).
    
    If some arc700 based cpu does have them, it can override the driver
    defaults in it's one level up build system.
    
    Signed-off-by: Vineet Gupta <vgupta@synopsys.com>

-----------------------------------------------------------------------

Summary of changes:
 Rules.mak                | 3 +--
 test/pthread/Makefile.in | 2 ++
 test/pthread/tst-c99.c   | 2 ++
 3 files changed, 5 insertions(+), 2 deletions(-)
 create mode 100644 test/pthread/tst-c99.c



hooks/post-receive
diff mbox

Patch

diff --git a/Rules.mak b/Rules.mak
index b9dbf25..9631b03 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -127,7 +127,7 @@  export RUNTIME_PREFIX DEVEL_PREFIX KERNEL_HEADERS MULTILIB_DIR
 # Now config hard core
 MAJOR_VERSION := 1
 MINOR_VERSION := 0
-SUBLEVEL      := 18
+SUBLEVEL      := 19
 EXTRAVERSION  :=
 VERSION       := $(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL)
 ABI_VERSION   := $(MAJOR_VERSION)
@@ -503,7 +503,6 @@  ifeq ($(TARGET_ARCH),c6x)
 endif
 
 ifeq ($(TARGET_ARCH),arc)
-	CPU_CFLAGS-y += -mlock -mswape
 	CPU_CFLAGS-$(CONFIG_ARC_CPU_700) += -mA7
 	CPU_CFLAGS-$(CONFIG_ARC_CPU_HS) += -mcpu=archs
 	CPU_LDFLAGS-y += $(CPU_CFLAGS) -marclinux
diff --git a/test/pthread/Makefile.in b/test/pthread/Makefile.in
index c50748d..bd6b29b 100644
--- a/test/pthread/Makefile.in
+++ b/test/pthread/Makefile.in
@@ -6,3 +6,5 @@  TESTS_DISABLED += cancellation-points
 EXTRA_LDFLAGS := -lpthread
 
 LDFLAGS_cancellation-points := -lrt
+
+CFLAGS_tst-c99 := -std=c99
diff --git a/test/pthread/tst-c99.c b/test/pthread/tst-c99.c
new file mode 100644
index 0000000..3cc91b1
--- /dev/null
+++ b/test/pthread/tst-c99.c
@@ -0,0 +1,2 @@ 
+#include <pthread.h>
+int main(void) { return 0; }