Commit 89d8792b authored by Thomas Gleixner's avatar Thomas Gleixner

Merge branch 'rt/misc' into rt/base

parents 61b771fc a0da5218
...@@ -98,8 +98,9 @@ as-option = $(call try-run,\ ...@@ -98,8 +98,9 @@ as-option = $(call try-run,\
# as-instr # as-instr
# Usage: cflags-y += $(call as-instr,instr,option1,option2) # Usage: cflags-y += $(call as-instr,instr,option1,option2)
as-instr = $(call try-run,\ as-instr = $(call try-run, \
echo -e "$(1)" | $(CC) $(KBUILD_AFLAGS) -c -xassembler -o "$$TMP" -,$(2),$(3)) echo -e "$(1)" > "$$TMP"; \
$(CC) $(KBUILD_AFLAGS) -c -xassembler -o /dev/null "$$TMP",$(2),$(3))
# cc-option # cc-option
# Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586) # Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment