# This file is part of the open-lmake distribution (git@github.com:cesar-douady/open-lmake.git)
# Copyright (c) 2023-2026 Doliam
# This program is free software: you can redistribute/modify under the terms of the GPL-v3 (https://www.gnu.org/licenses/gpl-3.0.html).
# This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
import os.path as osp
dn = osp.dirname
import lmake
root = dn(dn(dn(lmake.__file__)))
def image_root (os) : return f'{dn(root)}/dockers/{os}'
def lmake_install_root(os) : return f'{dn(root)}/open-lmake-{os}'
if __name__!='__main__' :
from lmake.rules import Rule
lmake.manifest = ('Lmakefile.py','../')
class Dut(Rule) :
targets = { 'TGT':r'dut-{Autodep:\w+}-{Os:\w+}' }
chroot_dir = '{image_root(Os)}'
lmake_root = '{lmake_install_root(Os)}'
autodep = '{Autodep}'
cmd = 'echo dut >{TGT}'
else :
os_candidates = (
'centos7'
, 'debian12'
, 'rocky8' , 'rocky9'
, 'suse154' , 'suse155' , 'suse156'
, 'ubuntu20' , 'ubuntu22' , 'ubuntu24'
)
os_known = [ os for os in os_candidates if osp.isdir(image_root(os)) and osp.isdir(lmake_install_root(os)) ]
n_known = len(os_known)
if not n_known :
print('no foreign os available',file=open('skipped','w'))
exit()
import ut
ut.lmake( *(f'dut-ld_preload-{os}' for os in os_known) , done=n_known )
ut.lmake( *(f'dut-ptrace-{os}' for os in os_known) , done=n_known )
if 'ld_audit' in lmake.autodeps :
os_no_ld_audit = {
'centos7'
, 'suse154' , 'suse155'
, 'ubuntu20'
}
n_no_ld_audit = sum(1 for os in os_known if os in os_no_ld_audit)
ut.lmake( *(f'dut-ld_audit-{os}' for os in os_known) , done=n_known-n_no_ld_audit , failed=n_no_ld_audit , rc=bool(n_no_ld_audit) )