From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.81]) by mx.groups.io with SMTP id smtpd.web11.7667.1581411755295098714 for ; Tue, 11 Feb 2020 01:02:35 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=RPEt4MsL; spf=pass (domain: redhat.com, ip: 207.211.31.81, mailfrom: lersek@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581411753; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=NPVc/Il7j5YXpdZjW2g0MStz3mgb/wivPpCB2LVc5u0=; b=RPEt4MsLhVNLhOnyOaA5x4EDnYViJdI8KpzB3VHCNjrBexQHqbhVyEFJs8lhtoW743W9Z+ RyGXt5l1B50YBb5rBHFiiKCwBX09JhXDHMGPzuo187wT/lfuftcCS6iTbtAmd0mEa+xb6+ gYOZGTaIazPleqZY/ddVBINQb9M5kIA= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-47-5UY4Gr84NHuDOE9osQnelQ-1; Tue, 11 Feb 2020 04:02:20 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 6E203107ACCC; Tue, 11 Feb 2020 09:02:19 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-116-193.ams2.redhat.com [10.36.116.193]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5611860BF4; Tue, 11 Feb 2020 09:02:18 +0000 (UTC) Subject: Re: [edk2-devel] [Patch 1/2] UnitTestFrameworkPkg: Disable EBC in DSC file To: devel@edk2.groups.io, michael.d.kinney@intel.com Cc: Sean Brogan , Bret Barkelew References: <20200210202441.10608-1-michael.d.kinney@intel.com> <20200210202441.10608-2-michael.d.kinney@intel.com> From: "Laszlo Ersek" Message-ID: Date: Tue, 11 Feb 2020 10:02:17 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <20200210202441.10608-2-michael.d.kinney@intel.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-MC-Unique: 5UY4Gr84NHuDOE9osQnelQ-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Language: en-US Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit On 02/10/20 21:24, Michael D Kinney wrote: > https://bugzilla.tianocore.org/show_bug.cgi?id=2514 > > Remove EBC as one of the supported architectures > in the UnitTestFrameworkPkg DSC file. The EBC > compiler does not support cararg macros and the small typo: s/cararg/vararg/ Thanks Laszlo > UnitTestLib class uses this feature. > > Cc: Sean Brogan > Cc: Bret Barkelew > Signed-off-by: Michael D Kinney > --- > UnitTestFrameworkPkg/UnitTestFrameworkPkg.dsc | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/UnitTestFrameworkPkg/UnitTestFrameworkPkg.dsc b/UnitTestFrameworkPkg/UnitTestFrameworkPkg.dsc > index 0ad4482273..53d8f52754 100644 > --- a/UnitTestFrameworkPkg/UnitTestFrameworkPkg.dsc > +++ b/UnitTestFrameworkPkg/UnitTestFrameworkPkg.dsc > @@ -13,7 +13,7 @@ [Defines] > PLATFORM_VERSION = 1.00 > DSC_SPECIFICATION = 0x00010005 > OUTPUT_DIRECTORY = Build/UnitTestFrameworkPkg > - SUPPORTED_ARCHITECTURES = IA32|X64|EBC|ARM|AARCH64 > + SUPPORTED_ARCHITECTURES = IA32|X64|ARM|AARCH64 > BUILD_TARGETS = DEBUG|RELEASE|NOOPT > SKUID_IDENTIFIER = DEFAULT > >