Select Git revision
prj_qemu_x86.conf
-
Paul Sokolovsky authored
To enable options which may be incompatible with other boards, etc.
Paul Sokolovsky authoredTo enable options which may be incompatible with other boards, etc.
shell.nix 401 B
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
with import ./default.nix;
stdenv.mkDerivation {
name = "env";
buildInputs = [
gdb
glibc_multi
rust
pkgsCross.arm-embedded.stdenv.cc
openocd
];
# Set Environment Variables
RUST_BACKTRACE = 1;
shellHook = ''
export LIBCLANG_PATH=${llvmPackages.libclang}/lib
echo "Run 'cd example && cargo build --release'"
'';
}