mv x/<tool> => xtool/<tool>

This commit is contained in:
xushiwei
2024-05-11 05:27:38 +08:00
parent 67896c63a7
commit cd266213ce
25 changed files with 13 additions and 13 deletions

View File

@@ -22,7 +22,7 @@ import (
"log"
"os"
"github.com/goplus/llgo/x/ar"
"github.com/goplus/llgo/xtool/ar"
)
func main() {

View File

@@ -22,7 +22,7 @@ import (
"fmt"
"os"
"github.com/goplus/llgo/x/clang/parser"
"github.com/goplus/llgo/xtool/clang/parser"
)
var (

View File

@@ -20,7 +20,7 @@ import (
"fmt"
"os"
"github.com/goplus/llgo/x/clang/preprocessor"
"github.com/goplus/llgo/xtool/clang/preprocessor"
)
func usage() {

View File

@@ -21,7 +21,7 @@ import (
"log"
"os"
"github.com/goplus/llgo/x/env/llvm"
"github.com/goplus/llgo/xtool/env/llvm"
)
func main() {

View File

@@ -20,8 +20,8 @@ import (
"fmt"
"os"
"github.com/goplus/llgo/x/env/llvm"
"github.com/goplus/llgo/x/nm"
"github.com/goplus/llgo/xtool/env/llvm"
"github.com/goplus/llgo/xtool/nm"
)
func main() {

View File

@@ -29,7 +29,7 @@ import (
"time"
wasm "github.com/aykevl/go-wasm"
"github.com/goplus/llgo/x/ar"
"github.com/goplus/llgo/xtool/ar"
)
// Create creates an arcive for static linking from a list of object files

View File

@@ -33,7 +33,7 @@ import (
"golang.org/x/tools/go/ssa"
"github.com/goplus/llgo/cl"
"github.com/goplus/llgo/x/clang"
"github.com/goplus/llgo/xtool/clang"
llssa "github.com/goplus/llgo/ssa"
)

View File

@@ -22,7 +22,7 @@ import (
"os/exec"
"strings"
"github.com/goplus/llgo/x/clang/ast"
"github.com/goplus/llgo/xtool/clang/ast"
jsoniter "github.com/json-iterator/go"
)

View File

@@ -22,7 +22,7 @@ import (
"os/exec"
"path/filepath"
"github.com/goplus/llgo/x/clang/pathutil"
"github.com/goplus/llgo/xtool/clang/pathutil"
)
const (

View File

@@ -26,9 +26,9 @@ import (
"strconv"
"github.com/goplus/gogen"
"github.com/goplus/llgo/x/clang/types/scanner"
"github.com/goplus/llgo/xtool/clang/types/scanner"
ctypes "github.com/goplus/llgo/x/clang/types"
ctypes "github.com/goplus/llgo/xtool/clang/types"
)
const (

View File

@@ -19,7 +19,7 @@ package llvm
import (
"os"
"github.com/goplus/llgo/x/nm"
"github.com/goplus/llgo/xtool/nm"
)
type Env struct {