Check for the compiler's availability early in the `make' run, in
[pintos-anon] / src / Make.config
index 8744f0da4a764c4022f72669668a498f271c6bea..910ef121099486fc8dc0377a4f70523f6f128343 100644 (file)
@@ -18,10 +18,14 @@ LD = i386-elf-ld
 OBJCOPY = i386-elf-objcopy
 endif
 
+ifeq ($(strip $(shell command -v $(CC) 2> /dev/null)),)
+$(warning *** Compiler ($(CC)) not found.  Did you set $$PATH properly?  Please refer to the Getting Started section in the documentation for details. ***)
+endif
+
 # Compiler and assembler invocation.
 DEFINES =
 WARNINGS = -Wall -W -Wstrict-prototypes -Wmissing-prototypes -Wsystem-headers
-CFLAGS = -g -MMD -msoft-float -masm=intel
+CFLAGS = -g -MMD -msoft-float
 CPPFLAGS = -nostdinc -I$(SRCDIR) -I- -I$(SRCDIR)/lib
 ASFLAGS = -Wa,--gstabs -MMD
 LDFLAGS =