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.
Created on 2012年04月12日 21:24 by adiroiban, last changed 2022年04月11日 14:57 by admin.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| hpux_local_lib.diff | adiroiban, 2012年04月12日 21:24 | review | ||
| Pull Requests | |||
|---|---|---|---|
| URL | Status | Linked | Edit |
| PR 8831 | closed | michael-o, 2018年08月20日 09:25 | |
| Messages (4) | |||
|---|---|---|---|
| msg158171 - (view) | Author: Adi Roiban (adiroiban) | Date: 2012年04月12日 21:24 | |
Hi, Sorry for bothering you. In my initial report, I did not added /usr/local/lib paths , since I was thinking that Python should only work with the default library location. Now I see that /usr/local is added just at the beginning of module building. The default HPUX system comes with openssl, but for example there is no zlib. Now, on HPUX one can use the Connect archives from http://hpux.connect.org.uk/ They come with a nice tool for providing similar functionality like apt-get or yum. zlib is included in HPUX Connect archive. HPUX Connect packages are installed in /usr/local With the initial code I was able to build hashlib and other extensions using libraries from /usr/local To include /usr/local/lib/hpux* in the path, I also had to add them to self.compiler.library_dirs as otherwise they were not added in LD. I am not sure how it did work in the first place, since on HPUX openssl is in /usr/lib/hpux* and not in /usr/lib/ Here is the code # HP-UX keeps files in lib/hpux folders. if platform == 'hp-ux11': for hpux_path in [ '/usr/lib/hpux64', '/usr/lib/hpux32', '/usr/local/lib/hpux64', '/usr/local/lib/hpux32', ]: lib_dirs += hpux_path add_dir_to_list(self.compiler.library_dirs, hpux_path) With the following code I was able to also build the extensions using libraries from /usr/local on HPUX. I am new to python build system and I am not sure if this is the right way to do it. I am also new to 'hg'. I have pulled the latest changed for cpython but I can not see the previous changes in 'default' branch. I have attached a patch based on 76268:3df2f4a83816 Thanks! Adi |
|||
| msg158191 - (view) | Author: Adi Roiban (adiroiban) | Date: 2012年04月13日 01:38 | |
Hi, There was an error in the patch. Instead of lib_dirs += hpux_path it should be: lib_dirs += [hpux_path] Cheers, |
|||
| msg324180 - (view) | Author: Michael Osipov (michael-o) * | Date: 2018年08月27日 13:49 | |
Can someone review the PR for this? |
|||
| msg340898 - (view) | Author: Michael Osipov (michael-o) * | Date: 2019年04月26日 09:17 | |
Please close because there is actually no /usr/local on HP-UX, System V does use /opt, not /usr/local. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:29 | admin | set | github: 58773 |
| 2019年04月26日 09:17:15 | michael-o | set | messages: + msg340898 |
| 2018年08月27日 13:49:38 | michael-o | set | nosy:
+ michael-o messages: + msg324180 versions: + Python 3.6, Python 3.7, Python 3.8 |
| 2018年08月20日 09:25:03 | michael-o | set | stage: patch review pull_requests: + pull_request8308 |
| 2012年04月13日 01:38:53 | adiroiban | set | messages: + msg158191 |
| 2012年04月12日 21:27:14 | vstinner | set | nosy:
+ neologix |
| 2012年04月12日 21:24:04 | adiroiban | create | |