Nuitka has a --help option to output what it can do: nuitka --help The nuitka-run command is the same as nuitka, but with a different default. It tries to compile and directly execute a Python script: nuitka-ru
{!"rustc version 1.84.0-nightly (b91a3a056 2024-11-07)"} It seems like it should not, given that this code does not compile: source_filename ="example.925e6eb0586113f0-cgu.0"targetdatalayout="e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64...
-- Detecting CXX compile features - done -- Configuring done (3.0s) -- Generating done (0.0s) -- Build files have been written to: /data/data/com.termux/files/usr/tmp/pip-install-x3ce8sue/patchelf_f2f8665d565643a69cc0ab3767d8e86b/_cmake_test_compile/build -- --- --- --- --...
I meant to say that I copied the kernel config file from 6.5.13-pve as a starting point. The kernel config file states what functionality, features to compile, which to compile in and which as modules etc, like so: Code: cp /boot/config-6.5.13-5-pve .config Then, based...
Nuitka has a --help option to output what it can do: nuitka --help The nuitka-run command is the same as nuitka, but with a different default. It tries to compile and directly execute a Python script: nuitka-run --help This option that is different is --run, and passing on argument...
I tried this code: let my_var: Arc<str> = Default::default(); assert_eq!(my_var, Arc::from("")); I expected to see this happen: Compiles and Runs successfully. Instead, this happened: error[E0277]: the trait bound `str: Default` is not s...
2.0.1 Rust compiler for the host machine: rustc -C linker=cc (rustc 1.62.1) Rust linker for the host machine: rustc -C linker=cc ld.bfd 2.38 Host machine cpu family: x86_64 Host machine cpu: x86_64 Found pkg-config: /usr/bin/pkg-config (1.8.0) Run-time dependency openssl foun...
The fact is, rust currently requires (and has always required) all three of these components, and the components are installed by default when installing the VC++ build tools. If you remove those components it can't work. I can add a note the installation instructions saying to use the def...
FWIW I run into this a lot, and just have to work around it by copying everything over to a temporary local directory. It would be great if a solution could be found, it's only Rust code I have to do this for. Sign up for free to join this conversation on GitHub. Already have ...
Nuitka has a --help option to output what it can do: nuitka --help The nuitka-run command is the same as nuitka, but with a different default. It tries to compile and directly execute a Python script: nuitka-run --help This option that is different is --run, and passing on argument...