Kbuild.include (a0f97e06a43cf524e616f09e6af3398e1e9c1c5b) | Kbuild.include (222d394d30e74bb7a2a65029fcea68107b0d0eb6) |
---|---|
1#### 2# kbuild: Generic definitions 3 4# Convenient variables 5comma := , 6squote := ' 7empty := 8space := $(empty) $(empty) --- 67 unchanged lines hidden (view full) --- 76 77as-option = $(call try-run,\ 78 $(CC) $(KBUILD_CFLAGS) $(1) -c -xassembler /dev/null -o "$$TMP",$(1),$(2)) 79 80# as-instr 81# Usage: cflags-y += $(call as-instr,instr,option1,option2) 82 83as-instr = $(call try-run,\ | 1#### 2# kbuild: Generic definitions 3 4# Convenient variables 5comma := , 6squote := ' 7empty := 8space := $(empty) $(empty) --- 67 unchanged lines hidden (view full) --- 76 77as-option = $(call try-run,\ 78 $(CC) $(KBUILD_CFLAGS) $(1) -c -xassembler /dev/null -o "$$TMP",$(1),$(2)) 79 80# as-instr 81# Usage: cflags-y += $(call as-instr,instr,option1,option2) 82 83as-instr = $(call try-run,\ |
84 echo -e "$(1)" | $(CC) $(AFLAGS) -c -xassembler -o "$$TMP" -,$(2),$(3)) | 84 echo -e "$(1)" | $(CC) $(KBUILD_AFLAGS) -c -xassembler -o "$$TMP" -,$(2),$(3)) |
85 86# cc-option 87# Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586) 88 89cc-option = $(call try-run,\ 90 $(CC) $(KBUILD_CFLAGS) $(1) -S -xc /dev/null -o "$$TMP",$(1),$(2)) 91 92# cc-option-yn --- 138 unchanged lines hidden --- | 85 86# cc-option 87# Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586) 88 89cc-option = $(call try-run,\ 90 $(CC) $(KBUILD_CFLAGS) $(1) -S -xc /dev/null -o "$$TMP",$(1),$(2)) 91 92# cc-option-yn --- 138 unchanged lines hidden --- |