summaryrefslogtreecommitdiffstats
path: root/src/Make.config
diff options
context:
space:
mode:
authorMikael Asplund <mikael.asplund@liu.se>2020-03-06 15:24:04 +0100
committerMikael Asplund <mikael.asplund@liu.se>2020-03-06 15:24:04 +0100
commit2aee8e8d4bb740dccf3f3c33f7ef161f9e1a835d (patch)
treee7fded7bbf1131d10525f5ec44bf2e44b3d4cfb7 /src/Make.config
parentf3156831364fb2d3bec8c2f7ba7e8c10e91be13e (diff)
downloadpintos-2aee8e8d4bb740dccf3f3c33f7ef161f9e1a835d.tar.gz
Changed compiler version and took away stream code which relies on a header file no longer present in Linux
Diffstat (limited to 'src/Make.config')
-rw-r--r--src/Make.config4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Make.config b/src/Make.config
index 1301180..f5c6705 100644
--- a/src/Make.config
+++ b/src/Make.config
@@ -11,12 +11,12 @@ VPATH = $(SRCDIR)
X86 = i.86\|pentium.*\|[pk][56]\|nexgen\|viac3\|6x86\|athlon.*\|i86pc
X86_64 = x86_64
ifneq (0, $(shell expr `uname -m` : '$(X86)'))
- CC = gcc-4.8
+ CC = gcc
LD = ld
OBJCOPY = objcopy
else
ifneq (0, $(shell expr `uname -m` : '$(X86_64)'))
- CC = gcc-4.8 -m32
+ CC = gcc -m32
LD = ld -melf_i386
OBJCOPY = objcopy
else