Closed
Bug 1087161
Opened 10 years ago
Closed 9 years ago
Investigate upgrading the toolchain used for B2G ICS/JB/KK/L builds to GCC 4.9
Categories
(Firefox OS Graveyard :: General, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: gkw, Assigned: _AtilA_)
References
Details
Attachments
(16 files, 13 obsolete files)
(deleted),
text/x-github-pull-request
|
mwu
:
review+
|
Details |
(deleted),
text/x-github-pull-request
|
mwu
:
review+
|
Details |
(deleted),
text/x-github-pull-request
|
gerard-majax
:
review+
|
Details |
(deleted),
text/x-github-pull-request
|
gerard-majax
:
review+
|
Details |
(deleted),
text/x-github-pull-request
|
gerard-majax
:
review+
|
Details |
(deleted),
text/x-github-pull-request
|
gerard-majax
:
review+
|
Details |
(deleted),
text/x-github-pull-request
|
gerard-majax
:
review+
|
Details |
(deleted),
text/x-github-pull-request
|
gerard-majax
:
review+
|
Details |
(deleted),
text/x-github-pull-request
|
gerard-majax
:
review+
|
Details |
(deleted),
text/x-github-pull-request
|
gerard-majax
:
review+
|
Details |
(deleted),
text/x-github-pull-request
|
fatseng
:
review+
|
Details |
(deleted),
text/x-github-pull-request
|
gerard-majax
:
review+
|
Details |
(deleted),
text/x-github-pull-request
|
gerard-majax
:
review+
|
Details |
(deleted),
text/x-github-pull-request
|
gerard-majax
:
review+
|
Details |
(deleted),
text/x-github-pull-request
|
gerard-majax
:
review+
|
Details |
(deleted),
text/x-github-pull-request
|
gerard-majax
:
review+
|
Details |
+++ This bug was initially created as a clone of Bug #1056337 +++
In bug 1056337 comment 45, I suggested upgrading to GCC 4.9, it has ASan for GCC on ARM, which is likely to be useful for finding security issues. [1]
Plus, it's already available on Android NDK version 10c. [2]
[1] https://gcc.gnu.org/gcc-4.9/changes.html
[2] https://developer.android.com/tools/sdk/ndk/index.html#Revisions
Comment 1•10 years ago
|
||
The newer toolchain also comes with the newer version of gdb/gdbserver, which fixes a file descriptor leak from gdbserver to the debugee.
Comment 2•10 years ago
|
||
Should we also be looking into this for JB and/or KK devices? Those are 4.6 or 4.7 currently, it looks like.
Comment 3•10 years ago
|
||
4.7. But wouldn't we have the aforementioned partner issues that kept ICS stuck on 4.4 for so long?
Assignee | ||
Comment 4•10 years ago
|
||
Ok, my first attemp compiling Gecko with gcc-4.9 threw some errors complaining about the existance of public destructors in Reference-counted classes... so, it looks like migrating to gcc-4.9 is going to take a bunch of patches.
Comment 5•10 years ago
|
||
I compiled gecko with gcc-4.9 on x86 without error. Maybe it's ARM or gonk only issue?
Reporter | ||
Comment 6•10 years ago
|
||
Not sure how to nominate this bug going forward (I couldn't set feature-b2g, but I think that's restricted to some other workflow.
There's another version 10d of the NDK which may or may not help in this regard. [1]
[1] https://developer.android.com/tools/sdk/ndk/index.html#Revisions
Reporter | ||
Comment 7•10 years ago
|
||
Juan, now that bug 1056337 is freshly fixed, do you mind seeing if you can get this easily working too? (i.e. whether it's low hanging fruit or not)
Flags: needinfo?(atilag)
Assignee | ||
Comment 8•10 years ago
|
||
Hi Gary, it's not fixed yet! :) I need to land the rest of devices, but as soon as it gets closed. I'll work on it.
Flags: needinfo?(atilag)
Assignee | ||
Comment 9•10 years ago
|
||
Hi Gary,
I'm afraid I'll need to work on other bug and it will probably take me some time to fix it, so I will give some pointers here just in case someone else would like to work in this one.
Ok, with all the work done in bug 1056337, testing new Android toolchain is far more easy.
We just need to edit the device manifest file and replace this line (repository):
<project path="prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.8" name="platform/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.8" revision="aosp-new/master"/>
by this one:
<project path="prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9" name="platform/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9" revision="aosp-new/master"/>
Then use the classic cycle of: Compile, fix build error (mostly Gecko), compile, fix error, compile...
One thing I just saw is that there are _A LOT_ of potential public destructors that the compiler wants them to be private for safety. So please the compiler and make it happy :)
Sorry!
Good luck ;)
Feel free to needinfo/ping me if you get stuck at some point!
Comment 10•10 years ago
|
||
FWIW, I feel like it'd probably time better spent getting other B2G builds on to 4.8 across the board first before worrying about getting ICS to 4.9.
Comment 11•10 years ago
|
||
(In reply to Ryan VanderMeulen [:RyanVM UTC-5] from comment #10)
> FWIW, I feel like it'd probably time better spent getting other B2G builds
> on to 4.8 across the board first before worrying about getting ICS to 4.9.
What b2g builds we do are not using 4.8? (besides the issue of the host compiler, which is separate and has a patch already, that I just need to land)
Comment 12•10 years ago
|
||
Both JB && KK are on 4.7 last I checked. Not sure what the L-based builds are using.
Comment 13•10 years ago
|
||
I rather retire ICS before spending time on supporting 4.9 on ICS.
Assignee | ||
Comment 14•10 years ago
|
||
Because of bug 845086, I'm building Gecko with gcc-4.9 and started patching. So, I'm gonna take this work and prepare a big patch. 98% of the fixes are because of public destructors used in ref-counted classes... and there are a lot of them :(
Comment 15•10 years ago
|
||
A lot of that work happened in bug 1137151, are there still a lot more of them?
Assignee | ||
Comment 16•10 years ago
|
||
Oh! think I need to update my Gecko clone :(
Assignee | ||
Comment 17•10 years ago
|
||
Functional-style casting to avoid format error messages
Attachment #8580849 -
Flags: review?(ehsan)
Updated•10 years ago
|
Attachment #8580849 -
Flags: review?(ehsan) → review+
Assignee | ||
Comment 18•10 years ago
|
||
Assignee | ||
Comment 19•10 years ago
|
||
Keywords: leave-open
Comment 20•10 years ago
|
||
Assignee | ||
Updated•10 years ago
|
Assignee: nobody → atilag
Assignee | ||
Comment 21•10 years ago
|
||
If there's no objection, I'd like to take and close this issue, because it's a must if we want to go for hardfp ABI (bug 845086).
Assignee | ||
Comment 22•9 years ago
|
||
{anonymous}::IsMainProcess() is defined but not used in b2g (this warning turned into an error in gcc-4.9). But this function is already implemented in XRE [1], so I just deleted the definition of the function and used the one in XRE.
[1] https://dxr.mozilla.org/mozilla-central/source/toolkit/xre/nsAppRunner.cpp#4522
Attachment #8614027 -
Flags: review?(bent.mozilla)
Comment 23•9 years ago
|
||
As mentioned on irc, you should do that for *all* the IsMainProcess in the tree (and you might as well also do it for the other XRE_GetProcessType() == GeckoProcessType_Default tests ;)
Assignee | ||
Comment 24•9 years ago
|
||
I filed a new bug to follow the issue (and other related) mentioned by Mike in comment 23.
As this issue is not a blocker, I've assigned it to me and will work on it as soon as I fix this bug first :)
Assignee | ||
Comment 25•9 years ago
|
||
Sorry, bug 1171931.
Assignee | ||
Updated•9 years ago
|
Assignee | ||
Comment 26•9 years ago
|
||
gecko/netwerk/dns/mdns/libmdns/nsDNSServiceDiscovery.cpp:30:1: error: 'void mozilla::net::{anonymous}::StopService()' defined but not used [-Werror=unused-function]
Ok, this function is not being used (it's not disabled because of any #define). Requesting permission for:
1º - Removing it
2º - Add unused attribute
What do you think Gary Chen?
Flags: needinfo?(xeonchen)
Comment 27•9 years ago
|
||
Thank you Juan for reminding, I've opened Bug 1172383 for this issue.
Flags: needinfo?(xeonchen)
Assignee | ||
Comment 28•9 years ago
|
||
Comment on attachment 8614027 [details] [diff] [review]
0001-Bug-1087161-Fix-unused-function-build-error-with-gcc.patch
I moved these patch into a bigger one from bug 1171931.
Attachment #8614027 -
Attachment is obsolete: true
Attachment #8614027 -
Flags: review?(bent.mozilla)
Assignee | ||
Comment 29•9 years ago
|
||
I'm going to update all our Android base builds, not just ICS.
Summary: Investigate upgrading the toolchain used for B2G ICS builds to GCC 4.9 → Investigate upgrading the toolchain used for B2G ICS/JB/KK/L builds to GCC 4.9
Assignee | ||
Comment 30•9 years ago
|
||
As per IRC conversation, we are going to upgrade all JB devices first. Meanwhile we should talk to vendors so they can ensure us that there's no problem by upgrading to a newer toolchain.
Assignee | ||
Comment 31•9 years ago
|
||
Attachment #8635312 -
Flags: review?(mwu)
Assignee | ||
Comment 32•9 years ago
|
||
Attachment #8635313 -
Flags: review?(mwu)
Assignee | ||
Comment 33•9 years ago
|
||
Michael, I didn't add the toolchain for Darwin because I don't have a Mac to test with.
Anyway, if we support Mac compiling (I think we do), let me know and I'll add the Darwin toolchain so anyone with a Mac could test the build.
Flags: needinfo?(mwu)
Updated•9 years ago
|
Attachment #8635312 -
Flags: review?(mwu) → review+
Updated•9 years ago
|
Attachment #8635313 -
Flags: review?(mwu) → review+
Comment 34•9 years ago
|
||
I think you should add the Darwin toolchains anyway. It might not be enough by itself (I don't know), but it won't hurt.
Flags: needinfo?(mwu)
Assignee | ||
Comment 35•9 years ago
|
||
Assignee | ||
Comment 36•9 years ago
|
||
Assignee | ||
Comment 37•9 years ago
|
||
I'll not merge this patch until Michael allows me to do it, because it's probably that vendors wouldn't like to use gcc-4.9 toolchain.
Attachment #8639277 -
Flags: review?(mwu)
Assignee | ||
Comment 38•9 years ago
|
||
Same as above, I'll not merge this PR until we get an answer from vendors.
Attachment #8639281 -
Flags: review?(mwu)
Comment 39•9 years ago
|
||
Comment on attachment 8639281 [details]
PR: Add gcc-4.9 toolchain to base-kk.xml manifest
Checks are failing though, so we probably need to setup a mirror for this.
Attachment #8639281 -
Flags: review?(mwu) → review+
Assignee | ||
Comment 40•9 years ago
|
||
Ok, I see what's happening, I'll fix it.
Comment 41•9 years ago
|
||
Looks like this broke b2g37.
https://treeherder.mozilla.org/logviewer.html#?job_id=162194&repo=mozilla-b2g37_v2_2
https://treeherder.mozilla.org/logviewer.html#?job_id=162190&repo=mozilla-b2g37_v2_2
https://treeherder.mozilla.org/logviewer.html#?job_id=162191&repo=mozilla-b2g37_v2_2
Flags: needinfo?(atilag)
Assignee | ||
Comment 42•9 years ago
|
||
Ok, looks like I needed to PR b2g-manifest v2.2 and v2.1s as well (as per IRC convesation).
PRd and merged:
https://github.com/mozilla-b2g/b2g-manifest/commit/5ce8f16e394c40adfe481fff4fca7bfe66f09ce7
https://github.com/mozilla-b2g/b2g-manifest/commit/bfa0bcf27181f16ccefab0c861ec1c5e746e93d9
Flags: needinfo?(atilag)
Comment 43•9 years ago
|
||
That hit other Gecko bustage, so we decided to just pin to the last-good revision of platform_build instead of fighting with this on legacy branches.
v2.2: https://github.com/mozilla-b2g/b2g-manifest/commit/25089f19b9c9fb636d8bf753e0957f4bc6192dbd
v2.1s: https://github.com/mozilla-b2g/b2g-manifest/commit/c91aa80a41fc7da0a99df8ad721d43422e3ab593
Comment 44•9 years ago
|
||
Hi, please fix this for all the old devices like Hamachi, Inari, Keon :/
Im trying to compile for that devices but I get the "Only GCC 4.7 or newer supported" error, in my toolchain the selected compiler is 4.4.x so I guess that is causing the problem.
Thanks!
Assignee | ||
Comment 45•9 years ago
|
||
Hamachi, Inari and Keon are ICS devices, and we already upgraded them to gcc-4.8 based toolchain time ago. That upgrade was only applied on versions greater than v2.2. AFAIK older versions are not officially supported anymore, so if you are trying to compile an older version, we would need to patch them in order to work.
Adrian Crespo already fixed some of this branches, so let's see if he can help you and fix older versions.
Flags: needinfo?(madrid.crespo)
Comment 46•9 years ago
|
||
Thanks Juan, I'll contact Adrian and I'll see what can I do for the 2.0 and 2.1 branches :)
Reporter | ||
Comment 47•9 years ago
|
||
Juan, now that various patches have landed, bugs fixed, I see that the last mentioned bug seems to be bug 1172383 that now has a patch this week.
I was just wondering (not rushing or anything), is that one of the last blockers for this bug?
Flags: needinfo?(atilag)
Assignee | ||
Comment 48•9 years ago
|
||
Hey Gary, the plan was to upgrade JB devices first and then KK and finally Lollipop ones, gradually. Before we can upgrade KK devices, we need to know if vendors will agree with this change. I don't really know if there has been some sort of conversations with them, maybe Michael could sched some light on this.
Flags: needinfo?(atilag) → needinfo?(mwu)
Comment 49•9 years ago
|
||
FYI for (potential) aarch64 devices on L we currently have the 4.8 toolchain, but it's not being picked up, it complains about a lack of 4.9 toolchain. This is probably going to be mandatory for those devices.
/bin/bash: prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/bin/aarch64-linux-android-gcc: No such file or directory
https://github.com/mozilla-b2g/b2g-manifest/blob/master/base-l.xml#L36
Assignee | ||
Updated•9 years ago
|
Flags: needinfo?(mwu)
Flags: needinfo?(madrid.crespo)
Assignee | ||
Comment 50•9 years ago
|
||
I think that we can move this bug forward as we don't have the partner barrier anymore. Michael, is it ok to start by upgrading old devices first? (JB, KK, and L)
Flags: needinfo?(mwu)
Assignee | ||
Updated•9 years ago
|
Flags: needinfo?(mwu)
Assignee | ||
Comment 51•9 years ago
|
||
We are facing ICEs with Gecko being built with gcc-4.7 based toolchains (bug 1251717), so it's time to move forward this bug.
I'm going to start upgrading all KK devices.
Assignee | ||
Updated•9 years ago
|
Attachment #8580849 -
Attachment is obsolete: true
Assignee | ||
Updated•9 years ago
|
Attachment #8639277 -
Flags: review?(mwu) → review?(lissyx+mozillians)
Assignee | ||
Comment 52•9 years ago
|
||
Comment on attachment 8639281 [details]
PR: Add gcc-4.9 toolchain to base-kk.xml manifest
I did a little modification, because the previous commit was failing with dolphin devices. I just needed to add the remote attribute to the gcc-4.9 project tags.
Attachment #8639281 -
Flags: review+ → review?(lissyx+mozillians)
Assignee | ||
Comment 53•9 years ago
|
||
Comment on attachment 8635312 [details]
PR: Add gcc-4.9 toolchain to base-jb.xml manifest
This was merged time ago:
https://github.com/mozilla-b2g/platform_build/commit/660169a3d7e034a892359e39135e8c2785a6ad6f
Assignee | ||
Comment 54•9 years ago
|
||
Comment on attachment 8635312 [details]
PR: Add gcc-4.9 toolchain to base-jb.xml manifest
Sorry this is the commit of the merge:
https://github.com/mozilla-b2g/b2g-manifest/commit/2103b2f89f07f9c8a999ef2a08971cf405b70449
Assignee | ||
Comment 55•9 years ago
|
||
Comment on attachment 8635313 [details]
PR: Add GECKO_TOOLS_PREFIX to JB Emulator manifest in order to compile with gcc-4.9 toolchain
This is the commit of the merge:
https://github.com/mozilla-b2g/platform_build/commit/660169a3d7e034a892359e39135e8c2785a6ad6f
Assignee | ||
Comment 56•9 years ago
|
||
Changed both emulators: arm and x86.
Attachment #8639277 -
Attachment is obsolete: true
Attachment #8639277 -
Flags: review?(lissyx+mozillians)
Attachment #8726241 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 57•9 years ago
|
||
Attachment #8726367 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 58•9 years ago
|
||
Attachment #8726370 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 59•9 years ago
|
||
Attachment #8726377 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 60•9 years ago
|
||
Attachment #8726389 -
Flags: review?(lissyx+mozillians)
Comment 61•9 years ago
|
||
Comment on attachment 8639281 [details]
PR: Add gcc-4.9 toolchain to base-kk.xml manifest
Make sure to wait for the mirror to be ready before merging this
Attachment #8639281 -
Flags: review?(lissyx+mozillians) → review+
Updated•9 years ago
|
Attachment #8726241 -
Flags: review?(lissyx+mozillians) → review+
Updated•9 years ago
|
Attachment #8726367 -
Flags: review?(lissyx+mozillians) → review+
Updated•9 years ago
|
Attachment #8726370 -
Flags: review?(lissyx+mozillians) → review+
Updated•9 years ago
|
Attachment #8726377 -
Flags: review?(lissyx+mozillians) → review+
Attachment #8726389 -
Flags: review?(lissyx+mozillians) → review+
Assignee | ||
Comment 63•9 years ago
|
||
https://github.com/mozilla-b2g/platform_build/commit/964d9fa4eabe9eb473ef9101ca2a690880f28547
https://github.com/mozilla-b2g/device-shinano-common/commit/53dcf88a4314c05dae3464f7647138ad420398e6
https://github.com/mozilla-b2g/device-flame/commit/71adaecff0d7ca51f9ee9d58b39b6957344d1478
https://github.com/mozilla-b2g/device-hammerhead/commit/14e489b1fa92e86f280dcb22fee19a9f1be27ed7
https://github.com/mozilla-b2g/device-mako/commit/f1f2af075a376c44aa672a3e5ca8b22ba90a55fa
All KK devices upgraded to gcc-4.9 (reminder: *just* Gecko toolchain, Gonk is still being compiled with the official one from it's Android base).
Flags: needinfo?(jgomez)
Assignee | ||
Comment 64•9 years ago
|
||
Attachment #8729424 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 65•9 years ago
|
||
Attachment #8729426 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 66•9 years ago
|
||
Attachment #8729428 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 67•9 years ago
|
||
Attachment #8729429 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 68•9 years ago
|
||
Attachment #8729445 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 69•9 years ago
|
||
Attachment #8729446 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 70•9 years ago
|
||
Attachment #8729449 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 71•9 years ago
|
||
Attachment #8729450 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 72•9 years ago
|
||
Attachment #8729451 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 73•9 years ago
|
||
Attachment #8729452 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 74•9 years ago
|
||
Attachment #8729454 -
Flags: review?(fatseng)
Assignee | ||
Comment 75•9 years ago
|
||
Attachment #8729456 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 76•9 years ago
|
||
Attachment #8729458 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 77•9 years ago
|
||
Attachment #8729460 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 78•9 years ago
|
||
Attachment #8729463 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 79•9 years ago
|
||
Attachment #8729465 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 80•9 years ago
|
||
Attachment #8729479 -
Flags: review?(lissyx+mozillians)
Updated•9 years ago
|
Attachment #8729479 -
Flags: review?(lissyx+mozillians) → review+
Comment 81•9 years ago
|
||
Comment on attachment 8729424 [details]
PR to add gcc-4.9 toolchain for Lollipop devices
maybe we don't need to specify the name of the remote.
Attachment #8729424 -
Flags: review?(lissyx+mozillians) → review+
Updated•9 years ago
|
Attachment #8729426 -
Flags: review?(lissyx+mozillians)
Updated•9 years ago
|
Attachment #8729428 -
Flags: review?(lissyx+mozillians)
Updated•9 years ago
|
Attachment #8729429 -
Flags: review?(lissyx+mozillians)
Updated•9 years ago
|
Attachment #8729445 -
Flags: review?(lissyx+mozillians)
Updated•9 years ago
|
Attachment #8729449 -
Flags: review?(lissyx+mozillians)
Updated•9 years ago
|
Attachment #8729446 -
Flags: review?(lissyx+mozillians)
Updated•9 years ago
|
Attachment #8729450 -
Flags: review?(lissyx+mozillians)
Updated•9 years ago
|
Attachment #8729451 -
Flags: review?(lissyx+mozillians)
Updated•9 years ago
|
Attachment #8729465 -
Flags: review?(lissyx+mozillians)
Updated•9 years ago
|
Attachment #8729463 -
Flags: review?(lissyx+mozillians) → review+
Comment 82•9 years ago
|
||
Comment on attachment 8729460 [details]
PR to change Gecko toolchain to gcc-4.9 on Flame-L device
Flame L got dropped, I don't think we should even update it
Attachment #8729460 -
Flags: review?(lissyx+mozillians)
Updated•9 years ago
|
Attachment #8729458 -
Flags: review?(lissyx+mozillians) → review+
Updated•9 years ago
|
Attachment #8729456 -
Flags: review?(lissyx+mozillians) → review+
Updated•9 years ago
|
Attachment #8729452 -
Flags: review?(lissyx+mozillians) → review+
Comment 83•9 years ago
|
||
I would prefer we leverage device-sony-common repo for upgrading the toolchain of the Sony AOSP L based ports: the intent is exactly to avoid having to deal with 16 reviews when dealing with generic stuff for those.
I guess we could export the variable from https://github.com/mozilla-b2g/device-sony-common/blob/sony-aosp-l/CommonConfig.mk ?
Flags: needinfo?(jgomez)
Assignee | ||
Comment 84•9 years ago
|
||
Oh! I liked the granularity and coherence of modifying each device separately, like all other non-sony devices, so for example in the future you want to change or test with another toolchain, it's clear and fast to detect where to make the change. On the other hand, any new Sony device will inherit the Gecko toolchain without changing anything.
Let's PR the common!
Flags: needinfo?(jgomez)
Assignee | ||
Comment 85•9 years ago
|
||
I set all other sony-aosp-l PRs derived devices obsolete.
Attachment #8729426 -
Attachment is obsolete: true
Attachment #8729428 -
Attachment is obsolete: true
Attachment #8729429 -
Attachment is obsolete: true
Attachment #8729445 -
Attachment is obsolete: true
Attachment #8729446 -
Attachment is obsolete: true
Attachment #8729449 -
Attachment is obsolete: true
Attachment #8729450 -
Attachment is obsolete: true
Attachment #8729451 -
Attachment is obsolete: true
Attachment #8729465 -
Attachment is obsolete: true
Attachment #8729651 -
Flags: review?(lissyx+mozillians)
Assignee | ||
Comment 86•9 years ago
|
||
Almost all merged!
https://github.com/mozilla-b2g/b2g-manifest/commit/c29c764b04350bda5bec87ec29c059dd33153e12
https://github.com/mozilla-b2g/device-rpi2b/commit/883f1ad31487f2d1d9bda47134ff2f91b87017b8
https://github.com/mozilla-b2g/device-shamu/commit/5786a029adeecc0290063437af1985324af692b4
https://github.com/mozilla-b2g/device-hammerhead/commit/acbb7a8914059426180c9059fc9419e57668a478
https://github.com/mozilla-b2g/device-fairphone2/commit/2188aa0ee854f90aee166447bd72c02078910ff0
I'll wait for bug 1254895 to be solved and merge the platform_build PR for the emulators.
Assignee | ||
Updated•9 years ago
|
Attachment #8729460 -
Attachment is obsolete: true
Updated•9 years ago
|
Attachment #8729651 -
Flags: review?(lissyx+mozillians) → review+
Assignee | ||
Comment 87•9 years ago
|
||
Emulators upgrade merged.
https://github.com/mozilla-b2g/platform_build/commit/aee7ff3dba262a037559d360b62af429b62cb876
Assignee | ||
Comment 88•9 years ago
|
||
Sony common devices merged.
https://github.com/mozilla-b2g/device-sony-common/commit/a425d08255d3d4135fed995fe6d28ea096747910
Comment 89•9 years ago
|
||
Comment on attachment 8729454 [details]
PR to change Gecko toolchain to gcc-4.9 on Nexusplayer device
I tested it on Nexus Player. It is fine.
Attachment #8729454 -
Flags: review?(fatseng) → review+
Assignee | ||
Comment 90•9 years ago
|
||
Assignee | ||
Updated•9 years ago
|
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Comment 91•7 years ago
|
||
Removing leave-open keyword from resolved bugs, per :sylvestre.
Keywords: leave-open
You need to log in
before you can comment on or make changes to this bug.
Description
•