44 lines
1.2 KiB
Diff
44 lines
1.2 KiB
Diff
From 07a342884c87d8569f5a0a1d13dec60fe67a1fa6 Mon Sep 17 00:00:00 2001
|
|
From: Jonathan Yong <10walls@gmail.com>
|
|
Date: Tue, 8 Sep 2020 15:21:56 +0200
|
|
Subject: [PATCH 10/12] Cygwin: g++ time
|
|
|
|
---
|
|
libstdc++-v3/acinclude.m4 | 3 +++
|
|
libstdc++-v3/configure | 3 +++
|
|
2 files changed, 6 insertions(+)
|
|
|
|
diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4
|
|
index a0094c2dd95..2c7929ef97c 100644
|
|
--- a/libstdc++-v3/acinclude.m4
|
|
+++ b/libstdc++-v3/acinclude.m4
|
|
@@ -1764,7 +1764,10 @@ AC_DEFUN([GLIBCXX_ENABLE_LIBSTDCXX_TIME], [
|
|
|
|
case "${target_os}" in
|
|
cygwin*)
|
|
+ ac_has_clock_monotonic=yes
|
|
+ ac_has_clock_realtime=yes
|
|
ac_has_nanosleep=yes
|
|
+ ac_has_sched_yield=yes
|
|
;;
|
|
mingw*)
|
|
ac_has_win32_sleep=yes
|
|
diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure
|
|
index 819a1d82876..3f65e8e3600 100755
|
|
--- a/libstdc++-v3/configure
|
|
+++ b/libstdc++-v3/configure
|
|
@@ -21291,7 +21291,10 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
|
|
|
case "${target_os}" in
|
|
cygwin*)
|
|
+ ac_has_clock_monotonic=yes
|
|
+ ac_has_clock_realtime=yes
|
|
ac_has_nanosleep=yes
|
|
+ ac_has_sched_yield=yes
|
|
;;
|
|
mingw*)
|
|
ac_has_win32_sleep=yes
|
|
--
|
|
2.45.1
|
|
|