bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: GNU make 4.3.90 release candidate available


From: Paul Smith
Subject: Re: GNU make 4.3.90 release candidate available
Date: Sat, 24 Sep 2022 16:41:50 -0400
User-agent: Evolution 3.44.4 (by Flathub.org)

On Sat, 2022-09-24 at 21:09 +0300, Eli Zaretskii wrote:
> MinGW does have inttypes.h, if you want to use PRId64 or somesuch,
> and
> if the other supported platforms have that.
> 
> I'm fine with using our own definition for PRId64, if that's what you
> prefer.  On makeint.h, I presume?

makeint.h already has HAVE_MAKEINT_H and it's set by configure and all
the custom config.h (or should be).  So I guess afterward it would be
something like,

  #ifndef PRId64
  # ifdef WINDOWS32
  #  define PRId64 "I64d"
  # else
  #  define PRId64 "lld"
  # endif
  #endif

or something like that...?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]