public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc(refs/users/aoliva/heads/testme)] libstdc++: testsuite: use -lbsd for net_ts on RTEMS
@ 2022-06-21  0:09 Alexandre Oliva
  0 siblings, 0 replies; 4+ messages in thread
From: Alexandre Oliva @ 2022-06-21  0:09 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:795c4940e3233e8bb75cf8d31976d4591e827079

commit 795c4940e3233e8bb75cf8d31976d4591e827079
Author: Alexandre Oliva <oliva@adacore.com>
Date:   Mon Jun 20 20:44:05 2022 -0300

    libstdc++: testsuite: use -lbsd for net_ts on RTEMS
    
    Networking functions that net_ts tests rely on are defined in libbsd
    on RTEMS, so link with it.
    
    
    for  libstdc++-v3/ChangeLog
    
            * testsuite/lib/dg-options.exp (add_options_for_net_ts): Add
            -lbsd for RTEMS targets.
    
    TN: V617-002

Diff:
---
 libstdc++-v3/testsuite/lib/dg-options.exp | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/libstdc++-v3/testsuite/lib/dg-options.exp b/libstdc++-v3/testsuite/lib/dg-options.exp
index 203bb0dfed5..15f37da468a 100644
--- a/libstdc++-v3/testsuite/lib/dg-options.exp
+++ b/libstdc++-v3/testsuite/lib/dg-options.exp
@@ -253,6 +253,12 @@ proc add_options_for_net_ts { flags } {
     # libsocket and libnsl for networking applications.
     if { [istarget *-*-solaris2*] } {
 	return "$flags -lsocket -lnsl"
+    } elseif { [istarget *-*-rtems*] } {
+	# Adding -Wl,--gc-sections would enable a few more tests to
+	# link, but all of them fail at runtime anyway, because the
+	# io_context ctor calls pipe(), which always fails, and thus
+	# the ctor throws a system error.
+	return "$flags -lbsd"
     }
     return $flags
 }


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gcc(refs/users/aoliva/heads/testme)] libstdc++: testsuite: use -lbsd for net_ts on RTEMS
@ 2022-06-23  5:10 Alexandre Oliva
  0 siblings, 0 replies; 4+ messages in thread
From: Alexandre Oliva @ 2022-06-23  5:10 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:dd40030fdb898ec6dde73c6463d2eec7798aa186

commit dd40030fdb898ec6dde73c6463d2eec7798aa186
Author: Alexandre Oliva <oliva@adacore.com>
Date:   Mon Jun 20 20:44:05 2022 -0300

    libstdc++: testsuite: use -lbsd for net_ts on RTEMS
    
    Networking functions that net_ts tests rely on are defined in libbsd
    on RTEMS, so link with it.
    
    
    for  libstdc++-v3/ChangeLog
    
            * testsuite/lib/dg-options.exp (add_options_for_net_ts): Add
            -lbsd for RTEMS targets.

Diff:
---
 libstdc++-v3/testsuite/lib/dg-options.exp | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/libstdc++-v3/testsuite/lib/dg-options.exp b/libstdc++-v3/testsuite/lib/dg-options.exp
index 203bb0dfed5..15f37da468a 100644
--- a/libstdc++-v3/testsuite/lib/dg-options.exp
+++ b/libstdc++-v3/testsuite/lib/dg-options.exp
@@ -253,6 +253,12 @@ proc add_options_for_net_ts { flags } {
     # libsocket and libnsl for networking applications.
     if { [istarget *-*-solaris2*] } {
 	return "$flags -lsocket -lnsl"
+    } elseif { [istarget *-*-rtems*] } {
+	# Adding -Wl,--gc-sections would enable a few more tests to
+	# link, but all of them fail at runtime anyway, because the
+	# io_context ctor calls pipe(), which always fails, and thus
+	# the ctor throws a system error.
+	return "$flags -lbsd"
     }
     return $flags
 }


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gcc(refs/users/aoliva/heads/testme)] libstdc++: testsuite: use -lbsd for net_ts on RTEMS
@ 2022-06-22  5:22 Alexandre Oliva
  0 siblings, 0 replies; 4+ messages in thread
From: Alexandre Oliva @ 2022-06-22  5:22 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:9ed71d6e0d61623bbc1f18694946323230b6531e

commit 9ed71d6e0d61623bbc1f18694946323230b6531e
Author: Alexandre Oliva <oliva@adacore.com>
Date:   Mon Jun 20 20:44:05 2022 -0300

    libstdc++: testsuite: use -lbsd for net_ts on RTEMS
    
    Networking functions that net_ts tests rely on are defined in libbsd
    on RTEMS, so link with it.
    
    
    for  libstdc++-v3/ChangeLog
    
            * testsuite/lib/dg-options.exp (add_options_for_net_ts): Add
            -lbsd for RTEMS targets.

Diff:
---
 libstdc++-v3/testsuite/lib/dg-options.exp | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/libstdc++-v3/testsuite/lib/dg-options.exp b/libstdc++-v3/testsuite/lib/dg-options.exp
index 203bb0dfed5..15f37da468a 100644
--- a/libstdc++-v3/testsuite/lib/dg-options.exp
+++ b/libstdc++-v3/testsuite/lib/dg-options.exp
@@ -253,6 +253,12 @@ proc add_options_for_net_ts { flags } {
     # libsocket and libnsl for networking applications.
     if { [istarget *-*-solaris2*] } {
 	return "$flags -lsocket -lnsl"
+    } elseif { [istarget *-*-rtems*] } {
+	# Adding -Wl,--gc-sections would enable a few more tests to
+	# link, but all of them fail at runtime anyway, because the
+	# io_context ctor calls pipe(), which always fails, and thus
+	# the ctor throws a system error.
+	return "$flags -lbsd"
     }
     return $flags
 }


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gcc(refs/users/aoliva/heads/testme)] libstdc++: testsuite: use -lbsd for net_ts on RTEMS
@ 2022-06-21  0:17 Alexandre Oliva
  0 siblings, 0 replies; 4+ messages in thread
From: Alexandre Oliva @ 2022-06-21  0:17 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:34f7d7035f5398ed85adb55b646af8a0d5c050e9

commit 34f7d7035f5398ed85adb55b646af8a0d5c050e9
Author: Alexandre Oliva <oliva@adacore.com>
Date:   Mon Jun 20 20:44:05 2022 -0300

    libstdc++: testsuite: use -lbsd for net_ts on RTEMS
    
    Networking functions that net_ts tests rely on are defined in libbsd
    on RTEMS, so link with it.
    
    
    for  libstdc++-v3/ChangeLog
    
            * testsuite/lib/dg-options.exp (add_options_for_net_ts): Add
            -lbsd for RTEMS targets.

Diff:
---
 libstdc++-v3/testsuite/lib/dg-options.exp | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/libstdc++-v3/testsuite/lib/dg-options.exp b/libstdc++-v3/testsuite/lib/dg-options.exp
index 203bb0dfed5..15f37da468a 100644
--- a/libstdc++-v3/testsuite/lib/dg-options.exp
+++ b/libstdc++-v3/testsuite/lib/dg-options.exp
@@ -253,6 +253,12 @@ proc add_options_for_net_ts { flags } {
     # libsocket and libnsl for networking applications.
     if { [istarget *-*-solaris2*] } {
 	return "$flags -lsocket -lnsl"
+    } elseif { [istarget *-*-rtems*] } {
+	# Adding -Wl,--gc-sections would enable a few more tests to
+	# link, but all of them fail at runtime anyway, because the
+	# io_context ctor calls pipe(), which always fails, and thus
+	# the ctor throws a system error.
+	return "$flags -lbsd"
     }
     return $flags
 }


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-06-23  5:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-21  0:09 [gcc(refs/users/aoliva/heads/testme)] libstdc++: testsuite: use -lbsd for net_ts on RTEMS Alexandre Oliva
2022-06-21  0:17 Alexandre Oliva
2022-06-22  5:22 Alexandre Oliva
2022-06-23  5:10 Alexandre Oliva

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).