this may or may not work for you. i know you could do this (can't believe i'm saying this) in AmigaOS. and i'm pretty sure i've seen something like this in some configure scripts for *nix systems. a simple library file (created with ar) is little more tha
Why not... (Score:1)
try cat (Score:1)
if the ar is doing something simple like just joining a bunch of .o files into a .a file (or another .o file) you can try replaceing it with
cat.
$ ar -f foo.a foo_math.o foo_string.o foo_yadda.o$ cat foo_math.o foo_string.o foo_yadda.o >foo.athis may or may not work for you. i know you could do this (can't believe i'm saying this) in AmigaOS. and i'm pretty sure i've seen something like this in some configure scripts for *nix systems. a simple library file (created with ar) is little more tha