Re: Use GCC only for specific ARCH

2015-02-01 Thread Dimitry Andric
On 10 Dec 2014, at 09:29, Christoph Moench-Tegeder wrote: > > ## Daniel Morante (dan...@morante.net): > >> I have a port that builds fine on a 9.3 amd64, but on 9.3 i386 it fails >> on this line: >> >> inline int64 GetMaxMoney() { return nBestHeight <= HARDFORK_HEIGHT_1 ? >> 500 * COIN

Re: Use GCC only for specific ARCH

2015-02-01 Thread Dewayne Geraghty
On 10/12/2014 7:11 PM, Daniel Morante wrote: > I have a port that builds fine on a 9.3 amd64, but on 9.3 i386 it > fails on this line: > > inline int64 GetMaxMoney() { return nBestHeight <= HARDFORK_HEIGHT_1 ? > 500 * COIN : 250 * COIN; } > > With the following error: > > "integer

Re: Use GCC only for specific ARCH

2014-12-10 Thread Christoph Moench-Tegeder
## Daniel Morante (dan...@morante.net): > I have a port that builds fine on a 9.3 amd64, but on 9.3 i386 it fails > on this line: > > inline int64 GetMaxMoney() { return nBestHeight <= HARDFORK_HEIGHT_1 ? > 500 * COIN : 250 * COIN; } > > With the following error: > > "integer

Use GCC only for specific ARCH

2014-12-10 Thread Daniel Morante
I have a port that builds fine on a 9.3 amd64, but on 9.3 i386 it fails on this line: inline int64 GetMaxMoney() { return nBestHeight <= HARDFORK_HEIGHT_1 ? 500 * COIN : 250 * COIN; } With the following error: "integer constant is too large for 'long' type" If I add "USE_GCC