* [patch] Fix libstdc++ build for Android
@ 2017-06-02 8:37 Eric Botcazou
2017-06-02 10:25 ` Jonathan Wakely
0 siblings, 1 reply; 2+ messages in thread
From: Eric Botcazou @ 2017-06-02 8:37 UTC (permalink / raw)
To: gcc-patches; +Cc: libstdc++
[-- Attachment #1: Type: text/plain, Size: 581 bytes --]
Hi,
libstdc++-v3 already contains support but doesn't build for Android. Now GDB
has switched to C++, which means that you need a C++ cross-build for GDBserver
in order to debug a program on the target.
Tested on x86_64-suse-linux and arm-linux-androideab, OK for mainline?
2017-06-02 Eric Botcazou <ebotcazou@adacore.com>
* configure.ac (*-*-linux-android*): Set target_makefile_frag.
* configure: Regenerate.
config/
* mt-android: New file.
libstdc++-v3/
* src/filesystem/dir.cc (fs::_Dir::advance): Use std::exchange.
--
Eric Botcazou
[-- Attachment #2: p.diff --]
[-- Type: text/x-patch, Size: 1194 bytes --]
Index: config/mt-android
===================================================================
--- config/mt-android (revision 0)
+++ config/mt-android (working copy)
@@ -0,0 +1 @@
+CXXFLAGS_FOR_TARGET += -D_GNU_SOURCE -fexceptions -frtti
Index: configure.ac
===================================================================
--- configure.ac (revision 248140)
+++ configure.ac (working copy)
@@ -2474,6 +2474,9 @@ case "${target}" in
nios2-*-elf*)
target_makefile_frag="config/mt-nios2-elf"
;;
+ *-*-linux-android*)
+ target_makefile_frag="config/mt-android"
+ ;;
*-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu | *-*-kopensolaris*-gnu)
target_makefile_frag="config/mt-gnu"
;;
Index: libstdc++-v3/src/filesystem/dir.cc
===================================================================
--- libstdc++-v3/src/filesystem/dir.cc (revision 248140)
+++ libstdc++-v3/src/filesystem/dir.cc (working copy)
@@ -146,7 +146,8 @@ fs::_Dir::advance(error_code* ec, direct
int err = std::exchange(errno, 0);
const auto entp = readdir(dirp);
- std::swap(errno, err);
+ // std::swap cannot be used with Bionic's errno
+ err = std::exchange(errno, err);
if (entp)
{
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [patch] Fix libstdc++ build for Android
2017-06-02 8:37 [patch] Fix libstdc++ build for Android Eric Botcazou
@ 2017-06-02 10:25 ` Jonathan Wakely
0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Wakely @ 2017-06-02 10:25 UTC (permalink / raw)
To: Eric Botcazou; +Cc: gcc-patches, libstdc++
On 02/06/17 10:37 +0200, Eric Botcazou wrote:
>Hi,
>
>libstdc++-v3 already contains support but doesn't build for Android. Now GDB
>has switched to C++, which means that you need a C++ cross-build for GDBserver
>in order to debug a program on the target.
>
>Tested on x86_64-suse-linux and arm-linux-androideab, OK for mainline?
The libstdc++/src/filesystem/dir.cc change is OK.
I'll probably backport that too (as I tend to keep the filesystem
sources in sync on the branches).
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-06-02 10:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-02 8:37 [patch] Fix libstdc++ build for Android Eric Botcazou
2017-06-02 10:25 ` Jonathan Wakely
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).