Lines Matching refs:glibc

1250     def __init__(self, glibc, headers_dir):  argument
1251 self.arch = glibc.compiler.arch
1252 self.srcdir = glibc.compiler.ctx.component_srcdir('linux')
1253 self.builddir = glibc.ctx.component_builddir(
1254 'update-syscalls', glibc.name, 'build-linux')
1499 def __init__(self, glibc): argument
1500 self.srcdir = glibc.ctx.component_srcdir('glibc')
1501 self.use_usr = glibc.os != 'gnu'
1506 '--build=%s' % glibc.ctx.build_triplet,
1507 '--host=%s' % glibc.triplet,
1508 'CC=%s' % glibc.tool_name('gcc'),
1509 'CXX=%s' % glibc.tool_name('g++'),
1510 'AR=%s' % glibc.tool_name('ar'),
1511 'AS=%s' % glibc.tool_name('as'),
1512 'LD=%s' % glibc.tool_name('ld'),
1513 'NM=%s' % glibc.tool_name('nm'),
1514 'OBJCOPY=%s' % glibc.tool_name('objcopy'),
1515 'OBJDUMP=%s' % glibc.tool_name('objdump'),
1516 'RANLIB=%s' % glibc.tool_name('ranlib'),
1517 'READELF=%s' % glibc.tool_name('readelf'),
1518 'STRIP=%s' % glibc.tool_name('strip'),
1520 if glibc.os == 'gnu':
1521 self.configure_args.append('MIG=%s' % glibc.tool_name('mig'))
1522 if glibc.cflags:
1523 self.configure_args.append('CFLAGS=%s' % glibc.cflags)
1524 self.configure_args.append('CXXFLAGS=%s' % glibc.cflags)
1525 self.configure_args += glibc.cfg
1540 def __init__(self, glibc): argument
1541 super().__init__(glibc)
1542 self.builddir = glibc.ctx.component_builddir(
1543 'compilers', glibc.compiler.name, 'glibc', glibc.name)
1544 self.installdir = glibc.compiler.sysroot
1549 def __init__(self, glibc): argument
1550 super().__init__(glibc)
1551 self.builddir = glibc.ctx.component_builddir(
1552 'glibcs', glibc.name, 'glibc')
1553 self.installdir = glibc.ctx.glibc_installdir(glibc.name)
1554 if glibc.ctx.strip:
1555 self.strip = glibc.tool_name('strip')
1558 self.save_logs = glibc.ctx.save_logs
1575 def __init__(self, glibc): argument
1576 super().__init__(glibc)
1577 self.builddir = glibc.ctx.component_builddir(
1578 'update-syscalls', glibc.name, 'glibc')
1579 self.linuxdir = glibc.ctx.component_builddir(
1580 'update-syscalls', glibc.name, 'linux')
1582 glibc, self.linuxdir)