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 86706211e091109f02c844d8716bc87008ff9e3b (commit)
from d9a15fec02bf28856d8053d7efcf2fa19233d8d1 (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 86706211e091109f02c844d8716bc87008ff9e3b
Author: Thomas Petazzoni <thomas.petazzoni(a)free-electrons.com>
Date: Tue Nov 3 15:57:41 2015 +0100
unistd: fix #if condition
Commit dfa593d4d881116723a4401b466ea964fb12327b ("syncfs: add system
call support") modified the #if condition around the definition of the
syncfs() prototype in a way that doesn't build, causing build failures
of any file including <unistd.h>:
output/host/usr/powerpc-buildroot-linux-uclibc/sysroot/usr/include/unistd.h:988:14: error: #if with no expression
#if __USE_GNU
Signed-off-by: Thomas Petazzoni <thomas.petazzoni(a)free-electrons.com>
Reported-by: Xi-Sheng Luo <lxsjason(a)gmail.com>
-----------------------------------------------------------------------
Summary of changes:
include/unistd.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/unistd.h b/include/unistd.h
index 4701dab..40d6abd 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -1073,7 +1073,7 @@ extern char *getpass (const char *__prompt) __nonnull ((1));
extern int fsync (int __fd);
#endif /* Use BSD || X/Open || Unix98. */
-#if __USE_GNU
+#if defined __USE_GNU
/* Make all changes done to all files on the file system associated
* with FD actually appear on disk. */
extern int syncfs (int __fd) __THROW;
hooks/post-receive
--
uClibc-ng - small C library for embedded systems
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, 1.0 has been updated
via 57573bbdfd740da8bb10d2e85a21526e971d0a5e (commit)
from 5620d46cb822f4ef010afed9a70e2e4a00b88625 (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 57573bbdfd740da8bb10d2e85a21526e971d0a5e
Author: Thomas Petazzoni <thomas.petazzoni(a)free-electrons.com>
Date: Tue Nov 3 15:57:41 2015 +0100
unistd: fix #if condition
Commit dfa593d4d881116723a4401b466ea964fb12327b ("syncfs: add system
call support") modified the #if condition around the definition of the
syncfs() prototype in a way that doesn't build, causing build failures
of any file including <unistd.h>:
output/host/usr/powerpc-buildroot-linux-uclibc/sysroot/usr/include/unistd.h:988:14: error: #if with no expression
#if __USE_GNU
Signed-off-by: Thomas Petazzoni <thomas.petazzoni(a)free-electrons.com>
Reported-by: Xi-Sheng Luo <lxsjason(a)gmail.com>
-----------------------------------------------------------------------
Summary of changes:
include/unistd.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/unistd.h b/include/unistd.h
index 4701dab..40d6abd 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -1073,7 +1073,7 @@ extern char *getpass (const char *__prompt) __nonnull ((1));
extern int fsync (int __fd);
#endif /* Use BSD || X/Open || Unix98. */
-#if __USE_GNU
+#if defined __USE_GNU
/* Make all changes done to all files on the file system associated
* with FD actually appear on disk. */
extern int syncfs (int __fd) __THROW;
hooks/post-receive
--
uClibc-ng - small C library for embedded systems
Commit dfa593d4d881116723a4401b466ea964fb12327b ("syncfs: add system
call support") modified the #if condition around the definition of the
syncfs() prototype in a way that doesn't build, causing build failures
of any file including <unistd.h>:
output/host/usr/powerpc-buildroot-linux-uclibc/sysroot/usr/include/unistd.h:988:14: error: #if with no expression
#if __USE_GNU
Signed-off-by: Thomas Petazzoni <thomas.petazzoni(a)free-electrons.com>
Reported-by: Xi-Sheng Luo <lxsjason(a)gmail.com>
---
include/unistd.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/unistd.h b/include/unistd.h
index 4701dab..40d6abd 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -1073,7 +1073,7 @@ extern char *getpass (const char *__prompt) __nonnull ((1));
extern int fsync (int __fd);
#endif /* Use BSD || X/Open || Unix98. */
-#if __USE_GNU
+#if defined __USE_GNU
/* Make all changes done to all files on the file system associated
* with FD actually appear on disk. */
extern int syncfs (int __fd) __THROW;
--
2.6.2
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 d9a15fec02bf28856d8053d7efcf2fa19233d8d1 (commit)
from 0f4fffcfd7a7c9646a6513203ca6bd64de093f9e (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 d9a15fec02bf28856d8053d7efcf2fa19233d8d1
Author: Waldemar Brodkorb <wbx(a)openadk.org>
Date: Mon Nov 2 07:04:36 2015 +0100
sh4a: allow to build a sh4a toolchain
Add correct compiler settings.
-----------------------------------------------------------------------
Summary of changes:
Rules.mak | 2 ++
extra/Configs/Config.in | 1 +
extra/Configs/Config.sh | 4 ++++
3 files changed, 7 insertions(+)
diff --git a/Rules.mak b/Rules.mak
index f26d6cf..0a1f642 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -417,9 +417,11 @@ $(eval $(call check-gcc-var,-mprefergot))
ifeq ($(UCLIBC_HAS_FPU),y)
CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a
CPU_CFLAGS-$(CONFIG_SH4)+=-m4
+ CPU_CFLAGS-$(CONFIG_SH4A)+=-m4a
else
CPU_CFLAGS-$(CONFIG_SH2A)+=-m2a-nofpu
CPU_CFLAGS-$(CONFIG_SH4)+=-m4-nofpu
+ CPU_CFLAGS-$(CONFIG_SH4A)+=-m4a-nofpu
endif
endif
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in
index a708e12..a3c4ef0 100644
--- a/extra/Configs/Config.in
+++ b/extra/Configs/Config.in
@@ -237,6 +237,7 @@ config TARGET_SUBARCH
default "e500" if CONFIG_E500
default "classic" if CONFIG_CLASSIC
default "sh4" if CONFIG_SH4
+ default "sh4" if CONFIG_SH4A
default "" if CONFIG_386
default "i486" if CONFIG_486
default "i586" if CONFIG_586
diff --git a/extra/Configs/Config.sh b/extra/Configs/Config.sh
index 5e0fc9e..1367b1c 100644
--- a/extra/Configs/Config.sh
+++ b/extra/Configs/Config.sh
@@ -27,6 +27,7 @@ choice
- "SH2" SuperH SH-2
- "SH3" SuperH SH-3
- "SH4" SuperH SH-4
+ - "SH4A" SuperH SH-4a
config CONFIG_SH2A
select ARCH_HAS_NO_MMU
@@ -44,6 +45,9 @@ config CONFIG_SH3
config CONFIG_SH4
bool "SH4"
+config CONFIG_SH4A
+ bool "SH4A"
+
endchoice
config ARCH_HAS_BWD_MEMCPY
hooks/post-receive
--
uClibc-ng - small C library for embedded systems