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" "log"
"os" "os"
"github.com/goplus/llgo/x/ar" "github.com/goplus/llgo/xtool/ar"
) )
func main() { func main() {

View File

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

View File

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

View File

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

View File

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

View File

@@ -29,7 +29,7 @@ import (
"time" "time"
wasm "github.com/aykevl/go-wasm" 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 // 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" "golang.org/x/tools/go/ssa"
"github.com/goplus/llgo/cl" "github.com/goplus/llgo/cl"
"github.com/goplus/llgo/x/clang" "github.com/goplus/llgo/xtool/clang"
llssa "github.com/goplus/llgo/ssa" llssa "github.com/goplus/llgo/ssa"
) )

View File

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

View File

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

View File

@@ -26,9 +26,9 @@ import (
"strconv" "strconv"
"github.com/goplus/gogen" "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 ( const (

View File

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