blob: 77ef7e557e8f110f4e846885b9fe0067a581f313 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001Do not compute platform, this does not work in cross compile environment
2since it pokes at the system for getting architecture values
3
4Upstream-Status: Inappropriate
5Signed-off-by: Khem Raj <raj.khem@gmail.com>
6
Andrew Geisslerf103a7f2021-05-07 16:09:40 -05007--- a/setup.py
8+++ b/setup.py
Andrew Geissler69721092021-07-23 12:57:00 -04009@@ -169,24 +169,6 @@ class _M2CryptoBuildExt(build_ext.build_
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080010 log.debug('self.include_dirs = %s', self.include_dirs)
11 log.debug('self.library_dirs = %s', self.library_dirs)
Brad Bishopd7bf8c12018-02-25 22:55:05 -050012
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080013- if platform.system() == "Linux":
Brad Bishopd7bf8c12018-02-25 22:55:05 -050014- # For RedHat-based distros, the '-D__{arch}__' option for
15- # Swig needs to be normalized, particularly on i386.
16- mach = platform.machine().lower()
17- if mach in ('i386', 'i486', 'i586', 'i686'):
18- arch = '__i386__'
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080019- elif mach in ('ppc64', 'powerpc64', 'ppc64le', 'ppc64el'):
Brad Bishopd7bf8c12018-02-25 22:55:05 -050020- arch = '__powerpc64__'
21- elif mach in ('ppc', 'powerpc'):
22- arch = '__powerpc__'
23- else:
24- arch = '__%s__' % mach
25- self.swig_opts.append('-D%s' % arch)
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080026- if mach in ('ppc64le', 'ppc64el'):
27- self.swig_opts.append('-D_CALL_ELF=2')
Andrew Geissler69721092021-07-23 12:57:00 -040028- if mach in ('arm64_be'):
29- self.swig_opts.append('-D__AARCH64EB__')
Brad Bishopd7bf8c12018-02-25 22:55:05 -050030-
31 self.swig_opts.extend(['-I%s' % i for i in self.include_dirs])
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080032
33 # Some Linux distributor has added the following line in