From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 03B84C433EF for ; Tue, 14 Dec 2021 08:24:03 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id A4BF9811BB; Tue, 14 Dec 2021 09:24:00 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=fail (p=none dis=none) header.from=etri.re.kr Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=dooray.com header.i=@dooray.com header.b="QGdsh+0Q"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 7F3558193A; Tue, 14 Dec 2021 09:23:58 +0100 (CET) Received: from mscreen.etri.re.kr (mscreen.etri.re.kr [129.254.9.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 895FF810EC for ; Tue, 14 Dec 2021 09:23:49 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=etri.re.kr Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=ckim@etri.re.kr Received: from unknown (HELO send002-relay.gov-dooray.com) (211.180.235.153) by 129.254.9.16 with ESMTP; 14 Dec 2021 17:23:45 +0900 X-Original-SENDERIP: 211.180.235.153 X-Original-MAILFROM: ckim@etri.re.kr X-Original-RCPTTO: u-boot@lists.denx.de Received: from [10.162.225.112] (HELO smtp002-imp.gov-dooray.com) ([10.162.225.112]) by send002-relay.gov-dooray.com with SMTP id 958612f461b85491; Tue, 14 Dec 2021 17:23:45 +0900 DKIM-Signature: a=rsa-sha256; b=QGdsh+0Q75qmkJxU9MkmbAdJun6B/LYFcTV41QU86EAIt1eka+FA2iYIr3lfK6nn24SYzPf72k dHd7flGf3mGRxxedHG01a6TCc4ahVs3L32D2TJ9qrn0tUuGIRerYvpuF9ScTik5K/n2Yss6CPaZI i5zstd8hsJhh6ReJz5Ip3QW5xhaGx9LzlRnKw8UKxCwy6q1WsAwskwKs8yuVWSot1HXhF0Obk7f4 NgZ5LJ4KXd8l3eBu3PztVmwci+Ge+vITpFwNSFC2F/W+1Rid7c7Z6fsKjeO9MyfDjvQ0q82iOGBc FkdW52zNGwSqAIf1VIyYsW0bcGeuOyRSmkvRHbkA==; c=relaxed/relaxed; s=selector; d=dooray.com; v=1; bh=t9P3ZRXj9bSJSWRDciU4sImXe1jYnThjmdnYQo8K55o=; h=From:To:Subject:Message-ID; Received: from [129.254.29.8] (HELO DESKTOPEIC8VM5) ([129.254.29.8]) by smtp002-imp.gov-dooray.com with SMTP id ac62b59561b85491; Tue, 14 Dec 2021 17:23:45 +0900 From: To: Subject: how to see cpp(C preprocessor) output for a file? Date: Tue, 14 Dec 2021 17:23:46 +0900 Message-ID: <03e701d7f0c3$e9dd91a0$bd98b4e0$@etri.re.kr> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 16.0 Thread-Index: Adfwwtg8OoJVbYTjRvuZVCIDUNW0LQ== Content-Language: ko Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.38 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.38 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean Hello, Is there any way I can see the cpp output of a file (for example arch/arm/lib/vsprintf.c) after the build? (in the Makefile option for example) I see some code not executed though I think I have all the configs for the lines. Thanks! Chan Kim