| 23 Dec 2022 |
aktaboot | any Idea how to set lld as rust linker ? | 17:51:43 |
shanesveller | Here's how I do it for mold instead:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER =
lib.optional pkgs.stdenv.isLinux "${pkgs.clang}/bin/clang";
LD_LIBRARY_PATH = lib.optional pkgs.stdenv.isLinux (lib.makeLibraryPath
(with pkgs; [ ... ]));
RUSTFLAGS = lib.optional pkgs.stdenv.isLinux
"-C link-arg=-fuse-ld=${pkgs.mold}/bin/mold";
| 18:05:49 |
shanesveller | for my devShell only, I let derivations build "normally" | 18:06:09 |
aktaboot | thank | 18:13:48 |
| snick joined the room. | 19:13:43 |
| snick set a profile picture. | 19:22:16 |
| snick changed their profile picture. | 19:40:42 |
| 24 Dec 2022 |
aktaboot | Anyone used bevy engine successfully ? | 13:48:53 |
aktaboot | for some reason it is not finding my GPU | 14:25:42 |
aktaboot | thread 'main' panicked at 'Unable to find a GPU! Make sure you have installed required drivers! For extra information, see: https://github.com/bevyengine/bevy/blob/latest/docs/linux_dependencies.md'
| 14:26:35 |
shanesveller | I do, that's actually what I pulled my example above | 16:09:13 |
shanesveller | It worked on nvidia GPU / X11 and AMD GPU / X11 for me | 16:09:41 |
shanesveller | * I do, that's actually what I pulled my example above from | 16:09:53 |
Charles ⚡️ | In reply to @aktaboot:tchncs.de Anyone used bevy engine successfully ? https://or.computer.surgery/charles/maxels | 16:46:48 |
aktaboot | Thanks <3 | 16:49:24 |