本文整理汇总了Python中profile.Profile.attach方法的典型用法代码示例。如果您正苦于以下问题:Python Profile.attach方法的具体用法?Python Profile.attach怎么用?Python Profile.attach使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类profile.Profile
的用法示例。
在下文中一共展示了Profile.attach方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: attach
# 需要导入模块: from profile import Profile [as 别名]
# 或者: from profile.Profile import attach [as 别名]
def attach (self, bockbuild):
Profile.attach (self, bockbuild)
self.name = 'unix'
self.env = Environment(self)
self.staged_prefix = bockbuild.staged_prefix
self.toolchain_root = bockbuild.toolchain_root
self.gcc_flags = ['-I%s/include' % self.staged_prefix]
self.ld_flags = ['-L%s/lib' % self.staged_prefix]
self.env.set('BUILD_PREFIX', '%{prefix}')
self.env.set('PATH', ':',
'%{toolchain_root}/bin',
'%{staged_prefix}/bin',
'/usr/bin',
'/bin',
'/usr/local/git/bin')
self.env.set('C_INCLUDE_PATH', '%{staged_prefix}/include')
#self.env.set ('LD_LIBRARY_PATH', '%{staged_prefix}/lib')
self.env.set('ACLOCAL_FLAGS', '-I%{staged_prefix}/share/aclocal')
self.env.set('PKG_CONFIG_PATH', ':',
'%{staged_prefix}/lib/pkgconfig',
'%{staged_prefix}/share/pkgconfig',
'%{toolchain_root}/lib/pkgconfig',
'%{toolchain_root}/share/pkgconfig')
self.env.set('XDG_CONFIG_DIRS', '%{staged_prefix}/etc/xdg')
self.env.set('XDG_DATA_DIRS', '%{staged_prefix}/share')
self.env.set('XDG_CONFIG_HOME', '$HOME/.config')