h "64$" cpu) 8) ((string-match "64_?[lbe][lbe]$" cpu) 8) ((member cpu '("sparc" "powerpc" "mips" "mipsel" "nios2" "m68k" "sh3" "sh4")) 4) ((member cpu '("s390x" "alpha")) 8) ((string-match "^arm.*" cpu) 4) (else (error "unknown CPU word size" cpu))))) (define (triplet-cpu t) (substring t 0 (string-index t #\-))) (define (triplet-vendor t) (let ((start (1+ (string-index t #\-)))) (substring t start (string-index t #\- start)))) (define (triplet-os t) (let ((start (1+ (string-index t #\- (1+ (string-index t #\-)))))) (substring t start)))