Changes between Version 10 and Version 11 of Archi-1-TD9
- Timestamp:
- May 11, 2022, 1:14:38 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Archi-1-TD9
v10 v11 378 378 379 379 CFLAGS = -c # stop after compilation, then produce .o 380 CFLAGS += -Wall -Werror # almostall C warnings that becoming errors380 CFLAGS += -Wall -Werror # near all C warnings that becoming errors 381 381 CFLAGS += -mips32r2 # define of MIPS version 382 382 CFLAGS += -std=c99 # define of syntax version of C … … 386 386 CFLAGS += -G0 # do not use global data pointer ($28) 387 387 CFLAGS += -O3 # full optimisation mode of compiler 388 CFLAGS += -I. # dir. where include files like<file.h> are388 CFLAGS += -I. # dir. where include <file.h> are 389 389 CFLAGS += -DNTTYS=$(NTTY) # number of ttys in the prototype 390 390