Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTorbjörn Svensson2022-03-09 17:16:17 +0000
committerTorbjörn Svensson2022-03-10 06:43:40 +0000
commit66f3c6b08d5879f2e8bae86a47cfa057d2396a41 (patch)
tree0923253f453a055d86b2e2b47b916c3bfbcd96ff /native/org.eclipse.cdt.native.serial
parent0ae896b0f11f959696753e27b58964b49b43d09a (diff)
downloadorg.eclipse.cdt-66f3c6b08d5879f2e8bae86a47cfa057d2396a41.tar.gz
org.eclipse.cdt-66f3c6b08d5879f2e8bae86a47cfa057d2396a41.tar.xz
org.eclipse.cdt-66f3c6b08d5879f2e8bae86a47cfa057d2396a41.zip
Bug 579039: Limit SOURCE_DATE_EPOCH to fit 32bit unsigned int
The impementation in GCC allows a value up to 253402300799 that corresponds to "Dec 31 9999 23:59:59 UTC". Apparently, this is due to some limit of __DATE__ and __TIME__ within the preprocessor. Regardless, as the reporter claims to have problem with values outside the range of a 32bit unsigned integer, lets use "(1 << 32) - 1" as a limit. Contributed by STMicroelectronics Change-Id: Ifa7995cd9edb460d4ad6544b5231eef88d7e39a0 Signed-off-by: Torbjörn Svensson <torbjorn.svensson@st.com>
Diffstat (limited to 'native/org.eclipse.cdt.native.serial')
-rwxr-xr-xnative/org.eclipse.cdt.native.serial/os/win32/x86_64/serial.dllbin379016 -> 379016 bytes
1 files changed, 0 insertions, 0 deletions
diff --git a/native/org.eclipse.cdt.native.serial/os/win32/x86_64/serial.dll b/native/org.eclipse.cdt.native.serial/os/win32/x86_64/serial.dll
index a37480b7cc6..d33f6fdccd1 100755
--- a/native/org.eclipse.cdt.native.serial/os/win32/x86_64/serial.dll
+++ b/native/org.eclipse.cdt.native.serial/os/win32/x86_64/serial.dll
Binary files differ

Back to the top