qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 01/16] configure: do not define or use the CPP variable


From: Richard Henderson
Subject: Re: [PATCH 01/16] configure: do not define or use the CPP variable
Date: Tue, 17 May 2022 11:07:54 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.8.0

On 5/17/22 02:26, Paolo Bonzini wrote:
Just hardcode $(CC) -E, it should be enough.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
  configure                  | 3 ---
  pc-bios/optionrom/Makefile | 2 +-
  2 files changed, 1 insertion(+), 4 deletions(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

  %.o: %.S
-       $(call quiet-command,$(CPP) $(CPPFLAGS) -c -o - $< | $(AS) $(ASFLAGS) -o 
$@,"AS","$@")
+       $(call quiet-command,$(CC) $(CPPFLAGS) -E -o - $< | $(AS) $(ASFLAGS) -o 
$@,"AS","$@")

Although I'm surprised we need to do this pipe thing. Surely just rely on the assembler-with-cpp rule built into the compiler driver. Are we using a custom AS in this case?


r~



reply via email to

[Prev in Thread] Current Thread [Next in Thread]