-
-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dependencies problem #61
Comments
Indeed, looks like the server on that domain no longer responds. I will make a copy of that repo in the following days 👍 |
As far as I understand, it's possible to use different math32 pkg: It used within https://github.com/TotallyGamerJet/pgl/blob/main/portablegl.go import ( |
Good idea! Will use it instead. In the meantime, you can add
|
go install ***@***.***
go.mod:
...
replace maze.io/x/math32 => github.com/chewxy/math32 *v1.10.1*
....
go build
runtime/cmath/math.go:5:2: missing go.sum entry for module providing
package maze.io/x/math32 (imported by github.com/gotranspile/cxgo/runtime/cm
ath); to add:
go get github.com/gotranspile/cxgo/runtime/cmath
Looks replace in mod isn't enough 😞
go mod tidy - didn't help
cleanup of cache and reinstall - the same result
i am not familiar with modules management in Go
Any ideas?
…On Wed, Apr 5, 2023 at 11:49 AM Denys Smirnov ***@***.***> wrote:
Good idea! Will use it instead.
In the meantime, you can add replace to go.mod to fix build:
replace maze.io/x/math32 => github.com/chewxy/math32
—
Reply to this email directly, view it on GitHub
<#61 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACFRU6P5NH72GITNGNAJ7YLW7UW3NANCNFSM6AAAAAAWSJUQCE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Yeah, looks like this won't work. I would hope for I'll try to fix it sooner then. |
I think cxgo itself doesn't use math32 (only runtime)
what is the reason for failure during build?
…On Wed, Apr 5, 2023 at 1:53 PM Denys Smirnov ***@***.***> wrote:
Yeah, looks like this won't work. I would hope for go mod tidy to fix it,
but looks like it still needs some info about base repo.
I'll try to fix it sooner then.
—
Reply to this email directly, view it on GitHub
<#61 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACFRU6KCY3LC3LVTBHQ6JUTW7VFKJANCNFSM6AAAAAAWSJUQCE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
It still uses it to type check generated code. Basically it takes signatures from it to generate (virtual) C headers. But yeah, in this case it could be avoided,since signatures are well-known. |
Is it a good first issue?
…On Wed, Apr 5, 2023 at 6:59 PM Denys Smirnov ***@***.***> wrote:
It still uses it to type check generated code. Basically it takes
signatures from it to generate (virtual) C headers. But yeah, in this case
it could be avoided,since signatures are well-known.
—
Reply to this email directly, view it on GitHub
<#61 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACFRU6MLXXE7HDBEC4DMBYLW7WJEPANCNFSM6AAAAAAWSJUQCE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Definitely! |
how to proceed?
…On Wed, Apr 5, 2023 at 11:55 PM Denys Smirnov ***@***.***> wrote:
Definitely!
—
Reply to this email directly, view it on GitHub
<#61 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACFRU6NFCNYZU7JNT6THJ53W7XL3VANCNFSM6AAAAAAWSJUQCE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Fixed. Should work now. |
maze.io/x/math32 - looks broken
Downloading failed with timeout
It isn't the problem of cxgo per se ,
just FYI
Thanks
The text was updated successfully, but these errors were encountered: