In Message-ID: <[EMAIL PROTECTED]> NAKATA Maho <[EMAIL PROTECTED]> wrote:
.if !defined(PICFLAG) .if ${MACHINE_ARCH} == "sparc64" PICFLAG=-fPIC .else PICFLAG=-fpic .endif .endif
I have to do cleanup from -fPIC to -fpic... I have been thinking that -fPIC is the right answer
On some architectures, including SPARC, -fpic generates smaller code than -fPIC. However, -fpic may fail on large inputs. So, to avoid build breaks, the suboptimal but reliable way is to always use -fPIC.
-Stephan
ahhhhh ahhhhh -- NAKATA, Maho
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
