blt-link (387B)
1 #!/bin/sh 2 3 # $Id: //depot/blt/util/link#1 $ 4 # 5 # Copyright 1998 Sidney Cammeresi 6 # All rights reserved. 7 # 8 # You may use this file in accordance with the license of this distribution. 9 # 10 # Script to generate dynamically linked executables 11 12 gcc -nostdlib -nostartfiles $BLTSRCDIR/lib/crt0.o -L$BLTHOME/lib/obj -e _start -Wl,-dynamic-linker,/system/lib/rtld,-T,$BLTSRCDIR/util/blt_i386.x $@ 13