Removed unnecesary code

This commit is contained in:
vanten-s 2024-03-26 20:45:04 +01:00
parent a9b01d3b6a
commit 55bf8d423e
Signed by: vanten-s
GPG key ID: DE3060396884D3F2
3 changed files with 1 additions and 7 deletions

View file

@ -4,7 +4,6 @@ all: build
build:
rm -rf build
rm -rf kernel/target
mkdir build
i686-elf-as -o build/boot.o boot.s
cd kernel; cargo build

View file

@ -4,6 +4,3 @@ target = "i686-unknown-bare.json"
[unstable]
build-std-features = ["compiler-builtins-mem"]
build-std = ["core", "compiler_builtins"]
[target."i686-unknown-bare"]
linker = "i686-elf-gcc"

View file

@ -1,8 +1,6 @@
{ pkgs ? import <nixpkgs> {} }:
let
crossPkgs = pkgs.pkgsCross.aarch64-multiplatform;
in pkgs.mkShell rec {
pkgs.mkShell rec {
buildInputs = with pkgs; [
clang
llvmPackages_17.bintools