Search results

  1. C

    Firefox crashed and starts no more

    Recent update to LLVM 50 causes problems that need to be addressed. Build firefox with devel/llvm40 as a workaround: $ env CC=clang40 CXX=clang++40 CPP=clang-cpp40 make clean all deinstall install -C /usr/ports/www/firefox https://lists.freebsd.org/pipermail/freebsd-gecko/2018-January/007947.html
  2. C

    Intel bug incoming.

    https://lists.freebsd.org/pipermail/freebsd-security/2018-January/009651.html
  3. C

    The Beastie shell in details

    Take a look at the sources: https://svnweb.freebsd.org/base/head/stand/forth/
  4. C

    chromium issue

    It's available from the package repository % pkg search chromium-6 chromium-61.0.3163.100_5 Google web browser based on WebKit There are ports that still depends on devel/llvm40
  5. C

    chromium issue

    Please, file a new PR via bugzilla.
  6. C

    chromium issue

    Chromium no longer support Flash and was deprecated due to security concerns. https://www.chromium.org/flash-roadmap
  7. C

    chromium issue

    Packages are built weekly from a snapshot of the ports, therefore, you need to install it from ports if you don't want to wait. In addition, chromium was tested on 10.3/i386 and 11.1/i386. See 224622 for further details.
  8. C

    chromium issue

    Chromium segfault at startup on i386 was fixed in r457431.
  9. C

    Unable to install python36

    221373 can shed some light here. Please, read the comment 8.
  10. C

    Iridium browser

    Chromium/Iridium uses a password store to store your passwords and the Chromium Safe Storage key, which is used to encrypt cookie values. By default Chromium chooses which store to use automatically, based on your desktop environment, in your case, gnome-keyring is used...
  11. C

    Palemoon

    Finally, Pale Moon 27.6.0 is available for FreeBSD. See 223597 for further details.
  12. C

    high system temperature

    The following method is available for the NVIDIA Optimus GPU. https://wiki.freebsd.org/TuningPowerConsumption#NVIDIA_Optimus For the NVIDIA Quadro series take a look here.
  13. C

    chromium issue

    I have in mind to update chromium and iridium to the latest stable release (TBD). To solve the segfault on i386, first I need to fix the DEBUG option to get a reliable stack trace and see what's wrong here.
  14. C

    chromium issue

    Yes, it should only work with GNU ld. Change the following build argument GN_ARGS+=use_lld=false in chromium/Makefile.
  15. C

    chromium issue

    I'm not sure if it would make any difference, but it will probably work. Add ld option --no-keep-memory for IA32 machine. Index: Makefile =================================================================== --- Makefile (revision 450418) +++ Makefile (working copy) @@ -209,6 +209,12 @@...
  16. C

    chromium issue

    Please, show me the following output chrome --disable-gpu --enable-logging=stderr --v=1
  17. C

    chromium issue

    It works fine for me... # cd /usr/ports/www/chromium # patch -p2 < /home/cpm/Desktop/chromium-libc++.diff Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |Index: www/chromium/Makefile...
  18. C

    Solved Various programs - libGL error: failed to open drm device

    Change the mode of the /dev/dri/card0 using a devfs.rules Add this line in your /etc/devfs.rules add path 'dri/*' mode 0666 group operator Note that you must add the user to the operator group. pw groupmod operator -m user
  19. C

    chromium issue

    philo_neo, vall Would you mind trying to rebuild chromium after applying the following patch?
Back
Top