Lines Matching refs:glibc

1258     def __init__(self, glibc, headers_dir):  argument
1259 self.arch = glibc.compiler.arch
1260 self.srcdir = glibc.compiler.ctx.component_srcdir('linux')
1261 self.builddir = glibc.ctx.component_builddir(
1262 'update-syscalls', glibc.name, 'build-linux')
1509 def __init__(self, glibc): argument
1510 self.srcdir = glibc.ctx.component_srcdir('glibc')
1511 self.use_usr = glibc.os != 'gnu'
1516 '--build=%s' % glibc.ctx.build_triplet,
1517 '--host=%s' % glibc.triplet,
1518 'CC=%s' % glibc.tool_name('gcc'),
1519 'CXX=%s' % glibc.tool_name('g++'),
1520 'AR=%s' % glibc.tool_name('ar'),
1521 'AS=%s' % glibc.tool_name('as'),
1522 'LD=%s' % glibc.tool_name('ld'),
1523 'NM=%s' % glibc.tool_name('nm'),
1524 'OBJCOPY=%s' % glibc.tool_name('objcopy'),
1525 'OBJDUMP=%s' % glibc.tool_name('objdump'),
1526 'RANLIB=%s' % glibc.tool_name('ranlib'),
1527 'READELF=%s' % glibc.tool_name('readelf'),
1528 'STRIP=%s' % glibc.tool_name('strip'),
1530 if glibc.os == 'gnu':
1531 self.configure_args.append('MIG=%s' % glibc.tool_name('mig'))
1532 if glibc.cflags:
1533 self.configure_args.append('CFLAGS=%s' % glibc.cflags)
1534 self.configure_args.append('CXXFLAGS=%s' % glibc.cflags)
1535 self.configure_args += glibc.cfg
1550 def __init__(self, glibc): argument
1551 super().__init__(glibc)
1552 self.builddir = glibc.ctx.component_builddir(
1553 'compilers', glibc.compiler.name, 'glibc', glibc.name)
1554 self.installdir = glibc.compiler.sysroot
1559 def __init__(self, glibc): argument
1560 super().__init__(glibc)
1561 self.builddir = glibc.ctx.component_builddir(
1562 'glibcs', glibc.name, 'glibc')
1563 self.installdir = glibc.ctx.glibc_installdir(glibc.name)
1564 if glibc.ctx.strip:
1565 self.strip = glibc.tool_name('strip')
1568 self.save_logs = glibc.ctx.save_logs
1585 def __init__(self, glibc): argument
1586 super().__init__(glibc)
1587 self.builddir = glibc.ctx.component_builddir(
1588 'update-syscalls', glibc.name, 'glibc')
1589 self.linuxdir = glibc.ctx.component_builddir(
1590 'update-syscalls', glibc.name, 'linux')
1592 glibc, self.linuxdir)