source: BOOK/final-system/multilib/gmp-64bit.xml @ dabbced

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since dabbced was dabbced, checked in by Joe Ciccone <jciccone@…>, 13 years ago

Change the XInclude schema path from 2003 to 2001. 2003 is depreciated
according to w3.org and 2001 should be used instead.

  • Property mode set to 100644
File size: 3.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4  <!ENTITY % general-entities SYSTEM "../../general.ent">
5  %general-entities;
6]>
7
8<sect1 id="ch-system-gmp" role="wrap">
9  <?dbhtml filename="gmp-64bit.html"?>
10
11  <title>GMP-&gmp-version; 64 Bit</title>
12
13  <indexterm zone="ch-system-gmp">
14    <primary sortas="a-GMP">GMP</primary>
15  </indexterm>
16
17  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
18  href="../common/gmp.xml"
19  xpointer="xpointer(//*[@role='package'])"/>
20
21  <sect2 role="installation">
22    <title>Installation of GMP</title>
23
24<!--
25    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
26    href="../common/gmp.xml"
27    xpointer="xpointer(//*[@os='p1'])"/>
28
29    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
30    href="../common/gmp.xml"
31    xpointer="xpointer(//*[@os='p2'])"/>
32
33-->
34    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
35    href="../common/gmp.xml"
36    xpointer="xpointer(//*[@os='n1'])"/>
37
38    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
39    href="../common/gmp.xml"
40    xpointer="xpointer(//*[@os='a'])"/>
41
42<screen os="b"><userinput>CPPFLAGS=-fexceptions CC="gcc -isystem /usr/include ${BUILD64}" \
43    CXX="g++ -isystem /usr/include ${BUILD64}" \
44    LDFLAGS="-Wl,-rpath-link,/lib64 ${BUILD64}" ./configure --prefix=/usr \
45    --libdir=/usr/lib64 --enable-cxx --enable-mpbsd</userinput></screen>
46
47    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
48    href="../common/gmp.xml"
49    xpointer="xpointer(//*[@os='c'])"/>
50
51    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
52    href="../common/gmp.xml"
53    xpointer="xpointer(//*[@os='d'])"/>
54
55    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
56    href="../common/gmp.xml"
57    xpointer="xpointer(//*[@os='e'])"/>
58
59    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
60    href="../common/gmp.xml"
61    xpointer="xpointer(//*[@os='f'])"/>
62
63    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
64    href="../common/gmp.xml"
65    xpointer="xpointer(//*[@os='g'])"/>
66
67    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
68    href="../common/gmp.xml"
69    xpointer="xpointer(//*[@os='h'])"/>
70
71    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
72    href="../common/gmp.xml"
73    xpointer="xpointer(//*[@os='i'])"/>
74
75    <para os="j">Create the 64bit header file:</para>
76
77<screen os="k"><userinput>mv -v /usr/include/gmp{,-64}.h</userinput></screen>
78
79    <para os="l">Finally, create a stub header in the place of the originals:</para>
80
81<screen os="m"><userinput>cat &gt; /usr/include/gmp.h &lt;&lt; "EOF"
82/* gmp.h - Stub Header  */
83#ifndef __STUB__GMP_H__
84#define __STUB__GMP_H__
85
86#if defined(__x86_64__) || \
87    defined(__sparc64__) || \
88    defined(__arch64__) || \
89    defined(__powerpc64__) || \
90    defined (__s390x__)
91# include "gmp-64.h"
92#else
93# include "gmp-32.h"
94#endif
95
96#endif /* __STUB__GMP_H__ */
97EOF</userinput></screen>
98
99  </sect2>
100
101  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
102  href="../common/gmp.xml"
103  xpointer="xpointer(id('contents-gmp'))"/>
104
105</sect1>
Note: See TracBrowser for help on using the repository browser.