arch.sh
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:7k
源码类别:

CA认证

开发平台:

WINDOWS

  1. #!/bin/sh
  2. # The contents of this file are subject to the Mozilla Public
  3. # License Version 1.1 (the "License"); you may not use this file
  4. # except in compliance with the License. You may obtain a copy of
  5. # the License at http://www.mozilla.org/MPL/
  6. # Software distributed under the License is distributed on an "AS
  7. # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  8. # implied. See the License for the specific language governing
  9. # rights and limitations under the License.
  10. # The Original Code is the Netscape security libraries.
  11. # The Initial Developer of the Original Code is Netscape
  12. # Communications Corporation.  Portions created by Netscape are 
  13. # Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  14. # Rights Reserved.
  15. # Contributor(s):
  16. # Alternatively, the contents of this file may be used under the
  17. # terms of the GNU General Public License Version 2 or later (the
  18. # "GPL"), in which case the provisions of the GPL are applicable 
  19. # instead of those above.  If you wish to allow use of your 
  20. # version of this file only under the terms of the GPL and not to
  21. # allow others to use your version of this file under the MPL,
  22. # indicate your decision by deleting the provisions above and
  23. # replace them with the notice and other provisions required by
  24. # the GPL.  If you do not delete the provisions above, a recipient
  25. # may use your version of this file under either the MPL or the
  26. # GPL.
  27. #
  28. #######################################################################
  29. # Master "Core Components" macros for getting the OS architecture     #
  30. #######################################################################
  31. #
  32. # Macros for getting the OS architecture
  33. #
  34. if [ -n "${USE_64}" ]; then
  35. A64BIT_TAG=_64
  36. else
  37. A64BIT_TAG=
  38. fi
  39. #OS_ARCH := $(subst /,_,$(shell uname -s))
  40. OS_ARCH=`uname -s | sed -e 's;/;_;'`
  41. #
  42. # Attempt to differentiate between sparc and x86 Solaris
  43. #
  44. #OS_TEST := $(shell uname -m)
  45. OS_TEST=`uname -m`
  46. if [ ${OS_TEST} = "i86pc" ]; then
  47. OS_RELEASE=`uname -r`"_"${OS_TEST}
  48. else
  49. OS_RELEASE=`uname -r`
  50. fi
  51. #
  52. # Force the IRIX64 machines to use IRIX.
  53. #
  54. if [ ${OS_ARCH} = "IRIX64" ]; then
  55. OS_ARCH="IRIX"
  56. fi
  57. #
  58. # Force the newer BSDI versions to use the old arch name.
  59. #
  60. if [ ${OS_ARCH} = "BSD_OS" ]; then
  61. OS_ARCH=BSD_386
  62. fi
  63. #
  64. # Catch Deterim if SVR4 is NCR or UNIXWARE
  65. #
  66. if  [ ${OS_ARCH} = "UNIX_SV" ]; then
  67. if grep NCR /etc/bcheckrc ; then
  68. OS_ARCH=NCR
  69. else
  70. # Make UnixWare something human readable
  71. OS_ARCH=UNIXWARE
  72. fi
  73. # Get the OS release number, not 4.2
  74. OS_RELEASE=`uname -v`
  75. fi
  76. if [ ${OS_ARCH} = "UNIX_System_V" ]; then
  77. OS_ARCH=NEC
  78. fi
  79. if [ ${OS_ARCH} = "AIX" ]; then
  80. OS_MAJOR=`uname -v`
  81. OS_MINOR=`uname -r`
  82. OS_RELEASE=${OS_MAJOR}.${OS_MINOR}
  83. fi
  84. #
  85. # Distinguish between OSF1 V4.0B and V4.0D
  86. #
  87. if  [ ${OS_ARCH}${OS_RELEASE} = "OSF1V4.0" ]; then
  88. OS_VERSION=`uname -v`
  89. if [ ${OS_VERSION} = "564" ]; then
  90. OS_RELEASE=V4.0B
  91. fi
  92. if [ ${OS_VERSION} = "878" ]; then
  93. OS_RELEASE=V4.0D
  94. fi
  95. fi
  96. #
  97. # SINIX changes name to ReliantUNIX with 5.43
  98. #
  99. if  [ ${OS_ARCH} = "ReliantUNIX-N" ]; then
  100. OS_ARCH=ReliantUNIX
  101. OS_RELEASE=5.4
  102. fi
  103. if [ ${OS_ARCH} = "SINIX-N" ]; then
  104. OS_ARCH=ReliantUNIX
  105. OS_RELEASE=5.4
  106. fi
  107. #
  108. # Handle FreeBSD 2.2-STABLE and Linux 2.0.30-osfmach3
  109. #
  110. #if [(,$(filter-out Linux FreeBSD,${OS_ARCH}))
  111. #OS_RELEASE := $(shell echo $(OS_RELEASE) | sed 's/-.*//')
  112. #endif
  113. if [  ${OS_ARCH} = "Linux" ]; then
  114. OS_RELEASE=`echo ${OS_RELEASE} | sed 's/-.*//'`
  115. fi
  116. if  [ ${OS_ARCH} = "Linux" ]; then
  117. OS_RELEASE=`echo ${OS_RELEASE} | sed 's;\.[0123456789]*$;;'`
  118. fi
  119. #######################################################################
  120. # Master "Core Components" macros for getting the OS target           #
  121. #######################################################################
  122. #
  123. # Note: OS_TARGET should be specified on the command line for gmake.
  124. # When OS_TARGET=WIN95 is specified, then a Windows 95 target is built.
  125. # The difference between the Win95 target and the WinNT target is that
  126. # the WinNT target uses Windows NT specific features not available
  127. # in Windows 95. The Win95 target will run on Windows NT, but (supposedly)
  128. # at lesser performance (the Win95 target uses threads; the WinNT target
  129. # uses fibers).
  130. #
  131. # When OS_TARGET=WIN16 is specified, then a Windows 3.11 (16bit) target
  132. # is built. See: win16_3.11.mk for lots more about the Win16 target.
  133. #
  134. # If OS_TARGET is not specified, it defaults to ${OS_ARCH}, i.e., no
  135. # cross-compilation.
  136. #
  137. #
  138. # The following hack allows one to build on a WIN95 machine (as if
  139. # s/he were cross-compiling on a WINNT host for a WIN95 target).
  140. # It also accomodates for MKS's uname.exe.  If you never intend
  141. # to do development on a WIN95 machine, you don't need this. It doesn't
  142. # work any more anyway.
  143. #
  144. if [ ${OS_ARCH} = "WIN95" ]; then
  145. OS_ARCH=WINNT
  146. OS_TARGET=WIN95
  147. fi
  148. if [ ${OS_ARCH} = "Windows_95" ]; then
  149. OS_ARCH=Windows_NT
  150. OS_TARGET=WIN95
  151. fi
  152. #
  153. # On WIN32, we also define the variable CPU_ARCH.
  154. #
  155. if  [ ${OS_ARCH} = "WINNT" ]; then
  156. CPU_ARCH=`uname -p`
  157. if [ ${CPU_ARCH} = "I386" ]; then
  158. CPU_ARCH=x386
  159. fi
  160. else
  161. #
  162. # If uname -s returns "Windows_NT", we assume that we are using
  163. # the uname.exe in MKS toolkit.
  164. #
  165. # The -r option of MKS uname only returns the major version number.
  166. # So we need to use its -v option to get the minor version number.
  167. # Moreover, it doesn't have the -p option, so we need to use uname -m.
  168. #
  169. if  [ ${OS_ARCH}  = "Windows_NT" ]; then
  170. OS_ARCH=WINNT
  171. OS_MINOR_RELEASE=`uname -v`
  172. if [ ${OS_MINOR_RELEASE} = "00" ]; then
  173. OS_MINOR_RELEASE=0
  174. fi
  175. OS_RELEASE=${OS_RELEASE}.${OS_MINOR_RELEASE}
  176. CPU_ARCH=`uname -m`
  177. #
  178. # MKS's uname -m returns "586" on a Pentium machine.
  179. #
  180. #ifneq (,$(findstring 86,$(CPU_ARCH)))
  181. if (echo $CPU_ARCH | grep 86) ; then
  182. CPU_ARCH=x386
  183. fi
  184. fi
  185. fi
  186. if  [ ${OS_ARCH} = "Linux" ]; then
  187. IMPL_STRATEGY=_PTH
  188. if [ ${OS_TEST} = "ppc" ]; then
  189. CPU_TAG=_ppc
  190. elif [ ${OS_TEST} = "alpha" ]; then
  191. CPU_TAG=_alpha
  192. else
  193. CPU_TAG=_x86
  194. fi
  195. LIBC_TAG=_glibc
  196. ARCH=linux
  197. fi
  198. OS_TARGET=${OS_TARGET-${OS_ARCH}}
  199. if [ ${OS_TARGET} = "WIN95" ]; then
  200. OS_RELEASE=4.0
  201. fi
  202. if [ ${OS_TARGET} = "WIN16" ]; then
  203. OS_RELEASE=
  204. # OS_RELEASE = _3.11
  205. fi
  206. #
  207. # This variable is used to get OS_CONFIG.mk.
  208. #
  209. OS_CONFIG=${OS_TARGET}${OS_RELEASE}
  210. #
  211. # OBJDIR_TAG depends on the predefined variable BUILD_OPT,
  212. # to distinguish between debug and release builds.
  213. #
  214. if [ -n "${BUILD_OPT}" ]; then
  215. if [ ${OS_TARGET} = "WIN16" ]; then
  216. OBJDIR_TAG=_O
  217. else
  218. OBJDIR_TAG=${A64BIT_TAG}_OPT
  219. fi
  220. else
  221. if [ -n "${BUILD_IDG}" ]; then
  222. if [ ${OS_TARGET} = "WIN16" ]; then
  223. OBJDIR_TAG=_I
  224. else
  225. OBJDIR_TAG=${A64BIT_TAG}_IDG
  226. fi
  227. else
  228. if [ ${OS_TARGET} = WIN16 ]; then
  229. OBJDIR_TAG=_D
  230. else
  231. OBJDIR_TAG=${A64BIT_TAG}_DBG
  232. fi
  233. fi
  234. fi
  235. #
  236. # The following flags are defined in the individual $(OS_CONFIG).mk
  237. # files.
  238. #
  239. # CPU_TAG is defined if the CPU is not the most common CPU.
  240. # COMPILER_TAG is defined if the compiler is not the native compiler.
  241. # IMPL_STRATEGY may be defined too.
  242. #
  243. # Name of the binary code directories
  244. #ifeq (${OS_ARCH}, WINNT)
  245. # ifeq ($(CPU_ARCH),x386)
  246. ## OBJDIR_NAME=$(OS_CONFIG)$(OBJDIR_TAG).OBJ
  247. # else
  248. # OBJDIR_NAME=$(OS_CONFIG)$(CPU_ARCH)$(OBJDIR_TAG).OBJ
  249. # endif
  250. #else
  251. #endif
  252. OBJDIR_NAME=${OS_CONFIG}${CPU_TAG}${COMPILER_TAG}${LIBC_TAG}${IMPL_STRATEGY}${OBJDIR_TAG}'.OBJ'
  253. #export OS_CONFIG OS_ARCH OBJDIR_NAME OS_RELEASE OBJDIR_TAG
  254. export OS_ARCH
  255. if [ ${OS_ARCH} = "WINNT" ]; then
  256. if [  ${OS_TARGET} != "WIN16" ]; then
  257. if [  -z "${BUILD_OPT}" ]; then
  258. #
  259. # Define USE_DEBUG_RTL if you want to use the debug runtime library
  260. # (RTL) in the debug build
  261. #
  262. if [ -n "${USE_DEBUG_RTL}" ]; then
  263. OBJDIR_NAME=${OS_CONFIG}${CPU_TAG}${COMPILER_TAG}${IMPL_STRATEGY}${OBJDIR_TAG}.OBJD
  264. fi
  265. fi
  266. fi
  267. fi