XDream8
XDream8
yep that indeed fixes this. i dont get any error
that would be good
tried this for macroquad: build.rs: ```rust fn main() { let target = std::env::var("TARGET").unwrap(); if target.contains("musl") { println!("cargo:rustc-link-lib=dylib=m"); println!("cargo:rustc-link-lib=dylib=c"); println!("cargo:rustc-cfg=feature=\"crt-static\""); println!("cargo:rustc-env=RUSTFLAGS=-crt-static"); } } ``` in a test project: ```toml macroquad =...
if you want i can create a pr for removing libc dependency for linux and android but it should probably be tested for android first as android uses the same...
Sorry for the late response, i was very busy this week. revanced-cli does not support termux yet but i think this can be solved with a custom aapt2 build. I...
Can you try it again? I added support for termux and successfully builded revanced on my phone
i created a [issue about this](https://codeberg.org/dnkl/foot/issues/1435). i will wait his reply.
> As in "being supported by this app" ? > > Or do you mean adding the same kind of functionality built into Blade I mean adding the same kind...
I have little experience with docker but will see what I can do.
I will update revanced-creator soon wait for it. changed things: - replaced environment variables with flags - code cleanups/improvements