Remix.run Logo
tekacs 4 hours ago

You can do this from the CLI - `codex remote-control` works on Linux (I have no affiliation, just something I noticed).

They might just not have cut a new build yet, today. It 'works' on master, but the mobile app thinks that your build is outdated (v0.0.0) if you build from master without overriding version, so probably easiest to wait until they cut a build if they haven't.

embedding-shape 3 hours ago | parent | next [-]

> You can do this from the CLI - `codex remote-control` works on Linux (I have no affiliation, just something I noticed).

Woah, hadn't seen this before!

Off-topic, how long compile times do people have for codex-rs in openai/codex? Even my very beefy computer takes like 30 minutes to compile in release mode, makes me wonder why it's so slow and how this TUI got so large. But then I remember, agents like to write a lot of code, compilers get slower when they have to compile a lot of code :)

tekacs 2 hours ago | parent [-]

Try turning off LTO. Their default codex-rs/Cargo.toml uses `lto = "fat"`, which is... expensive and slow and... you really really don't need it for a local build that you're not distributing.

In my experience, although the build is a little slow, it's that LTO step that takes a million years.

vohk 3 hours ago | parent | prev | next [-]

Oh, that's promising, thanks! I've just been using the npm version.

asadm 4 hours ago | parent | prev [-]

thanks. i dont use the app and so this is cool