This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author haney
Recipients haney
Date 2017-04-27.04:24:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1493267090.1.0.00115311377195.issue30183@psf.upfronthosting.co.za>
In-reply-to
Content
When compiling on HP-UX with the native cc compiler, the following compilation error occurs in pytime.c

        cc -Ae -c  -O  -O     -I. -I./Include    -DPy_BUILD_CORE -o Python/pytime.o Python/pytime.c
"Python/pytime.c", line 723: error #2020: identifier "CLOCK_MONOTONIC" is
          undefined
      const clockid_t clk_id = CLOCK_MONOTONIC;
                               ^

1 error detected in the compilation of "Python/pytime.c".
*** Error exit code 2

Stop.


HP-UX does not support the CLOCK_MONOTONIC state.
History
Date User Action Args
2017-04-27 04:24:50haneysetrecipients: + haney
2017-04-27 04:24:50haneysetmessageid: <1493267090.1.0.00115311377195.issue30183@psf.upfronthosting.co.za>
2017-04-27 04:24:50haneylinkissue30183 messages
2017-04-27 04:24:49haneycreate