Gecko Profiler 0.17 fails to start with Firefox 55.0.3 on FreeBSD
See original GitHub issueThe Start button is present but when it’s clicked, profiling does not start.
[grahamperrin@momh167-gjp4-hpelitebook8570p-freebsd] ~% date ; uname -v
Sat 9 Sep 2017 06:55:19 BST
FreeBSD 12.0-CURRENT #0 r320869: Mon Jul 10 13:57:55 UTC 2017 root@releng3.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC
[grahamperrin@momh167-gjp4-hpelitebook8570p-freebsd] ~% pkg info firefox | grep -i version
Version : 55.0.3_1,1
[grahamperrin@momh167-gjp4-hpelitebook8570p-freebsd] ~%
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
Gecko Profiler 0.17 fails to start with Firefox 55.0.3 on FreeBSD
The Start button is present but when it's clicked, profiling does not start. [grahamperrin@momh167-gjp4-hpelitebook8570p-freebsd] ~% date ...
Read more >Firefox 56.0.1 performance problems with a featured extension ...
Gecko Profiler 0.17 fails to start with Firefox 55.0.3 on FreeBSD ... The Start button is present but when it's clicked, profiling does...
Read more >219963 – www/firefox: update to 55.0 - FreeBSD Bugzilla
+++ This bug was initially created as a clone of Bug #218912 +++ Firefox 55 ... Please report the problem to gecko@FreeBSD.org [maintainer]...
Read more >Firefox beta browser - Weebly
Firefox will not run at all without the following libraries or packages: ... 1000 ms to improve performance[29] Gecko's version number Bumped into...
Read more >Firefox version history - Deletionpedia.org
Browser name, Gecko version, Version, Codename, Release date ... Fixed issue where some Java applets failed to load in Firefox 3.6.14.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
PROFILE=on
just passes--enable-profiling
which predates GeckoProfiler. FreeBSD can still use external profilers like pmcstat(8) or dtrace(1) which don’t like-fomit-frame-pointer
inherited from--enable-optimize
.That’s correct. Most of the Gecko profiler C++ code is disabled on BSD at the build level, because important parts are not implemented for that platform. Most notably, we’re missing BSD variants of
platform-*.cpp
andshared-libraries-*.cc
. Here are the Linux variants of those files: platform-linux-android.cpp shared-libraries-linux.cc