Home | History | Annotate | Download | only in runtime

Lines Matching full:srcname

370 	srcname := d.name + ".c"
371 d.buildSrc(t, filepath.Join(dir, srcname))
373 args := d.buildArgs(outname, srcname)
598 srcname := "mydll.c"
599 err = ioutil.WriteFile(filepath.Join(tmpdir, srcname), []byte(src), 0)
604 cmd := exec.Command("gcc", "-shared", "-s", "-Werror", "-o", outname, srcname)
663 srcname := "mydll.c"
664 err = ioutil.WriteFile(filepath.Join(tmpdir, srcname), []byte(src), 0)
669 cmd := exec.Command("gcc", "-shared", "-s", "-Werror", "-o", outname, srcname)
883 srcname := "nojack.c"
884 err = ioutil.WriteFile(filepath.Join(tmpdir, srcname), []byte(src), 0)
889 cmd := exec.Command("gcc", "-shared", "-s", "-Werror", "-o", name, srcname)