[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [edk2] [PATCH RESEND] OvmfPkg/build.sh: Use GCC49 toolchain with GCC 6.*
On Mon, Nov 21, 2016 at 04:20:04PM +0000, Ard Biesheuvel wrote: > On 21 November 2016 at 15:56, Konrad Rzeszutek Wilk <konrad@xxxxxxxxxx> wrote: > > Without this I cannot build it under Fedora Core 25. > > > > Contributed-under: TianoCore Contribution Agreement 1.0 > > Signed-off-by: Konrad Rzeszutek Wilk <konrad@xxxxxxxxxx> > > --- > > OvmfPkg/build.sh | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/OvmfPkg/build.sh b/OvmfPkg/build.sh > > index eb5eb73..759ade3 100755 > > --- a/OvmfPkg/build.sh > > +++ b/OvmfPkg/build.sh > > @@ -95,7 +95,7 @@ case `uname` in > > 4.8.*) > > TARGET_TOOLS=GCC48 > > ;; > > - 4.9.*|4.1[0-9].*|5.*.*) > > + 4.9.*|4.1[0-9].*|5.*.*|6.*.*) > > TARGET_TOOLS=GCC49 > > ;; > > *) > > I think it may be time to start using GCC5 for 5.x and later This did the trick as well. I don't have GCC 5.*.* so I could not confirm. diff --git a/OvmfPkg/build.sh b/OvmfPkg/build.sh index 759ade3..4d0d0d4 100755 --- a/OvmfPkg/build.sh +++ b/OvmfPkg/build.sh @@ -95,9 +95,12 @@ case `uname` in 4.8.*) TARGET_TOOLS=GCC48 ;; - 4.9.*|4.1[0-9].*|5.*.*|6.*.*) + 4.9.*|4.1[0-9].*|5.*.*) TARGET_TOOLS=GCC49 ;; + 6.*.*) + TARGET_TOOLS=GCC5 + ;; *) TARGET_TOOLS=GCC44 ;; _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |