diff -Naur Python-3.7.1/Lib/distutils/command/install.py Python-3.7.1-lib64/Lib/distutils/command/install.py --- Python-3.7.1/Lib/distutils/command/install.py 2018-10-20 08:04:19.000000000 +0200 +++ Python-3.7.1-lib64/Lib/distutils/command/install.py 2018-11-22 13:38:41.476847374 +0100 @@ -29,15 +29,15 @@ INSTALL_SCHEMES = { 'unix_prefix': { - 'purelib': '$base/lib/python$py_version_short/site-packages', - 'platlib': '$platbase/lib/python$py_version_short/site-packages', + 'purelib': '$base/lib64/python$py_version_short/site-packages', + 'platlib': '$platbase/lib64/python$py_version_short/site-packages', 'headers': '$base/include/python$py_version_short$abiflags/$dist_name', 'scripts': '$base/bin', 'data' : '$base', }, 'unix_home': { - 'purelib': '$base/lib/python', - 'platlib': '$base/lib/python', + 'purelib': '$base/lib64/python', + 'platlib': '$base/lib64/python', 'headers': '$base/include/python/$dist_name', 'scripts': '$base/bin', 'data' : '$base', diff -Naur Python-3.7.1/Lib/distutils/sysconfig.py Python-3.7.1-lib64/Lib/distutils/sysconfig.py --- Python-3.7.1/Lib/distutils/sysconfig.py 2018-10-20 08:04:19.000000000 +0200 +++ Python-3.7.1-lib64/Lib/distutils/sysconfig.py 2018-11-22 13:39:16.907329827 +0100 @@ -130,7 +130,7 @@ if os.name == "posix": libpython = os.path.join(prefix, - "lib", "python" + get_python_version()) + "lib64", "python" + get_python_version()) if standard_lib: return libpython else: diff -Naur Python-3.7.1/Lib/distutils/tests/test_install.py Python-3.7.1-lib64/Lib/distutils/tests/test_install.py --- Python-3.7.1/Lib/distutils/tests/test_install.py 2018-10-20 08:04:19.000000000 +0200 +++ Python-3.7.1-lib64/Lib/distutils/tests/test_install.py 2018-11-22 13:39:51.724822677 +0100 @@ -56,7 +56,7 @@ expected = os.path.normpath(expected) self.assertEqual(got, expected) - libdir = os.path.join(destination, "lib", "python") + libdir = os.path.join(destination, "lib64", "python") check_path(cmd.install_lib, libdir) check_path(cmd.install_platlib, libdir) check_path(cmd.install_purelib, libdir) diff -Naur Python-3.7.1/Lib/site.py Python-3.7.1-lib64/Lib/site.py --- Python-3.7.1/Lib/site.py 2018-10-20 08:04:19.000000000 +0200 +++ Python-3.7.1-lib64/Lib/site.py 2018-11-22 13:40:28.182293045 +0100 @@ -334,12 +334,12 @@ seen.add(prefix) if os.sep == '/': - sitepackages.append(os.path.join(prefix, "lib", + sitepackages.append(os.path.join(prefix, "lib64", "python%d.%d" % sys.version_info[:2], "site-packages")) else: sitepackages.append(prefix) - sitepackages.append(os.path.join(prefix, "lib", "site-packages")) + sitepackages.append(os.path.join(prefix, "lib64", "site-packages")) return sitepackages def addsitepackages(known_paths, prefixes=None): diff -Naur Python-3.7.1/Lib/sysconfig.py Python-3.7.1-lib64/Lib/sysconfig.py --- Python-3.7.1/Lib/sysconfig.py 2018-10-20 08:04:19.000000000 +0200 +++ Python-3.7.1-lib64/Lib/sysconfig.py 2018-11-22 13:42:28.262557617 +0100 @@ -20,10 +20,10 @@ _INSTALL_SCHEMES = { 'posix_prefix': { - 'stdlib': '{installed_base}/lib/python{py_version_short}', - 'platstdlib': '{platbase}/lib/python{py_version_short}', - 'purelib': '{base}/lib/python{py_version_short}/site-packages', - 'platlib': '{platbase}/lib/python{py_version_short}/site-packages', + 'stdlib': '{installed_base}/lib64/python{py_version_short}', + 'platstdlib': '{platbase}/lib64/python{py_version_short}', + 'purelib': '{base}/lib64/python{py_version_short}/site-packages', + 'platlib': '{platbase}/lib64/python{py_version_short}/site-packages', 'include': '{installed_base}/include/python{py_version_short}{abiflags}', 'platinclude': @@ -32,10 +32,10 @@ 'data': '{base}', }, 'posix_home': { - 'stdlib': '{installed_base}/lib/python', - 'platstdlib': '{base}/lib/python', - 'purelib': '{base}/lib/python', - 'platlib': '{base}/lib/python', + 'stdlib': '{installed_base}/lib64/python', + 'platstdlib': '{base}/lib64/python', + 'purelib': '{base}/lib64/python', + 'platlib': '{base}/lib64/python', 'include': '{installed_base}/include/python', 'platinclude': '{installed_base}/include/python', 'scripts': '{base}/bin', @@ -62,10 +62,10 @@ 'data': '{userbase}', }, 'posix_user': { - 'stdlib': '{userbase}/lib/python{py_version_short}', - 'platstdlib': '{userbase}/lib/python{py_version_short}', - 'purelib': '{userbase}/lib/python{py_version_short}/site-packages', - 'platlib': '{userbase}/lib/python{py_version_short}/site-packages', + 'stdlib': '{userbase}/lib64/python{py_version_short}', + 'platstdlib': '{userbase}/lib64/python{py_version_short}', + 'purelib': '{userbase}/lib64/python{py_version_short}/site-packages', + 'platlib': '{userbase}/lib64/python{py_version_short}/site-packages', 'include': '{userbase}/include/python{py_version_short}', 'scripts': '{userbase}/bin', 'data': '{userbase}', diff -Naur Python-3.7.1/Lib/test/test_site.py Python-3.7.1-lib64/Lib/test/test_site.py --- Python-3.7.1/Lib/test/test_site.py 2018-10-20 08:04:19.000000000 +0200 +++ Python-3.7.1-lib64/Lib/test/test_site.py 2018-11-22 13:43:53.013339903 +0100 @@ -264,8 +264,8 @@ dirs = site.getsitepackages() if os.sep == '/': # OS X, Linux, FreeBSD, etc - self.assertEqual(len(dirs), 1) - wanted = os.path.join('xoxo', 'lib', + self.assertEqual(len(dirs), 2) + wanted = os.path.join('xoxo', 'lib64', 'python%d.%d' % sys.version_info[:2], 'site-packages') self.assertEqual(dirs[0], wanted) @@ -273,7 +273,7 @@ # other platforms self.assertEqual(len(dirs), 2) self.assertEqual(dirs[0], 'xoxo') - wanted = os.path.join('xoxo', 'lib', 'site-packages') + wanted = os.path.join('xoxo', 'lib64', 'site-packages') self.assertEqual(dirs[1], wanted) class PthFile(object): diff -Naur Python-3.7.1/Makefile.pre.in Python-3.7.1-lib64/Makefile.pre.in --- Python-3.7.1/Makefile.pre.in 2018-10-20 08:04:19.000000000 +0200 +++ Python-3.7.1-lib64/Makefile.pre.in 2018-11-22 13:45:15.125164764 +0100 @@ -134,7 +134,7 @@ MANDIR= @mandir@ INCLUDEDIR= @includedir@ CONFINCLUDEDIR= $(exec_prefix)/include -SCRIPTDIR= $(prefix)/lib +SCRIPTDIR= $(prefix)/lib64 ABIFLAGS= @ABIFLAGS@ # Detailed destination directories @@ -1451,7 +1451,7 @@ # Install the library and miscellaneous stuff needed for extending/embedding # This goes into $(exec_prefix) -LIBPL= @LIBPL@ +LIBPL= $(LIBDEST)/config-$(LDVERSION)-$(MULTIARCH) # pkgconfig directory LIBPC= $(LIBDIR)/pkgconfig diff -Naur Python-3.7.1/Modules/getpath.c Python-3.7.1-lib64/Modules/getpath.c --- Python-3.7.1/Modules/getpath.c 2018-10-20 08:04:19.000000000 +0200 +++ Python-3.7.1-lib64/Modules/getpath.c 2018-11-22 13:47:23.207339294 +0100 @@ -500,7 +500,7 @@ "Could not find platform dependent libraries \n"); } wcsncpy(exec_prefix, calculate->exec_prefix, MAXPATHLEN); - joinpath(exec_prefix, L"lib/lib-dynload"); + joinpath(exec_prefix, L"lib64/lib-dynload"); } /* If we found EXEC_PREFIX do *not* reduce it! (Yet.) */ } @@ -742,7 +742,7 @@ else { wcsncpy(calculate->zip_path, calculate->prefix, MAXPATHLEN); } - joinpath(calculate->zip_path, L"lib/python00.zip"); + joinpath(calculate->zip_path, L"lib64/python00.zip"); /* Replace "00" with version */ size_t bufsz = wcslen(calculate->zip_path); @@ -867,7 +867,7 @@ if (!calculate->prefix) { return DECODE_LOCALE_ERR("EXEC_PREFIX define", len); } - calculate->lib_python = Py_DecodeLocale("lib/python" VERSION, &len); + calculate->lib_python = Py_DecodeLocale("lib64/python" VERSION, &len); if (!calculate->lib_python) { return DECODE_LOCALE_ERR("EXEC_PREFIX define", len); } diff -Naur Python-3.7.1/Modules/Setup.dist Python-3.7.1-lib64/Modules/Setup.dist --- Python-3.7.1/Modules/Setup.dist 2018-10-20 08:04:19.000000000 +0200 +++ Python-3.7.1-lib64/Modules/Setup.dist 2018-11-22 13:49:03.448915873 +0100 @@ -211,7 +211,7 @@ #SSL=/usr/local/ssl #_ssl _ssl.c \ # -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \ -# -L$(SSL)/lib -lssl -lcrypto +# -L$(SSL)/lib64 -lssl -lcrypto # The crypt module is now disabled by default because it breaks builds # on many systems (where -lcrypt is needed), e.g. Linux (I believe). @@ -269,7 +269,7 @@ # *** Always uncomment this (leave the leading underscore in!): # _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \ # *** Uncomment and edit to reflect where your Tcl/Tk libraries are: -# -L/usr/local/lib \ +# -L/usr/local/lib64 \ # *** Uncomment and edit to reflect where your Tcl/Tk headers are: # -I/usr/local/include \ # *** Uncomment and edit to reflect where your X11 header files are: @@ -288,7 +288,7 @@ # *** Uncomment and edit to reflect your Tcl/Tk versions: # -ltk8.2 -ltcl8.2 \ # *** Uncomment and edit to reflect where your X11 libraries are: -# -L/usr/X11R6/lib \ +# -L/usr/X11R6/lib64 \ # *** Or uncomment this for Solaris: # -L/usr/openwin/lib \ # *** Uncomment these for TOGL extension only: @@ -322,7 +322,7 @@ # Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm: -#_gdbm _gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm +#_gdbm _gdbmmodule.c -I/usr/local/include -L/usr/local/lib64 -lgdbm # Helper module for various ascii-encoders @@ -335,7 +335,7 @@ # Andrew Kuchling's zlib module. # This require zlib 1.1.3 (or later). # See http://www.gzip.org/zlib/ -#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz +#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib64 -lz # Interface to the Expat XML parser # More information on Expat can be found at www.libexpat.org. diff -Naur Python-3.7.1/setup.py Python-3.7.1-lib64/setup.py --- Python-3.7.1/setup.py 2018-10-20 08:04:19.000000000 +0200 +++ Python-3.7.1-lib64/setup.py 2018-11-22 13:51:43.031657210 +0100 @@ -541,7 +541,7 @@ # directories (i.e. '.' and 'Include') must be first. See issue # 10520. if not cross_compiling: - add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib') + add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib64') add_dir_to_list(self.compiler.include_dirs, '/usr/local/include') # only change this for cross builds for 3.3, issues on Mageia if cross_compiling: @@ -847,11 +847,11 @@ elif curses_library: readline_libs.append(curses_library) elif self.compiler.find_library_file(lib_dirs + - ['/usr/lib/termcap'], + ['/usr/lib64/termcap'], 'termcap'): readline_libs.append('termcap') exts.append( Extension('readline', ['readline.c'], - library_dirs=['/usr/lib/termcap'], + library_dirs=['/usr/lib64/termcap'], extra_link_args=readline_extra_link_args, libraries=readline_libs) ) else: @@ -1847,7 +1847,7 @@ else: # Assume default location for X11 include_dirs.append('/usr/X11/include') - added_lib_dirs.append('/usr/X11/lib') + added_lib_dirs.append('/usr/X11/lib64') # If Cygwin, then verify that X is installed before proceeding if host_platform == 'cygwin':