Posted to tcl by de at Wed May 16 00:42:29 GMT 2018view raw

  1. #!/bin/bash
  2.  
  3. rm -f time.o time.so
  4. gcc -DUSE_TCL_STUBS=1 -fPIC -o time.o -c time.c
  5. gcc -shared -o time.so time.o -ltclstub8.6 -lrt
  6.