mxcl
mxcl
DDeno
Created by mxcl on 1/30/2024 in #help
how to avoid deprecation warnings in compiled binaries
for now we will pin to 1.39
10 replies
DDeno
Created by mxcl on 1/30/2024 in #help
how to avoid deprecation warnings in compiled binaries
Additionally we absolutely there is no way we can see to not use some of the deprecated APIs, eg. the unstable API for flock which we use has not been updated, it still requires a rid
10 replies
DDeno
Created by mxcl on 1/30/2024 in #help
how to avoid deprecation warnings in compiled binaries
basically you are saying using deno means we cannot avoid announcing to the user about deprecated APIs in a compiled binary
10 replies
DDeno
Created by mxcl on 1/30/2024 in #help
how to avoid deprecation warnings in compiled binaries
I cannot remove all the deprecated API usages. I need to use the dnt tool to publish to npm which does not yet support all the deprecated APIs
10 replies
DDeno
Created by mxcl on 1/30/2024 in #help
how to avoid deprecation warnings in compiled binaries
Note, that I have fixed the deprecation warnings and intend to release a point release. I am just trying to ensure that in the future I don’t deliver my users a bunch of warnings they don't care about
10 replies
DDeno
Created by mxcl on 6/29/2023 in #help
getting errno with ffi
thanks for the help here both. This use of ffi is now live!
15 replies
DDeno
Created by mxcl on 6/29/2023 in #help
getting errno with ffi
thanks both!
Deno.dlopen("",
{
errno: {
type: "int32"
}
});
Deno.dlopen("",
{
errno: {
type: "int32"
}
});
works (darwin/vanilla linux)
15 replies