Skip to content

Commit 808a4d1

Browse files
committed
change goplus/llgo/c to goplus/lib/c
1 parent 15d5bce commit 808a4d1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+171
-102
lines changed

.github/workflows/verification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-24.04
2020
strategy:
2121
matrix:
22-
llgo: [v0.10.1]
22+
llgo: [v0.11.0]
2323
llcppg: [v0.2.1]
2424
steps:
2525
- name: Checkout

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
*.pc
1+
*.pc
2+
*.work
3+
.DS_Store

bzip2/_demo/compress/compress.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"unsafe"
66

7-
"github.com/goplus/llgo/c"
7+
"github.com/goplus/lib/c"
88
"github.com/goplus/llpkg/bzip2"
99
)
1010

bzip2/_demo/decompress/decompress.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"unsafe"
88

9-
"github.com/goplus/llgo/c"
9+
"github.com/goplus/lib/c"
1010
"github.com/goplus/llpkg/bzip2"
1111
)
1212

bzip2/bzlib.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
package bzip2
22

33
import (
4-
"github.com/goplus/llgo/c"
54
"unsafe"
5+
6+
"github.com/goplus/lib/c"
67
)
78

89
const RUN = 0

bzip2/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ module github.com/goplus/llpkg/bzip2
22

33
go 1.20
44

5-
require github.com/goplus/llgo v0.10.0
5+
require github.com/goplus/lib v0.2.0

bzip2/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github.com/goplus/llgo v0.10.0 h1:s3U3cnO3cploF1xCCJleAb16NQFAmHxdUmdrNhRH3hY=
2-
github.com/goplus/llgo v0.10.0/go.mod h1:YfOHsT/g3lc9b4GclLj812YzdSsJr0kd3CCB830TqHE=
1+
github.com/goplus/lib v0.2.0 h1:AjqkN1XK5H23wZMMlpaUYAMCDAdSBQ2NMFrLtSh7W4g=
2+
github.com/goplus/lib v0.2.0/go.mod h1:SgJv3oPqLLHCu0gcL46ejOP3x7/2ry2Jtxu7ta32kp0=

bzip3/_demo/test/test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/goplus/llgo/c"
6+
"github.com/goplus/lib/c"
77
zip "github.com/goplus/llpkg/bzip3"
88
)
99

bzip3/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ module github.com/goplus/llpkg/bzip3
22

33
go 1.20
44

5-
require github.com/goplus/llgo v0.10.0
5+
require github.com/goplus/lib v0.2.0

bzip3/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github.com/goplus/llgo v0.10.0 h1:s3U3cnO3cploF1xCCJleAb16NQFAmHxdUmdrNhRH3hY=
2-
github.com/goplus/llgo v0.10.0/go.mod h1:YfOHsT/g3lc9b4GclLj812YzdSsJr0kd3CCB830TqHE=
1+
github.com/goplus/lib v0.2.0 h1:AjqkN1XK5H23wZMMlpaUYAMCDAdSBQ2NMFrLtSh7W4g=
2+
github.com/goplus/lib v0.2.0/go.mod h1:SgJv3oPqLLHCu0gcL46ejOP3x7/2ry2Jtxu7ta32kp0=

0 commit comments

Comments
 (0)