env: find llgo root for development

This commit is contained in:
Li Jie
2025-01-18 12:33:54 +08:00
parent 521b70c715
commit cabc7ffca8
5 changed files with 48 additions and 9 deletions

View File

@@ -2,9 +2,11 @@ package env
import (
"bytes"
"fmt"
"os"
"os/exec"
"path/filepath"
"runtime"
"strings"
)
@@ -12,6 +14,7 @@ const (
LLGoCompilerPkg = "github.com/goplus/llgo"
LLGoRuntimePkgName = "runtime"
LLGoRuntimePkg = LLGoCompilerPkg + "/" + LLGoRuntimePkgName
envFileName = "/compiler/internal/env/env.go"
)
func GOROOT() string {
@@ -53,13 +56,22 @@ func LLGoROOT() string {
}
// Check if parent directory is bin
dir := filepath.Dir(exe)
if filepath.Base(dir) != "bin" {
return ""
if filepath.Base(dir) == "bin" {
// Get parent directory of bin
root := filepath.Dir(dir)
if root, ok := isLLGoRoot(root); ok {
return root
}
}
// Get parent directory of bin
root := filepath.Dir(dir)
if root, ok := isLLGoRoot(root); ok {
return root
if Devel() {
root, err := getRuntimePkgDirByCaller()
if err != nil {
return ""
}
if root, ok := isLLGoRoot(root); ok {
fmt.Fprintln(os.Stderr, "WARNING: Using LLGO root for devel: "+root)
return root
}
}
return ""
}
@@ -83,3 +95,22 @@ func isLLGoRoot(root string) (string, bool) {
}
return root, true
}
func getRuntimePkgDirByCaller() (string, error) {
_, file, _, ok := runtime.Caller(0)
if !ok {
return "", fmt.Errorf("cannot get caller")
}
if !strings.HasSuffix(file, envFileName) {
return "", fmt.Errorf("wrong caller")
}
// check file exists
if _, err := os.Stat(file); os.IsNotExist(err) {
return "", fmt.Errorf("file %s not exists", file)
}
modPath := strings.TrimSuffix(file, envFileName)
if st, err := os.Stat(modPath); os.IsNotExist(err) || !st.IsDir() {
return "", fmt.Errorf("not llgo compiler root: %s", modPath)
}
return modPath, nil
}