Annotation of OpenXM/doc/install.oxweave, Revision 1.33
1.33 ! takayama 1: %% $OpenXM: OpenXM/doc/install.oxweave,v 1.32 2000/04/10 02:29:40 takayama Exp $
1.1 takayama 2: OpenXM/doc/install.oxweave
3:
1.6 takayama 4: /*&C
5: OpenXM URL : http://www.math.kobe-u.ac.jp/OpenXM
1.16 takayama 6: Consult firstly the ERRATA section for your release on this web cite
7: for troubles.
1.6 takayama 8:
9: OpenXM package : Getting started.
10:
11: */
1.1 takayama 12: /*&jp
1.23 takayama 13: ★ OpenXM GENERIC パッケージの利用方法
1.6 takayama 14: この節では, OpenXM package binary distribution のインストール法を説明します.
15: インストールに必要なシステムの仕様については, 動作環境を御覧ください.
1.1 takayama 16: */
17: /*&eg
1.23 takayama 18: ***** HOW TO INSTALL OpenXM GENERIC PACKAGE?
1.6 takayama 19: In this section, we will explain how to install OpenXM package binary
20: distribution.
21: As to the required environment, see the section "System Requirement"
22: */
23: /*&jp
24:
25: (1) Tar ボールより次のようにしてディレクトリ OpenXM を取り出します.
1.13 takayama 26: OpenXM はどこにおいてもかまいません. ルートになってインストール
27: する必要もありません.
28: できれば, /usr/local/OpenXM においてほしいと思います.
1.6 takayama 29:
1.1 takayama 30: */
1.6 takayama 31: /*&eg
1.1 takayama 32:
1.6 takayama 33: (1) Extract the directory OpenXM from the tar ball.
34: You can put the directory OpenXM at any place in the file system.
1.13 takayama 35: You do not need to be a root to install it.
36: We are happy if you put OpenXM at /usr/local/OpenXM
1.2 takayama 37:
38: */
1.6 takayama 39: /*&C
1.24 takayama 40:
41: tar xzvf OpenXM-shared.tgz
1.6 takayama 42: tar xzvf OpenXM-binary-OPERATING_SYSTEM_CPU_TYPE.tgz
43:
1.2 takayama 44: */
1.6 takayama 45: /*&jp
46: 以下 (1) で生成されたディレクトリ OpenXM の絶対パスを /xxx/yyy/OpenXM
47: と書きます.
48:
1.1 takayama 49: */
1.6 takayama 50: /*&eg
51: In the sequel, we will denote the absolute path of the directory OpenXM
52: by /xxx/yyy/OpenXM.
1.1 takayama 53:
54: */
55: /*&jp
1.23 takayama 56: (2) OpenXM/rc/dot.cshrc, OpenXM/rc/dot.bashrc,
57: OpenXM/rc/openxm, OpenXM/rc/asir, OpenXM/rc/oxmath, 等の
58: ファイルを自動生成します.
59: openxm, asir, oxmath などは OpenXM クライアントを起動するための
60: シエルスクリプトです. これらを /usr/local/bin にインストールするには
61: 次のように入力します.
1.6 takayama 62:
1.5 takayama 63: */
64: /*&eg
1.19 takayama 65: (2) Generate OpenXM/rc/dot.cshrc, OpenXM/rc/dot.bashrc and
1.23 takayama 66: OpenXM/rc/openxm, OpenXM/rc/asir, OpenXM/rc/oxmath, ...
67: The files openxm, asir, oxmath are shell scripts to invoke OpenXM clients.
68: If you want to install these shell scripts to /usr/local/bin,
69: type in as follows.
1.6 takayama 70:
1.5 takayama 71: */
1.6 takayama 72: /*&C
73:
1.8 takayama 74: cd /xxx/yyy/OpenXM/rc
1.23 takayama 75: make install
1.5 takayama 76:
77: */
78: /*&jp
1.23 takayama 79:
80: /usr/local/bin でなく, home directory の bin にインストールしたい
81: ときは, 次のように入力してください.
82:
83: */
84: /*&eg
85:
86: If you want to install them under the bin of your home directory,
87: type in as follows.
88:
89: */
90: /*&C
91:
92: cd /xxx/yyy/OpenXM/rc
93: make install PREFIX=$HOME/bin
94:
95: */
96: /*&C
97:
98: [Note] If you are Solaris user, you might have to type in like
99: /usr/ccs/bin/make install PREFIX=$HOME/bin
100:
101: */
102: /*&jp
103:
104: OpenXM/bin の下のファイルを直接実行したい場合は, 以下の設定が必要です.
105: OpenXM clients を実行するだけの場合は, (3), (3') は skip してください.
106:
1.6 takayama 107: (3) csh を利用してる場合, 次の行を ~/.cshrc の最後に加えます.
108:
1.1 takayama 109: */
110: /*&eg
1.23 takayama 111:
112: If you want to execute binaries under OpenXM/bin, you need to perform
113: (3) and (3').
114: If you use only OpenXM clients, skip (3) and (3').
115:
1.6 takayama 116: (3) Append the following line to the end of ~/.cshrc when you are
117: using csh as your shell.
118:
1.1 takayama 119: */
120: /*&C
1.2 takayama 121:
1.6 takayama 122: source /xxx/yyy/OpenXM/rc/dot.cshrc
1.2 takayama 123:
1.1 takayama 124: */
125: /*&jp
1.6 takayama 126: (3') bash を利用してる場合, 次の行を ~/.bashrc の最後に加えます.
127:
1.1 takayama 128: */
129: /*&eg
1.6 takayama 130: (3') Append the following line to the end of ~/.bashrc when you are
131: using bash as your shell.
132:
133: */
134: /*&C
135:
1.18 takayama 136: source /xxx/yyy/OpenXM/rc/dot.bashrc
1.6 takayama 137:
1.1 takayama 138: */
1.14 takayama 139:
140: /*&jp
141:
142: (3) または (3') を終了したら, いったん logout して login しなおすか
1.18 takayama 143: または, source コマンドで, dot.bashrc または dot.csh を読み込んで下さい.
1.14 takayama 144:
145: */
146: /*&eg
147:
148: After finishing the step (3) or (3'), logout and login again,
1.18 takayama 149: or read dot.bashrc or dot.cshrc file by the source command.
1.14 takayama 150:
151: */
152:
1.6 takayama 153:
1.32 takayama 154: /*&C
155:
156: FAQ
157:
158: */
159: /*&jp
160: Q. OpenXM の asir OpenXM client を icon でスタートするには?
161: A. 次の行を, .Xdefaults または, xrdb で読み込むファイルに書いておきます.
162: */
163: /*&eg
164: Q. How to start asir OpenXM clients in the iconic mode?
165: A. Add the following line to .Xdefaults or a file you read by xrdb.
166: */
167: /*&C
168:
169: ox_xterm*iconic: on
1.28 takayama 170:
171: */
172: /*&jp
173:
174: ★ OpenXM FreeBSD binary パッケージのインストール方法
175: openxm-version.tgz
176: を ftp サイトより copy して,
177: root になって,
178: pkg_add openxm-version.tgz
179: OpenXM は /usr/local/OpenXM にインストールされます.
180: あとは, 上の (4) へ.
181: ここで version は OpenXM の version 番号で, たとえば,
182: 2000, 3/20(Mon) 版は 1.1.2
183:
1.30 takayama 184: java および linux emulation が実行に必要です.
185: java が, サーチパスのなかにある必要がありますので,
186: たとえば,
187: set path=(/usr/local/jdk1.1.8 $path)
188: rehash
189: してから, pkg_add して下さい.
190: インストール終了後のメッセージにしたがい, 必要な設定を
191: おこなって下さい.
192:
193: /usr/local にインストールしなかった場合は,
194: (2) を実行して下さい.
195:
1.28 takayama 196: */
197: /*&eg
198:
199: ***** HOW TO INSTALL OpenXM FreeBSD binary package
200: Copy
201: openxm-version.tgz
202: from our ftp cite.
203: Become the super user and type
204: pkg_add openxm-version.tgz
205: OpenXM will be installed to /usr/local/OpenXM
206: Go to (4) above.
207: Here, version is the version number of OpenXM.
208: For example, the version number of the OpenXM of May 20 (Mon), 2000
209: is 1.1.2
210:
1.30 takayama 211: java and linux emulation are required to run OpenXM packages.
212: Java needs to be in the search path. So, for example, execute pkg_add
213: after
214: set path=(/usr/local/jdk1.1.8 $path)
215: rehash
216: Following the message of pkg_add after the installation,
217: set asir_key and path.
218: If you do not install under /usr/local,
219: goto (2).
220:
1.28 takayama 221: */
222: /*&jp
223:
224: ★ OpenXM Redhat Package manager (Linux)
225: binary パッケージのインストール方法
1.29 takayama 226: openxm-shared-version-suffix.noarch.rpm
1.28 takayama 227: openxm-binary-version-suffix.i386.rpm
228: を ftp サイトより copy して,
229: root になって,
1.29 takayama 230: rpm -i openxm-shared-version-suffix.noarch.rpm
1.28 takayama 231: rpm -i openxm-binary-version-suffix.i386.rpm
232: OpenXM は /usr/local/OpenXM にインストールされます.
233: あとは, 上の (4) へ.
234: ここで version は OpenXM の version 番号で, たとえば,
235: 2000, 3/20(Mon) 版は 1.1.2
236: suffix は, RPM 版の minor version number.
237:
238: Debian を利用している場合, コマンド alien で, rpm 形式を deb 形式に
239: 変換できます.
240:
1.30 takayama 241: /usr/local の下へインストールしなかった場合は, (2) を実行して下さい.
242:
1.28 takayama 243: */
244: /*&eg
245:
246: ***** HOW TO INSTALL OpenXM by the redhat Package manager (Linux)
247: Copy
1.29 takayama 248: openxm-shared-version-suffix.noarch.rpm
1.28 takayama 249: openxm-binary-version-suffix.i386.rpm
250: from our ftp cite.
251: Become the super user and type
1.29 takayama 252: rpm -i openxm-shared-version-suffix.noarch.rpm
1.28 takayama 253: rpm -i openxm-binary-version-suffix.i386.rpm
254: OpenXM will be installed to /usr/local/OpenXM
255: Go to (4) above.
256: Here, version is the version number of OpenXM.
257: For example, the version number of the OpenXM of May 20 (Mon), 2000
258: is 1.1.2
259: suffix is the minor version number of the package.
260:
261: If you are using debian, please use the command alien to translate
262: rpm to deb.
1.30 takayama 263:
264: If you do not install under /usr/local, goto (2).
265:
1.13 takayama 266:
267: */
1.6 takayama 268:
269: /*&C
1.8 takayama 270:
1.27 takayama 271: ***** OpenXM client programs under OpenXM/bin or /usr/local/bin:
272: asir
273: oxmath
274: openxm sm1
275:
276: ***** OpenXM server programs:
277: OpenXM/bin/ox_asir
278: OpenXM/bin/ox_sm1
279: OpenXM/bin/ox_math
280: OpenXM/lib/sm1/bin/ox_sm1_gnuplot
281: OpenXM/lib/sm1/bin/ox_sm1_phc
282: OpenXM/lib/sm1/bin/ox_sm1_tigers
283: OpenXM/lib/java-support/OMproxy.class
284:
1.8 takayama 285: ***** QUALITY:
1.25 takayama 286: Experimental:
1.6 takayama 287: OpenXM/bin/k0, OpenXM/bin/d0
1.25 takayama 288: Asir client functions: m_* (Mathematica) , om_* (OpenMath)
1.29 takayama 289: OpenXM/lib/java-support/ *
1.25 takayama 290: 70%
1.6 takayama 291: OpenXM/bin/ox_math, OpenXM/bin/math2ox
1.11 takayama 292: OpenXM/bin/sm1, ox_sm1 on Linux libc6.
1.6 takayama 293: */
294: /*&C
295:
296:
1.8 takayama 297: */
298: /*&jp
299: ★ Java に関する注意:
300: 注意 1.
301: OpenMath 用の OMproxy には現在のところ, jdk が必要です.
302: たとえば bash を利用している場合, .bashrc で
303: PATH=/usr/local/jdk1.1.8/bin:$PATH
304: export PATH
1.10 takayama 305: などとして, jdk の java, javac をサーチパスの先のほうへもっていくようにして
1.8 takayama 306: ください.
1.10 takayama 307: csh を利用している場合, .cshrc で
308: set path=(/usr/local/jdk1.1.8/bin $path)
309: として, jdk の java, javac をサーチパスにいれます.
1.17 takayama 310:
1.33 ! takayama 311: jdk の入手先: FreeBSD --- package lang の下にあります.
! 312: Linux ---
! 313:
1.17 takayama 314: 注意:
315: なお, Kaffe 1.0.b4 の java は, class BigInteger に method
316: toByteArray が含まれてないため, OpenMath モジュールでは使用できません.
1.8 takayama 317: */
318: /*&eg
319: ***** JAVA
320: In order to use OMproxy, asir client om_*,
321: you need to install JDK.
322: The bin dir of the JDK must be in yur search path.
323: For example, you need to add the following line
1.10 takayama 324: to your .chsrc when your shell is csh
1.8 takayama 325: set path=(/usr/local/jdk1.1.8/bin $path)
1.10 takayama 326: Bash users put the following line to .bashrc
327: PATH=/usr/local/jdk1.1.8/bin:$PATH
328: export PATH
1.17 takayama 329:
1.33 ! takayama 330:
! 331: Where can I get jdk? : FreeBSD --- jdk is under the package/lang
! 332: Linux ---
! 333:
1.17 takayama 334: Remark:
335: The Java interpreter of Kaffe 1.0.b4 does not contain the method
336: toByteArray in the class BigInteger.
337: So, it cannot be used for the OpenMath module.
1.8 takayama 338: */
339:
340: /*&C
341:
342:
1.6 takayama 343:
344:
345: */
346: /*&jp
347: ★ 動作環境
348:
349: */
350: /*&eg
1.7 takayama 351: ***** SYSTEM REQUIREMENTS
1.6 takayama 352:
353: */
354: /*&C
355:
1.11 takayama 356: OS: FreeBSD 3.3 (Intel CPU),
357: Linux systems (Intel CPU):
1.15 takayama 358: Most Linux with libc5 and with libc6 (glibc 2.x).
1.7 takayama 359:
360: X window system is required.
361:
362: Most part of the OpenXM package may work on other versions of
1.11 takayama 363: FreeBSD 3.x and Linux, but we have not yet tested.
1.6 takayama 364:
365: */
366: /*&jp
1.8 takayama 367: 次の modules は, OS の標準 distribution 以外に, さらに下に記したソフトを
1.6 takayama 368: 必要とします.
369: */
370: /*&eg
371: The following modules require the listed softwares other than the standard
372: OS package.
373: */
374: /*&C
375:
1.27 takayama 376: (1) OpenXM/bin/oxmath : Mathematica Version 3.x or 4.x
1.6 takayama 377: (Mathematica server) at /usr/local/Mathematica
378: OpenXM/bin/math2ox [ see http://www.wolfram.com ]
379: Asir client functions m_*
380: (2) OpenXM/lib/java-support : JDK at /usr/local/jdk??
1.8 takayama 381: [ see the section on JAVA]
1.6 takayama 382: Asir client functions om_*
383: sm1 client functions om_*
1.7 takayama 384: (3) PHC pack (OpenXM/bin/phc) and asir client functions
385: phc_* run only on linux (glib5).
1.8 takayama 386: If you install the linux emulation^{note 1} on Free BSD, they run on
387: FreeBSD, too.
388: <note 1>
389: Add linux_enable="YES" in /etc/rc.conf
390: You need the following packages:
391: pkg_info | grep linu
392: linux_base-5.2 The base set of packages needed in Linux mode
393: linux_devtools-5.2 Packages needed for doing development in Linux mode
1.6 takayama 394:
395: */
396:
397:
1.1 takayama 398: /*&jp
1.7 takayama 399: 日本語版の注意.
1.3 maekawa 400: 注意 1.
401: asir で日本語のヘルプを利用するには,
1.1 takayama 402: PAGER=jless
403: export PAGER
1.3 maekawa 404: などで, 日本語を扱える PAGER を指定する必要があるかもしれません.
1.1 takayama 405: */
1.7 takayama 406:
407: /*&eg
408:
1.8 takayama 409: The installation is completed.
1.7 takayama 410:
411: */
412: /*&jp
413:
414: 以上.
415:
416: */
417:
1.1 takayama 418: /*&jp
1.7 takayama 419: ★ 文書
420:
421: OpenXM パッケージでもっとも充実しているクライアントは,
422: asir です.
423: asir のつかいかたは
424: OpenXM/doc/asir2000/man-jp.dvi
425: または OpenXM/doc/asir2000/html-jp の HTML ファイルを見て下さい.
426: asir 用 OpenXM クライアントライブラリのつかい方は,
427: OpenXM/doc/asir-contrib/cman-jp.dvi
428: を見て下さい. dvi の付くファイルは xdvi で見ることができます.
429:
430: OpenXM の設計の概要については,
431: OpenXM/doc/issac2000/issac2000.ps
432: を見て下さい.
433: ps の付くファイルは, ghostview で見ることができます.
434:
1.25 takayama 435: Mathematica client については, OpenXM/doc/ox_math を御覧ください.
436: sm1 client については, OpenXM/doc/kan96xx を御覧ください.
437: asir は, 多項式処理用のライブラリとしてリンクできます.
438: これについては, OpenXM/doc/oxlib を御覧ください.
439:
440: OpenXM 対応の, サーバ を作成するには, OpenXM/src/ox_toolkit
441: が参考になるかもしれません. Java のクラスについては
442: OpenXM/src/OpenMath が参考になるかもしれません.
443:
1.7 takayama 444: */
445: /*&eg
446: ***** DOCUMENTS
447:
448: The best OpenXM client in the OpenXM package is now
449: asir.
450: Documents on asir are
451: OpenXM/doc/asir2000/man-eg.dvi
452: OpenXM/doc/asir2000/html-eg (HTML)
453:
454: The file
455: OpenXM/doc/asir-contrib/cman-eg.dvi
456: is a document on OpenXM client libraries for asir.
1.1 takayama 457:
1.7 takayama 458: The design outline is described in
459: OpenXM/doc/issac2000/issac2000.ps
460:
461: Dvi files can be previewed by xdvi and
462: ps files can be previewed by ghostview.
1.25 takayama 463:
464: As to Mathematica client, see OpenXM/doc/ox_math.
465: As to sm1 client, see OpenXM/doc/kan96xx.
466: The asir can be used as a C library for polynomial manupulation.
467: See OpenXM/doc/oxlib.
468:
469: If you are interested in writing a server for OpenXM, please refer to
470: OpenXM/src/ox_toolkit and OpenXM/src/OpenMath.
471:
1.7 takayama 472: */
1.1 takayama 473:
474:
1.8 takayama 475: /*&eg
476:
477:
478: ***** A QUICK TOUR OF OPENXM BY ASIR
479:
480: */
1.7 takayama 481: /*&jp
1.1 takayama 482:
483:
1.8 takayama 484: ★ ASIR による使用例
1.1 takayama 485:
486:
1.3 maekawa 487: asir を動作させるには, key が必要です.
1.8 takayama 488: OpenXM/lib/asir/asir_key のコメントまたは起動時のメッセージをみて,
489: key を E-mail でとりよせて下さい.
1.1 takayama 490:
1.8 takayama 491: */
492: /*&C
493: ---------------- Call ox_sm1 from asir.
494: bash-2.03$ asir
495: This is Risa/Asir, Version 20000120.
496: Copyright (C) FUJITSU LABORATORIES LIMITED.
497: 1994-1999. All rights reserved.
498: xm Version 20000116. ox_help(0); ox_help("keyword"); for help message
499: [269] sm1_genericAnn([x^3-y^2,[s,x,y]]);
500: /* The annihilating ideal of (x^3-y^2)^s */
501: [-2*y*dx-3*x^2*dy,2*x*dx+3*y*dy-6*s]
502:
503:
504: --------------- Call gnuplot from asir.
505: bash-2.03$ asir
506: This is Risa/Asir, Version 20000120.
507: Copyright (C) FUJITSU LABORATORIES LIMITED.
508: 1994-1999. All rights reserved.
509: xm Version 20000116. ox_help(0); ox_help("keyword"); for help message
510: [269] gnuplot("plot sin(x);");
511: 0
512: [270]
1.13 takayama 513:
514: */
515:
516: /*&jp
517:
518: ★ sm1 クライアントの利用例
519:
520: */
521: /*&eg
522:
523: ****** Example of the use of sm1 client
1.1 takayama 524:
1.8 takayama 525: */
1.1 takayama 526:
1.8 takayama 527: /*&C
528: -------------------------------------- call ox_asir from sm1
1.1 takayama 529: sm1
530: (oxasir.sm1) run ;
1.8 takayama 531: [(x^20-y^20) (x,y)] fctr pmat ; factorize x^20-y^20 by call ox_asir
1.1 takayama 532:
533:
1.8 takayama 534: */
1.1 takayama 535:
1.8 takayama 536: /*&jp
1.5 takayama 537: [著作権表示]
538: OpenXM/Copyright を御覧ください.
1.6 takayama 539: */
1.8 takayama 540: /*&eg
541: [COPYRIGHT]
542: See OpenXM/Copyright.
543: */
544:
545: /*&eg
546:
1.6 takayama 547:
1.7 takayama 548:
1.8 takayama 549: ***** TO COMPILE FROM A SOURCE *****
1.7 takayama 550:
551: */
1.6 takayama 552: /*&jp
1.8 takayama 553:
554:
1.6 takayama 555: ★ OpenXM パッケージの Make 法
556: FreeBSD 2.2.8, FreeBSD 3.3, Linux で動作するものと期待してます.
1.8 takayama 557: Linux glib6 では, いまのところ, /usr/include/features.h
1.20 takayama 558: で #define __FAVOR_BSD 1 してコンパイルする必要がありしたが,
559: 一部のソースを
560: -D_BSD_SOURCE option をつけて gcc でコンパイルするように変えてます
561: (setjmp と sigsetjmp の問題, dirty trick).
1.8 takayama 562:
1.6 takayama 563: OpenXM, OpenXM_contrib, OpenXM_contrib2 が必要です.
564: cvs コミッタの場合次のようにしてソースをとりよせます.
565: */
566: /*&eg
567: * How to make OpenXM package?
568: We have tested the OpenXM package on FreeBSD 2.2.8, FreeBSD 3.3, Linux.
1.20 takayama 569: On Linux glib6, we needed to define
1.8 takayama 570: #define __FAVOR_BSD 1
1.20 takayama 571: in /usr/include/features.h,
572: but now we are compiling some sources with -D_BSD_SOURCE
573: (setjmp vs sigsetjmp).
1.8 takayama 574:
1.6 takayama 575: Do you have directories OpenXM, OpenXM_contrib, OpenXM_contrib2?
576: If you are a CVS committer, then you can get all sources as follows:
577: */
578: //&C rcvs checkout OpenXM OpenXM_contrib OpenXM_contrib2
579: //&C
580: //&jp これらがそろっていたらあとは次のように入力するだけです.
581: //&eg Check that you have these directories, then just type in the following commands
582: /*&C
583:
584: cd OpenXM/src
585: make configure
586: make
587: make install
588:
589: */
590: /*&jp なお, OpenXM/src/ox_math のコンパイルおよび利用には Mathematica が,
591: OpenXM/src/OpenMath のコンパイルおよび利用には
592: には, jdk (java 環境) が必要です.
1.12 takayama 593:
594: Documents を生成するには, tex, ptex (ascii 日本語 tex), dvips, texinfo,
595: texi2html, nkf,
596: が必要です. 詳しくは Makefiles を見て下さい.
597: Document は, binary distribution の OpenXM/doc, OpenXM/lib
598: より得るのが簡単です.
1.6 takayama 599: */
600: /*&eg In order to use and compile OpenXM/src/ox_math, you need Mathematica.
601: In order to use and compile OpenXM/src/OpenMath,
602: you need jdk (java environment).
1.12 takayama 603:
604: In order to generate the full documentation including Japanese documents,
605: you need tex, ptex (ASCII Inc. Japanese tex), dvips, texinfo, texi2html,
606: nkf. See each Makefile.
607: The generated documents are in OpenXM/doc and OpenXM/lib
608: in the binary distribution.
1.15 takayama 609: If you do not like to install Japanese environment such as ptex,
610: type in R for the tex error prompt ? or
611: prepare empty shell scripts ptex and nkf.
1.6 takayama 612: */
613: /*&C
1.1 takayama 614:
1.6 takayama 615: */
1.1 takayama 616:
1.6 takayama 617: /*&jp
1.1 takayama 618:
1.8 takayama 619: [OpenXM 下のファイルの構成メモ]
1.3 maekawa 620: lib/asir には, asir のライブラリ, ox_asir 本体
621:
1.8 takayama 622: cd OpenXM/src/kxx ; make install-for-debug した場合,
1.3 maekawa 623: lib/sm1 は src/SSkan/Doc への symbolic link
624: であり, sm1 のライブラリファイルが格納されています.
625: lib/sm1/bin には, binaryfiles
1.1 takayama 626: sm1, ox_sm1, ox, ox_log, ox_sm1_*
1.3 maekawa 627: へのシンボリックリンクが格納されます.
1.8 takayama 628: このシンボリックリンクは src/kxx で make install-for-debug を実行することにより
1.3 maekawa 629: 作成されます.
1.1 takayama 630:
1.3 maekawa 631: sm1 が ox_asir を利用するのに必要なファイル.
1.1 takayama 632: lib/asir/ox_asir,
633: lib/sm1/bin/ox, lib/sm1/bin/ox_log (src/kxx/ox, src/kxx/ox_log)
634: lib/sm1/ox.sm1, lib/sm1/oxasir.sm1
635:
1.3 maekawa 636: asir が ox_sm1_forAsir を利用するのに必要なファイル:
1.1 takayama 637: lib/asir/ox_launch
1.3 maekawa 638: lib/sm1/bin/ox_sm1_forAsir (ox_sm1 へのリンク)
1.1 takayama 639: lib/asir/xm
1.3 maekawa 640: lib/sm1/ 以下の *.sm1 なるすべての ライブラリファイル.
1.1 takayama 641: callsm1.sm1 callsm1b.sm1
1.3 maekawa 642: (ox_sm1_forAsir の定義ファイル, src/kxx/oxserver00.c
643: ox_sm1 が ox_sm1_forAsir という名前で呼ばれるとこれらのファイルをロード.)
1.1 takayama 644:
1.3 maekawa 645: asir が ox_sm1_gnuplot を利用するのに必要なファイル:
1.1 takayama 646: lib/asir/ox_launch
1.3 maekawa 647: lib/sm1/bin/ox_sm1_gnuplot (ox_sm1 へのリンク, ox_sm1_gnuplot は fork して
1.4 maekawa 648: gnuplot4ox を実行します.)
1.1 takayama 649: lib/asir/xm
650: lib/sm1/callsm1.sm1, lib/sm1/gnuplot.sm1
1.3 maekawa 651: (ox_sm1_gnuplot の定義ファイル, src/kxx/oxserver00.c
652: ox_sm1 が ox_sm1_gnuplot という名前で呼ばれるとこれらのファイルをロード.)
1.4 maekawa 653: bin/gnuplot4ox, bin/gnuplot_x11 (gnuplot 本体, src/gnuplot*)
1.1 takayama 654:
655: ----------------------------------------
1.3 maekawa 656: [開発者用メモ]
1.1 takayama 657:
1.3 maekawa 658: << sm1, ox_sm1, ox, oxlog の debug >>
659: binary file は各 directory の make install により
660: OpenXM/bin にコピーされますが,
661: debug 用にいちいちコピーするのは面倒なので,
1.8 takayama 662: OpenXM/src/kan96xx で make install-for-debug
663: OpenXM/src/kxx で make install-for-debug
1.3 maekawa 664: を実行すると,
665: OpenXM/bin/sm1, ox, ox_sm1, oxlog より,
1.1 takayama 666: OpenXM/src/kan96xx/Kan/sm1
667: OpenXM/src/kxx/ox, OpenXM/src/kxx/ox_sm1, OpenXM/src/kxx/oxlog
1.3 maekawa 668: へのシンボリックリンクが作成されます.
1.1 takayama 669:
1.3 maekawa 670: [CVSコミッタ用メモ]
671: << OpenXM ディレクトリ配布版の作成方法 >>
1.1 takayama 672: rcvs export -rHEAD OpenXM
673: rcvs export -rHEAD OpenXM_contrib
674: rcvs export -rHEAD OpenXM_contrib2
1.21 takayama 675: cd OpenXM/src ; make generate-source-distribution
1.3 maekawa 676: して, OpenXM, OpenXM_contrib, OpenXM_contrib2 全体を tar+gzip.
1.7 takayama 677: */
678:
679: /*&C
680:
681: */
682: /*&jp
683:
684: ★ Solaris に関する注意.
685: Solaris ではまだ問題が山積してます.
686: Solaris での make の問題点については, OpenXM/doc/OpenXM-FAQ-jp.txt
687: を見てください.
1.8 takayama 688: Solaris でコンパイルするには, /usr/ccs/bin をサーチパスの最初へもっていって
689: おきます.
1.7 takayama 690:
691: */
1.8 takayama 692: /*&eg
693: ***** COMPILE ON SOLARIS
694: There are a lot of troubles on Solaris for now.
695: At least,
696: /usr/ccs/bin must be at the top of the command search path to compile
697: on Solaris.
698: */
1.31 takayama 699: /*&jp
700:
701: ★ Redhat Linux 6.1 上でのコンパイル
702: m4-1.4 と autoconf-2.13 が必要.
703: (あらかじめはいっている, autoconf は 2.12 でありこれは
704: gnuplot の make で不具合を生じます.)
1.8 takayama 705:
1.31 takayama 706: */
707: /*&eg
708: ***** COMPILE ON Redhat Linux 6.1
709: m4-1.4 and autoconf-2.13 are required.
710: (Preinstalled autoconf is version 2.12. It causes a trouble when
711: you build gnuplot.)
712: */
1.7 takayama 713:
714: /*&C
715:
1.1 takayama 716: */
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>