trying x86_64 support

This commit is contained in:
Marco Cetica
2021-02-03 18:05:18 +01:00
parent b20064b869
commit 634393b141
10 changed files with 192 additions and 19 deletions

View File

@@ -1,7 +1,7 @@
OBJS = shell.o fetch.o
VER := $(shell git rev-parse --short HEAD)
CC = i686-elf-gcc # cross-compiler
CC = x86_64-elf-gcc # cross-compiler
CFLAGS = -DDEFAULT_USER=root -DDEFAULT_HOSTNAME=vulcan -DVULCAN_VERSION=$(VER) -m32 -fno-stack-protector -ffreestanding -Wall -Wextra -Werror -g -c
all:${OBJS}