I have settled on doing it the easy way at compile time in nsAppRunner.cpp:
NS_IMETHODIMP
nsXULAppInfo::GetIs64Bit(bool* aResult)
{
#ifdef HAVE_64BIT_BUILD
*aResult = true;
#else
*aResult = false;
#endif
return NS_OK;
}
_______________________________________________
dev-platform mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-platform
- Detecting 32 or 64-bit Firefox build from... mratcliffe
- Re: Detecting 32 or 64-bit Firefox b... mratcliffe
- Re: Detecting 32 or 64-bit Firefox b... Kyle Huey
- Re: Detecting 32 or 64-bit Firefox b... mratcliffe
- Re: Detecting 32 or 64-bit Firef... David Rajchenbach-Teller
- Re: Detecting 32 or 64-bit F... Mike Hoye
- Re: Detecting 32 or 64-b... David Rajchenbach-Teller
- Re: Detecting 32 or 64-bit Firefox b... Philip Chee
- Re: Detecting 32 or 64-bit Firef... Kyle Huey
- Re: Detecting 32 or 64-bit Firefox b... ishikawa
- Re: Detecting 32 or 64-bit Firef... Kearwood "Kip" Gilbert

