Home
last modified time | relevance | path

Searched refs:scriptPath (Results 1 – 2 of 2) sorted by relevance

/build/soong/cmd/extract_linker/
Dmain.go34 var scriptPath string
37 flag.StringVar(&scriptPath, "T", "", "Path to save the linker script")
130 if scriptPath != "" {
131 if err := ioutil.WriteFile(scriptPath, script.Bytes(), 0777); err != nil {
132 log.Fatalf("Unable to write %q: %v", scriptPath, err)
/build/soong/cmd/sbox/
Dsbox.go218 func createCommandScript(rawCommand, scriptPath, scriptPathInSandbox string) (*exec.Cmd, error) { argument
219 err := os.WriteFile(scriptPath, []byte(rawCommand), 0644)
222 rawCommand[0:40], scriptPath)
340 scriptPath := joinPath(tempDir, scriptName)
342 cmd, err := createCommandScript(rawCommand, scriptPath, scriptPathInSandbox)
388 tempDir, scriptPath)