blob: af415febbc46e65fd0bdda5cbf1c93f7fa3f9d76 [file] [log] [blame]
Arnaldo Carvalho de Melo877108e2011-01-29 15:44:29 -02001#!/usr/bin/python2
2
Robert Richter1b7155f2011-03-29 20:02:57 +02003from os import getenv
4
Arnaldo Carvalho de Melo4be92cf2017-02-15 21:36:48 -03005cc = getenv("CC")
6if cc == "clang":
7 from _sysconfigdata import build_time_vars
8 from re import sub
9 build_time_vars["CFLAGS"] = sub("-specs=[^ ]+", "", build_time_vars["CFLAGS"])
10
11from distutils.core import setup, Extension
12
Jiri Olsa9941c96a2011-07-22 13:33:07 +020013from distutils.command.build_ext import build_ext as _build_ext
14from distutils.command.install_lib import install_lib as _install_lib
15
16class build_ext(_build_ext):
17 def finalize_options(self):
18 _build_ext.finalize_options(self)
19 self.build_lib = build_lib
20 self.build_temp = build_tmp
21
22class install_lib(_install_lib):
23 def finalize_options(self):
24 _install_lib.finalize_options(self)
25 self.build_dir = build_lib
26
27
Jiri Olsa9c12cf92013-03-21 11:30:54 +010028cflags = getenv('CFLAGS', '').split()
29# switch off several checks (need to be at the end of cflags list)
30cflags += ['-fno-strict-aliasing', '-Wno-write-strings', '-Wno-unused-parameter' ]
Arnaldo Carvalho de Melo877108e2011-01-29 15:44:29 -020031
Jiri Olsa67d52682016-02-27 21:21:12 +010032src_perf = getenv('srctree') + '/tools/perf'
Jiri Olsa9941c96a2011-07-22 13:33:07 +020033build_lib = getenv('PYTHON_EXTBUILD_LIB')
34build_tmp = getenv('PYTHON_EXTBUILD_TMP')
Arnaldo Carvalho de Melo45bff412012-10-18 11:38:35 -030035libtraceevent = getenv('LIBTRACEEVENT')
Jiri Olsa285a8f22015-01-10 20:53:13 +010036libapikfs = getenv('LIBAPI')
Jiri Olsa9941c96a2011-07-22 13:33:07 +020037
Namhyung Kim6a5c13af2012-02-12 19:45:24 +090038ext_sources = [f.strip() for f in file('util/python-ext-sources')
39 if len(f.strip()) > 0 and f[0] != '#']
40
Jiri Olsa67d52682016-02-27 21:21:12 +010041# use full paths with source files
42ext_sources = map(lambda x: '%s/%s' % (src_perf, x) , ext_sources)
43
Arnaldo Carvalho de Melo877108e2011-01-29 15:44:29 -020044perf = Extension('perf',
Namhyung Kim6a5c13af2012-02-12 19:45:24 +090045 sources = ext_sources,
Arnaldo Carvalho de Melof6bbc1d2011-01-31 20:56:27 -020046 include_dirs = ['util/include'],
Robert Richter1b7155f2011-03-29 20:02:57 +020047 extra_compile_args = cflags,
Borislav Petkov553873e2013-12-09 17:14:23 +010048 extra_objects = [libtraceevent, libapikfs],
Robert Richter1b7155f2011-03-29 20:02:57 +020049 )
Arnaldo Carvalho de Melo877108e2011-01-29 15:44:29 -020050
51setup(name='perf',
52 version='0.1',
53 description='Interface with the Linux profiling infrastructure',
54 author='Arnaldo Carvalho de Melo',
55 author_email='acme@redhat.com',
56 license='GPLv2',
57 url='http://perf.wiki.kernel.org',
Jiri Olsa9941c96a2011-07-22 13:33:07 +020058 ext_modules=[perf],
59 cmdclass={'build_ext': build_ext, 'install_lib': install_lib})