1
Operating Systems and Porting / Re: Firefox Status
« on: January 02, 2020, 04:17:17 pm »
With those hints I managed to get it working, two main points:
- Clang doesn't compile it right yet, I had to force using gcc/g++
- Not sure about the selection of a different linker, it did not make any apparent difference.
I opted to fetch apt-get source firefox and build it with an updated mozconfig.in that sets:
export CC=/usr/bin/gcc
export CXX=/usr/bin/g++
Also had to limit threads to 24, I ran out of RAM on 32 threads.
Successfully running mainline firefox installed through a selfmade deb-package.
- Clang doesn't compile it right yet, I had to force using gcc/g++
- Not sure about the selection of a different linker, it did not make any apparent difference.
I opted to fetch apt-get source firefox and build it with an updated mozconfig.in that sets:
export CC=/usr/bin/gcc
export CXX=/usr/bin/g++
Also had to limit threads to 24, I ran out of RAM on 32 threads.
Successfully running mainline firefox installed through a selfmade deb-package.