msg276806 - (view) |
Author: (yan12125) * |
Date: 2016-09-17 17:20 |
In changeset 919259054621 (from issue12567) and 707761d59a4a (from issue15268), /usr/include/ncursesw was added to include paths in setup.py and configure.ac. This is wrong and breaks cross-compiling. For example, if host has /usr/include/ncursesw/ncurses.h and target has $SYSROOT/include/ncurses.h, the build fails. An example can be found in [1].
My patch removes all references to /usr/include/ncursesw and uses a robust detection, which is suitable for both native builds and cross builds.
Added the authors of aforementioned changesets.
[1] https://s3.amazonaws.com/archive.travis-ci.org/jobs/159936249/log.txt
|
msg276807 - (view) |
Author: (yan12125) * |
Date: 2016-09-17 17:29 |
Hmmm, I don't know why Rietveld failed to recognize changes in configure. Maybe it's because I've modified the patch file manually?
|
msg277430 - (view) |
Author: Matthias Klose (doko) * |
Date: 2016-09-26 15:59 |
looks good to me, thanks for working on this.
|
msg278051 - (view) |
Author: Masayuki Yamamoto (masamoto) * |
Date: 2016-10-04 15:46 |
Now, Cygwin platform is able to build core interpreter on default branch. But the curses module has been failed to build. Therefore I tried to build curses module on Cygwin (Vista x86) using this patch. And it has been succeeded.
The patch effect at build time removes one compiler option "-I/usr/include/ncursesw". Maybe that modification position is setup.py:1352. I couldn't confirm why it has became success.
|
msg278052 - (view) |
Author: (yan12125) * |
Date: 2016-10-04 15:53 |
Hmm it's surprising for me that an irrelevant patch fixes issues on Cygwin. Does test_curses pass?
|
msg278060 - (view) |
Author: Masayuki Yamamoto (masamoto) * |
Date: 2016-10-04 16:47 |
test_curses has been skipped almost. the skip reason has been written "cygwin's curses mostly just hangs" in test case class.
I removed the skip condition, and ran test. Tests was almost passed. The only, unget_wch was failed by edge case '\U0010FFFF', because the wchar_t size on windows platfrom is two bytes. I'll upload test log together.
|
msg282647 - (view) |
Author: (yan12125) * |
Date: 2016-12-07 18:02 |
A clean patch without changes in ./configure. autoreconf necessary
|
msg282698 - (view) |
Author: Matthias Klose (doko) * |
Date: 2016-12-08 08:39 |
the upstream ncurses has the ncursesw subdirinclude name, so you apparently can assume that this directory name is fixed *iff* it exists, however the ncursesw installation can be found in <prefix>/include instead. Can your changes cope with that?
second issue is that you apparently don't do the changes for term.h (and possibly for other headers in other places as well, I only looked at the diff), so you mix ncursesw and ncurses headers. So you have to make these changes in all other places as well.
Third issue is that you can't make these changes for third party extensions, if there are any relying on the ncurses/ncursesw distinction.
fyi, "all" ncursesw headers are:
/usr/include/ncursesw/curses.h
/usr/include/ncursesw/cursesapp.h
/usr/include/ncursesw/cursesf.h
/usr/include/ncursesw/cursesm.h
/usr/include/ncursesw/cursesp.h
/usr/include/ncursesw/cursesw.h
/usr/include/ncursesw/cursslk.h
/usr/include/ncursesw/eti.h
/usr/include/ncursesw/etip.h
/usr/include/ncursesw/form.h
/usr/include/ncursesw/menu.h
/usr/include/ncursesw/nc_tparm.h
/usr/include/ncursesw/ncurses_dll.h
/usr/include/ncursesw/panel.h
/usr/include/ncursesw/term.h
/usr/include/ncursesw/term_entry.h
/usr/include/ncursesw/termcap.h
/usr/include/ncursesw/tic.h
/usr/include/ncursesw/unctrl.h
|
msg282782 - (view) |
Author: (yan12125) * |
Date: 2016-12-09 13:44 |
> second issue is that you apparently don't do the changes for term.h
term.h is included only if ncurses is missing and the system (SysV) curses is used, so I didn't change it. See below:
#ifdef __sgi
#include <term.h>
#endif
#ifdef HAVE_NCURSES_H
#include <ncurses.h>
#else
#include <curses.h>
#ifdef HAVE_TERM_H
/* for tigetstr, which is not declared in SysV curses */
#include <term.h>
#endif
#endif
> Third issue is that you can't make these changes for third party extensions
Did you mean 3rd party extensions that include py_curses.h may get broken with this patch? IMO they shouldn't include this as it's CPython's implementation detail and shouldn't be used outside Modules/_cursesmodule.c and Modules/_curses_panel.c
> however the ncursesw installation can be found in <prefix>/include instead
This is what I want to solve at the first place - make _curses compatible with different configurations. In configure.ac, there's a line:
AC_CHECK_HEADERS(curses.h ncurses.h ncursesw/ncurses.h ncurses/ncurses.h panel.h ncursesw/panel.h ncurses/panel.h)
> so you apparently can assume that this directory name is fixed *iff* it exists
Did you mean there's no need to check panel.h? I'll try to update the patch.
There's something missing from this patch: if ncurses is built with --enable-reentrant, the library and include paths get an additional 't'. For example, the library name becomes libncursestw.so and includedir becomes $prefix/include/ncursestw. Note that 't' comes before 'w' as ncurses's configure.in handles --enable-widec before --enable-reentrant. I skip such cases as --enable-reentrant is not compatible with Modules/_cursesmodule.c yet (issue25720). I'd like to postpone it until issue25720 is resolved as it does not make sense to detect incompatible header paths.
|
msg282806 - (view) |
Author: Xavier de Gaye (xdegaye) * |
Date: 2016-12-09 21:10 |
The only change that is needed here is to not include /usr/include/ncursesw in setup.py when cross compiling to ensure that the headers of the build platform are not included. When cross compiling Python, it is the responsability of the packager to set the appropriate CPPFLAGS and LDFLAGS upon invoking configure, so that the curses headers are included and the curses libraries are linked at build time.
The same is true for the other extension modules, readline, openssl, libffi, etc...
|
msg282822 - (view) |
Author: (yan12125) * |
Date: 2016-12-10 03:41 |
> The only change that is needed here is to not include /usr/include/ncursesw in setup.py when cross compiling
No. Lots of codes in _cursesmodule.c need to know whether it's ncursesw, ncurses, or SysV's curses. For example: (segments below are from unpatched codebase)
#if !defined(__hpux) || defined(HAVE_NCURSES_H)
/* On HP/UX 11, these are of type cchar_t, which is not an
integral type. If this is a problem on more platforms, a
configure test should be added to determine whether ACS_S1
is of integral type. */
SetDictInt("ACS_S1", (ACS_S1));
SetDictInt("ACS_S9", (ACS_S9));
SetDictInt("ACS_DIAMOND", (ACS_DIAMOND));
SetDictInt("ACS_CKBOARD", (ACS_CKBOARD));
SetDictInt("ACS_DEGREE", (ACS_DEGREE));
SetDictInt("ACS_PLMINUS", (ACS_PLMINUS));
SetDictInt("ACS_BULLET", (ACS_BULLET));
SetDictInt("ACS_LARROW", (ACS_LARROW));
SetDictInt("ACS_RARROW", (ACS_RARROW));
SetDictInt("ACS_DARROW", (ACS_DARROW));
SetDictInt("ACS_UARROW", (ACS_UARROW));
SetDictInt("ACS_BOARD", (ACS_BOARD));
SetDictInt("ACS_LANTERN", (ACS_LANTERN));
SetDictInt("ACS_BLOCK", (ACS_BLOCK));
#endif
And
static int
PyCurses_ConvertToCchar_t(PyCursesWindowObject *win, PyObject *obj,
chtype *ch
#ifdef HAVE_NCURSESW
, wchar_t *wch
#endif
)
So detecting ncurses's actual include path is necessary.
|
msg282838 - (view) |
Author: Xavier de Gaye (xdegaye) * |
Date: 2016-12-10 09:08 |
This patch does not add /usr/include/ncursesw to the include directories search paths when cross compiling.
Restoring the original title.
@Chi Hsuan Yen
Please open a new issue for the detection of the curses paths. The current issue is about the failure to cross compile _curses when /usr/include/ncursesw is added to these paths. See the original post and the original title.
|
msg282839 - (view) |
Author: Matthias Klose (doko) * |
Date: 2016-12-10 09:10 |
> The only change that is needed here is to not include
> /usr/include/ncursesw in setup.py when cross compiling
no, this is a very wrong simplification. Both gcc and clang offer a method to search for header files and libraries in a target specific location. Please use these options.
|
msg282840 - (view) |
Author: Xavier de Gaye (xdegaye) * |
Date: 2016-12-10 09:26 |
> Both gcc and clang offer a method to search for header files and libraries in a target specific location.
AFAIK there is no target specific location when cross compiling. What are those cross compilation target specific locations according to you ?
|
msg282844 - (view) |
Author: Xavier de Gaye (xdegaye) * |
Date: 2016-12-10 09:50 |
> no, this is a very wrong simplification. Both gcc and clang offer a method to search for header files and libraries in a target specific location. Please use these options.
Please open a new issue for the detection of the curses paths. The current issue is about the failure to cross compile _curses when /usr/include/ncursesw is added to these paths. See the original post and the original title.
|
msg282848 - (view) |
Author: (yan12125) * |
Date: 2016-12-10 12:20 |
@xdegaye: no-path-to-ncursesw.patch fixes a problem yet introducing a new one. With that patch auto-detection of ncurses include files are broken. Now users have to specify the path manually even for native builds.
|
msg282912 - (view) |
Author: Xavier de Gaye (xdegaye) * |
Date: 2016-12-11 09:35 |
> Now users have to specify the path manually even for native builds.
This does not make sense, the patch does not change anything for the native builds.
|
msg282915 - (view) |
Author: (yan12125) * |
Date: 2016-12-11 11:24 |
Sorry I didn't read your patch carefully and it's surprising for me that you didn't remove/modify this line in configure.ac:
CPPFLAGS="$CPPFLAGS -I/usr/include/ncursesw"
With this line left there, feature detections for _curses are broken as ./configure check against native (/usr/include) headers, whose results make little sense for cross-builds.
|
msg282921 - (view) |
Author: Xavier de Gaye (xdegaye) * |
Date: 2016-12-11 14:27 |
Hum, I did miss that line in configure.ac, thanks for pointing that out.
New patch.
|
msg283111 - (view) |
Author: Roundup Robot (python-dev) |
Date: 2016-12-13 15:06 |
New changeset 8c78d844d6f0 by Xavier de Gaye in branch '3.6':
Issue #28190: Cross compiling the _curses module does not use anymore
https://hg.python.org/cpython/rev/8c78d844d6f0
New changeset bdf92b4e02f2 by Xavier de Gaye in branch 'default':
Issue #28190: Merge 3.6.
https://hg.python.org/cpython/rev/bdf92b4e02f2
|
msg338884 - (view) |
Author: (yan12125) * |
Date: 2019-03-26 12:56 |
As ncurses-related modules in Python alreadu build fine for Android, I consider the issue resolved.
|
msg338889 - (view) |
Author: Matthias Klose (doko) * |
Date: 2019-03-26 13:39 |
no, please don't assume that if it builds for one cross build variant, that it builds for all. re-opening.
|
msg339591 - (view) |
Author: (yan12125) * |
Date: 2019-04-08 06:11 |
I created https://github.com/python/cpython/pull/12587 as a preparation pull request to fix the __sgi issue mentioned in msg282782.
|
|
Date |
User |
Action |
Args |
2022-04-11 14:58:37 | admin | set | github: 72377 |
2019-12-10 08:03:17 | xdegaye | set | nosy:
- xdegaye
|
2019-04-08 06:11:29 | yan12125 | set | messages:
+ msg339591 |
2019-03-26 13:39:57 | doko | set | status: closed -> open resolution: fixed -> messages:
+ msg338889
|
2019-03-26 12:56:05 | yan12125 | set | status: open -> closed resolution: fixed messages:
+ msg338884
stage: patch review -> resolved |
2016-12-13 15:11:44 | xdegaye | unlink | issue26865 dependencies |
2016-12-13 15:07:58 | xdegaye | set | assignee: xdegaye -> |
2016-12-13 15:06:29 | python-dev | set | nosy:
+ python-dev messages:
+ msg283111
|
2016-12-11 14:27:10 | xdegaye | set | files:
+ no-path-to-ncursesw_2.patch
messages:
+ msg282921 |
2016-12-11 11:24:49 | yan12125 | set | messages:
+ msg282915 |
2016-12-11 09:35:39 | xdegaye | set | messages:
+ msg282912 |
2016-12-10 21:23:05 | vstinner | set | nosy:
- vstinner
|
2016-12-10 12:20:33 | yan12125 | set | messages:
+ msg282848 |
2016-12-10 09:50:48 | xdegaye | set | messages:
+ msg282844 |
2016-12-10 09:26:57 | xdegaye | set | messages:
+ msg282840 |
2016-12-10 09:10:43 | doko | set | messages:
+ msg282839 |
2016-12-10 09:08:33 | xdegaye | set | files:
+ no-path-to-ncursesw.patch
assignee: xdegaye components:
- Build title: Detect curses headers correctly for cross-compiling -> Cross-build _curses failed if host ncurses headers and target ncurses headers have different layouts versions:
+ Python 3.6 messages:
+ msg282838 stage: patch review |
2016-12-10 03:41:23 | yan12125 | set | messages:
+ msg282822 |
2016-12-09 21:10:24 | xdegaye | set | messages:
+ msg282806 |
2016-12-09 13:44:55 | yan12125 | set | messages:
+ msg282782 |
2016-12-08 08:39:30 | doko | set | messages:
+ msg282698 |
2016-12-07 20:30:50 | xdegaye | link | issue26865 dependencies |
2016-12-07 18:02:20 | yan12125 | set | files:
+ ncurses-headers.patch
messages:
+ msg282647 |
2016-10-04 16:47:48 | masamoto | set | files:
+ cygwin-test_curses.log
messages:
+ msg278060 |
2016-10-04 15:53:04 | yan12125 | set | messages:
+ msg278052 |
2016-10-04 15:46:04 | masamoto | set | nosy:
+ masamoto messages:
+ msg278051
|
2016-09-30 15:30:32 | xdegaye | set | nosy:
+ xdegaye
|
2016-09-26 15:59:25 | doko | set | messages:
+ msg277430 |
2016-09-25 10:42:00 | serhiy.storchaka | set | nosy:
+ serhiy.storchaka
|
2016-09-25 09:35:49 | yan12125 | set | title: Cross-build _curses failed if host ncurses headers and target ncurses headers have different layouts -> Detect curses headers correctly for cross-compiling |
2016-09-17 17:29:00 | yan12125 | set | messages:
+ msg276807 |
2016-09-17 17:20:08 | yan12125 | create | |