[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2018-07-03 Thread STINNER Victor
STINNER Victor added the comment: Yes, I close the issue. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2018-07-03 Thread Michael -O
Michael -O <1983-01...@gmx.net> added the comment: I have applied the patch to 3.6.6 from the source tarball and I was able to proceed with the compilation. I would take the failed tests as blocker. Try to solve them later. Can this be closed? -- nosy: +Michael -O __

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-07-10 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-07-09 Thread STINNER Victor
STINNER Victor added the comment: Oh ok, a lot of tests fail on HP-UX. We are far from supporting HP-UX. 331 tests OK. 41 tests failed: test_asyncio test_asyncore test_c_locale_coercion test_calendar test_cmd_line test_cmd_line_script test_datetime test_distutils test_email test_faul

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-07-07 Thread David Haney
David Haney added the comment: I've attached the test output summary from a recent build. -- Added file: http://bugs.python.org/file46995/tests.out ___ Python tracker ___ ___

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-07-06 Thread Robert Boehne
Changes by Robert Boehne : -- pull_requests: +2674 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-07-03 Thread STINNER Victor
STINNER Victor added the comment: @David Haney: Can you please give the list of tests which fail on HP-UX? I would like to have an idea of the status of the HP-UX support. -- ___ Python tracker ___

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-06-30 Thread Robert Boehne
Robert Boehne added the comment: I am having trouble getting things build still. The problem is that the build is using a naked "ld" to link, and it is picking 32-bit mode by default in my 64-bit acc build. (Itanium) IMO the problem is configure.ac:2467 which should look more like the gcc se

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-06-30 Thread STINNER Victor
STINNER Victor added the comment: > I'd love to have this fix backported to 3.5 and 3.6. It seems trivial to do, > and I'd be happy to do it myself. Go ahead :-) -- ___ Python tracker ___

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-06-30 Thread Robert Boehne
Robert Boehne added the comment: I'd love to have this fix backported to 3.5 and 3.6. It seems trivial to do, and I'd be happy to do it myself. -- nosy: +Robert Boehne ___ Python tracker _

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-06-30 Thread STINNER Victor
STINNER Victor added the comment: Can someone please give the list of failing tests of the Python master branch on HP-UX? -- ___ Python tracker ___ _

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-06-21 Thread STINNER Victor
STINNER Victor added the comment: New changeset c90e96015085784df86632b26059b19c80cbfc97 by Victor Stinner (haney) in branch 'master': bpo-30183: Fixes HP-UX cc compilation error in pytime.c (#1351) https://github.com/python/cpython/commit/c90e96015085784df86632b26059b19c80cbfc97 --

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-06-21 Thread David Haney
Changes by David Haney : -- pull_requests: -2361 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-06-21 Thread David Haney
David Haney added the comment: I submitted a pull request for a possible fix for this issue but haven't received any feedback yet. Is there any additional information needed from me? -- pull_requests: +2361 ___ Python tracker

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-04-28 Thread David Haney
Changes by David Haney : -- pull_requests: +1463 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-04-27 Thread STINNER Victor
STINNER Victor added the comment: I'm quite sure that once I wrote a patch using gethrtime() for Solaris, but then I saw that it's the same clock than clock_gettime(CLOCK_MONOTONIC), so I removed gethrtime() to simplify the code. See also my PEP 418, which mentions gethrtime() by the way: http

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-04-27 Thread David Haney
David Haney added the comment: > It seems like gethrtime() is the right function to be used on HP-UX. > https://docstore.mik.ua/manuals/hp-ux/en/B2355-60130/gethrtime.3C.html Thanks, I'll work on getting a patch that leverages gethrtime() tested and submitted for review. -- __

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-04-27 Thread STINNER Victor
STINNER Victor added the comment: > HP-UX does not support the CLOCK_MONOTONIC state. I'm sorry but CPython requires a monotonic clock since CPython 3.5. According to https://bugreports.qt.io/browse/QTBUG-22301 HP-UX < 11.3 and Solaris 9 don't support monotonic clock. It seems like gethrtime(

[issue30183] [HPUX] compilation error in pytime.c with cc compiler

2017-04-26 Thread David Haney
New submission from David Haney: 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 "CLO