Closed
Bug 1477332
Opened 7 years ago
Closed 7 years ago
add aarch64 to mozinfo's known list of 64-bit cpus
Categories
(Firefox Build System :: General, enhancement)
Firefox Build System
General
Tracking
(firefox63 fixed)
RESOLVED
FIXED
mozilla63
| Tracking | Status | |
|---|---|---|
| firefox63 | --- | fixed |
People
(Reporter: froydnj, Assigned: froydnj)
Details
Attachments
(1 file)
|
1.02 KB,
patch
|
chmanchester
:
review+
|
Details | Diff | Splinter Review |
No description provided.
| Assignee | ||
Comment 1•7 years ago
|
||
Might as well.
Attachment #8993759 -
Flags: review?(core-build-config-reviews)
Comment on attachment 8993759 [details] [diff] [review]
add aarch64 to mozinfo's known list of 64-bit cpus
Review of attachment 8993759 [details] [diff] [review]:
-----------------------------------------------------------------
::: python/mozbuild/mozbuild/mozinfo.py
@@ +64,5 @@
> if p.startswith("arm"):
> p = "arm"
> elif re.match("i[3-9]86", p):
> p = "x86"
> d["processor"] = p
This would leave `d["processor"]` as `aarch64`. Is that desired? Or should we make it `arm`? (Genuinely wondering; I don't know what the answer should be.)
| Assignee | ||
Comment 3•7 years ago
|
||
(In reply to David Major [:dmajor] from comment #2)
> Comment on attachment 8993759 [details] [diff] [review]
> add aarch64 to mozinfo's known list of 64-bit cpus
>
> Review of attachment 8993759 [details] [diff] [review]:
> -----------------------------------------------------------------
>
> ::: python/mozbuild/mozbuild/mozinfo.py
> @@ +64,5 @@
> > if p.startswith("arm"):
> > p = "arm"
> > elif re.match("i[3-9]86", p):
> > p = "x86"
> > d["processor"] = p
>
> This would leave `d["processor"]` as `aarch64`. Is that desired? Or should
> we make it `arm`? (Genuinely wondering; I don't know what the answer should
> be.)
`aarch64`.startswith(`arm`) is False, so I think that's the desired behavior. They are two separate architectures, after all.
Updated•7 years ago
|
Attachment #8993759 -
Flags: review?(core-build-config-reviews) → review+
Pushed by nfroyd@mozilla.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/165ba091863c
add aarch64 to mozinfo's known list of 64-bit cpus; r=chmanchester
Comment 5•7 years ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 7 years ago
status-firefox63:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla63
You need to log in
before you can comment on or make changes to this bug.
Description
•