This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author wiggin15
Recipients wiggin15
Date 2019-10-19.14:47:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1571496425.89.0.0695984738868.issue38527@roundup.psfhosted.org>
In-reply-to
Content
When running the configure script on Solaris SPARC (versions 10 and 11), the script fails with the following error:

    checking whether float word ordering is bigendian... unknown
    configure: error:

    Unknown float word ordering. You need to manually preset
    ax_cv_c_float_words_bigendian=no (or yes) according to your system.


The configure script uses "grep" on a compiled binary to see how a float variable is compiled. On Solaris, the regular "grep" command may be an old version that fails to search in a binary file. The correct command should be "ggrep" (the GNU grep).
Luckily, Python's configure script already finds this command in an earlier check:

    checking for grep that handles long lines and -e... /usr/bin/ggrep

All we have to do, then, is use the command that configure finds. i.e. replace "grep" -> "$GREP".
History
Date User Action Args
2019-10-19 14:47:05wiggin15setrecipients: + wiggin15
2019-10-19 14:47:05wiggin15setmessageid: <1571496425.89.0.0695984738868.issue38527@roundup.psfhosted.org>
2019-10-19 14:47:05wiggin15linkissue38527 messages
2019-10-19 14:47:05wiggin15create