Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cdt-dev] About Compile Makefile in CDT
  • From: Torbjorn SVENSSON <torbjorn.svensson@xxxxxx>
  • Date: Tue, 1 Mar 2022 14:49:08 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=st.com; dmarc=pass action=none header.from=st.com; dkim=pass header.d=st.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=ZMvE6rPoa2+2p3PY0rxKKY3lVkkedGxW1zEf6HRePPE=; b=bJKsKKSOVU1SWeyXT6cbgQTjoYghKAZmawEJ4ZuCHbtnUe1FKzYjjkdxzDFhifehNEcU285eCxDH7LSogvu19gCiJMYmaePF0KURcwglio7v2oZhRPxVdg/eI9dASS8Jr0B0Qi45aTZ4rXITPb36hY5t87HKubyRKXbRyT3qY+jWVnugvw9lgipb93JjlhOM7x8Uuv8VsxtiyUkM1XzqiOfpiiamlaU3jYOQAWaF0sWy+lnsEKS/5Evgrjie9pxPZ9nlFBaJ5IjbyQtZiTQPFNsHjGd61oCrSd/bbqfrbeyCW1oPlkgaeF7uFqUb2v4ZgDj1+MhsVSs+FAwHWvEvRA==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=IJ1p5cV/CyMJZadWV17KgByGHxMvl448HLiTonz4Y79ZmQFzvi7BW0tYGYd4VsEvdkv1nBB6bb3cKGBR/PG9HYJFAx39QD7+a0QUnLH9qGQswB/haiM2nZ6vobscxNGS5TPn22v12kViI6a3v27KVM5cslCVex51g6sh9X8L6WyIdWfF3/snX+wH5M4BWvgLC+ecNMpnO8vcTu+OA+1zOzSvg6Vmb8KAi8YGQ4JfPZi56iAqqeyou2qZRnT2un3lc6jGOkCznHsQkJAvLl1AS/ibxN+9y1R1bB/wuEIG84iEKKI43dLv31EE0LtTnjlozoJ64pqFDgjBDr/mzu/eoQ==
  • Delivered-to: cdt-dev@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/cdt-dev/>
  • List-help: <mailto:cdt-dev-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/cdt-dev>, <mailto:cdt-dev-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/cdt-dev>, <mailto:cdt-dev-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AQHYLTJFeyjazJbJBEWpLwTjKVjlB6yqmoGQ
  • Thread-topic: [cdt-dev] About Compile Makefile in CDT

Hello,

 

Although I’m a bit surprised about the error message, the SOURCE_DATE_EPOCH variable is set to a value in the range [0, (1 << 64 - 1)].

It was assumed that the value should be a 64 bit unsigned, but maybe that assumption is wrong?

 

Does anyone have insight on this?

Changing the algorithm would require a rebuild of the windows native parts. Is it too late to do it for 2022-03? My guess is that it is too late.

 

The specification for SOURCE_DATE_EPOCH is available here: https://reproducible-builds.org/specs/source-date-epoch/

 

Kind regards,

Torbjörn

 

From: cdt-dev <cdt-dev-bounces@xxxxxxxxxxx> On Behalf Of Hava Cenk
Sent: den 1 mars 2022 07:04
To: CDT General developers list. <cdt-dev@xxxxxxxxxxx>
Subject: [cdt-dev] About Compile Makefile in CDT

 

Hi folks!

 

I am trying to compile native>native_src>Makefile on Cdt 10.4.0 and I am getting erros like 'Environment variable $SOURCE_DATE_EPOCH: value must be smaller than or equal to 4294967295 but was found to be: 1830181914683634545'.

 

We tried to analyze it based on the message güven by the error, but still There was no solution. I guess due to this error, it doesn't create spawner.dll under win32.x86_64 folder after clean and all.

 

My Makefile compilation format is as follows :

 

mingw32-make.exe Makefile clean

 

mingw32-make.exe Makefile all

 

Can anyone with knowledge help me please?

 

Thanks! 


Back to the top