• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

TLS/SSL and crypto library


Commit MetaInfo

Révision005563bbce6e66b9c481fd39574b0ffcd2a34292 (tree)
l'heure2014-05-13 02:38:41
AuteurDr. Stephen Henson <steve@open...>
CommiterDr. Stephen Henson

Message de Log

Add linux-x86_64-cross target.

Change Summary

Modification

--- a/Configure
+++ b/Configure
@@ -356,6 +356,7 @@ my %table=(
356356 "linux-ia64-ecc","ecc:-DL_ENDIAN -DTERMIO -O2 -Wall -no_cpprt::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT:${ia64_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
357357 "linux-ia64-icc","icc:-DL_ENDIAN -DTERMIO -O2 -Wall -no_cpprt::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_RISC1 DES_INT:${ia64_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
358358 "linux-x86_64", "gcc:-m64 -DL_ENDIAN -DTERMIO -O3 -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL:${x86_64_asm}:elf:dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64",
359+"linux-x86_64-cross", "gcc:-m64 -DL_ENDIAN -DTERMIO -O3 -Wall -DFIPS_REF_POINT_IS_CROSS_COMPILER_AWARE::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL:${x86_64_asm}:elf:dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64",
359360 "linux64-s390x", "gcc:-m64 -DB_ENDIAN -DTERMIO -O3 -Wall::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL:${s390x_asm}:64:dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):::64",
360361 #### So called "highgprs" target for z/Architecture CPUs
361362 # "Highgprs" is kernel feature first implemented in Linux 2.6.32, see
--- a/config
+++ b/config
@@ -166,6 +166,10 @@ case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in
166166 echo "mips4-sgi-irix64"; exit 0
167167 ;;
168168
169+ Linux:[2-9].*:cross:x86_64)
170+ echo "${MACHINE}-cross-linux"; exit 0
171+ ;;
172+
169173 Linux:[2-9].*)
170174 echo "${MACHINE}-whatever-linux2"; exit 0
171175 ;;
@@ -684,6 +688,7 @@ case "$GUESSOS" in
684688 fi ;;
685689 *-*-linux1) OUT="linux-aout" ;;
686690 *-*-linux2) OUT="linux-generic32" ;;
691+ *-cross-linux) OUT="linux-x86_64-cross" ;;
687692 sun4[uv]*-*-solaris2)
688693 OUT="solaris-sparcv9-$CC"
689694 ISA64=`(isalist) 2>/dev/null | grep sparcv9`