milahu
milahu
see also #174
> How much RAM does it use currently? at least 1.3 GB in `ksysguard` it looked more like 3 GB with 8 GB of RAM and no swap, i ran...
> on raspberry pi: I can't even compile the system ... as it runs out of memory cross compile
were getting offtopic, this is nix-index, not [nix](https://github.com/NixOS/nix) > burning GB of RAM just to evaluate nixpkgs please verify. i guess that building needs more ram nix-index needs much ram,...
i guess this is mostly a nix problem (multi prefix filesystem) if c2rust could expose these env-vars this would make the nix side like 1% simpler (less patching) in nix...
fwiw, my [c2rust.nix](https://github.com/milahu/nur-packages/blob/master/pkgs/c2rust/c2rust.nix) draft from 2 months ago i had to set some envs so the builder would find clang and llvm i used tinycbor from nix as shown in...
now using ```cmake # find tinycbor with pkgconfig include(FindPkgConfig) pkg_search_module(tinycbor_build REQUIRED tinycbor-0.5.3 tinycbor>=0.5.3) include_directories(${tinycbor_build_INCLUDE_DIRS}) add_library(tinycbor STATIC IMPORTED) set_target_properties(tinycbor PROPERTIES IMPORTED_LOCATION ${tinycbor_build_LINK_LIBRARIES}) add_dependencies(tinycbor tinycbor_build) ``` ```cmake # debug message("tinycbor_build_INCLUDE_DIRS = ${tinycbor_build_INCLUDE_DIRS}")...
hitting this in my tests, where i must normalize the home path with nix 2.11.0 ``` HOME=/tmp nix-instantiate --parse --expr '~/asdf' warning: $HOME ('/tmp') is not owned by you, falling...
```sh #! /usr/bin/env bash # mkp224o-benchmark.sh - a benchmarking wrapper for mkp224o # print live stats in a pretty format # loop different binaries and extra_options # to find the...
> For GNU, there is at least a workaround: `-S` weird ... > But `uutils` env does not support this yet. #1326 > both uutils and GNU have the same...