On Friday, March 15, 2019 1:42:55 AM EDT Khem Raj wrote: > On Wed, Mar 13, 2019 at 1:04 PM Mark Asselstine > > <[email protected]> wrote: > > On Wednesday, March 13, 2019 3:56:10 PM EDT Andre McCurdy wrote: > > > On Wed, Mar 13, 2019 at 10:57 AM Mark Asselstine > > > > > > <[email protected]> wrote: > > > > The cortexa7 tunings use 'cortexa7' in their tunings and do not > > > > include 'arm7' so we need to look for both when setting TARGET_GOARM. > > > > > > Is cortexa7 a special case? Or will the same issue be there for > > > cortexa5, cortexa9, cortexa15, etc? > > > > Damn, was too fucused on the 1/2 patch of this RR I had my blinders on. > > Yes I should be looking for cortexa* as I believe they all fall in to the > > "7" > keep in mind we might have cortex-a53 etc which are v8
GOARM is not applicable to ARMv8, only v5, v6 and v7. I added the link to the documentation in the V2 along with additional notes to make this clear. MarkA > > > bucket. I will redo this and after we sort out 1/2 I will send a v2. > > > > MarkA > > > > > > Signed-off-by: Mark Asselstine <[email protected]> > > > > --- > > > > > > > > meta/classes/goarch.bbclass | 2 +- > > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > > > diff --git a/meta/classes/goarch.bbclass b/meta/classes/goarch.bbclass > > > > index 39fea5e..077c967 100644 > > > > --- a/meta/classes/goarch.bbclass > > > > +++ b/meta/classes/goarch.bbclass > > > > > > > > @@ -74,7 +74,7 @@ def go_map_arch(a, d): > > > > def go_map_arm(a, f, d): > > > > import re > > > > > > > > if re.match('arm.*', a): > > > > - if 'armv7' in f: > > > > > > > > + if 'armv7' or 'cortexa7' in f: > > > > return '7' > > > > > > > > elif 'armv6' in f: > > > > return '6' > > > > > > > > -- > > > > 2.7.4 > > > > > > > > -- > > > > _______________________________________________ > > > > Openembedded-core mailing list > > > > [email protected] > > > > http://lists.openembedded.org/mailman/listinfo/openembedded-core > > > > -- > > _______________________________________________ > > Openembedded-core mailing list > > [email protected] > > http://lists.openembedded.org/mailman/listinfo/openembedded-core -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
