Annotation of OpenXM/doc/install.oxweave, Revision 1.27
1.27 ! takayama 1: %% $OpenXM: OpenXM/doc/install.oxweave,v 1.26 2000/03/15 10:48:35 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.2 takayama 154: //&C
1.13 takayama 155: //&jp (4) asir の利用には key が必要です.
156: //&eg (4) You need a key to use asir.
1.2 takayama 157: //&C
1.13 takayama 158: /*&jp
159: asir の起動時のメッセージまたは OpenXM/lib/asir/asir_key を
160: 参照して, key を取得して下さい (数秒しかかかりません).
161:
1.23 takayama 162: Mail の利用ができて, /var/mail の下にメールを着信できれば,
163: /xxx/yyy/OpenXM/rc/fetch_asir_key
164: を実行することにより asir_key を自動で設定できます.
165:
1.26 takayama 166: FreeBSD の package, Redhat Package manager を利用している
167: 場合は, /usr/local/OpenXM/lib/asir/asir_key がすでに存在して
168: いる場合, このファイルは保存されます.
169:
1.13 takayama 170: */
171: /*&eg
172: Please get the key by following the instruction from asir itself or
173: that in OpenXM/lib/asir/asir_key (it takes only a few seconds
174: to get the key).
1.23 takayama 175:
176: If you can get your mails under /var/mail, you can automatically set
177: your key by executing
178: /xxx/yyy/OpenXM/rc/fetch_asir_key
1.26 takayama 179:
180: If you install the OpenXM package by the pkg_add of FreeBSD or
181: the redhat package manager, the old key file
182: /usr/local/OpenXM/lib/asir/asir_key, if exists, is saved.
1.13 takayama 183:
184: */
1.6 takayama 185:
186: /*&C
1.8 takayama 187:
1.27 ! takayama 188: ***** OpenXM client programs under OpenXM/bin or /usr/local/bin:
! 189: asir
! 190: oxmath
! 191: openxm sm1
! 192:
! 193: ***** OpenXM server programs:
! 194: OpenXM/bin/ox_asir
! 195: OpenXM/bin/ox_sm1
! 196: OpenXM/bin/ox_math
! 197: OpenXM/lib/sm1/bin/ox_sm1_gnuplot
! 198: OpenXM/lib/sm1/bin/ox_sm1_phc
! 199: OpenXM/lib/sm1/bin/ox_sm1_tigers
! 200: OpenXM/lib/java-support/OMproxy.class
! 201:
1.8 takayama 202: ***** QUALITY:
1.25 takayama 203: Experimental:
1.6 takayama 204: OpenXM/bin/k0, OpenXM/bin/d0
1.25 takayama 205: Asir client functions: m_* (Mathematica) , om_* (OpenMath)
206: 70%
1.6 takayama 207: OpenXM/bin/ox_math, OpenXM/bin/math2ox
1.25 takayama 208: Asir client functions: om_* (OpenMath)
1.6 takayama 209: OpenXM/lib/java-support/ *
1.11 takayama 210: OpenXM/bin/sm1, ox_sm1 on Linux libc6.
1.6 takayama 211: */
212: /*&C
213:
214:
1.8 takayama 215: */
216: /*&jp
217: ★ Java に関する注意:
218: 注意 1.
219: OpenMath 用の OMproxy には現在のところ, jdk が必要です.
220: たとえば bash を利用している場合, .bashrc で
221: PATH=/usr/local/jdk1.1.8/bin:$PATH
222: export PATH
1.10 takayama 223: などとして, jdk の java, javac をサーチパスの先のほうへもっていくようにして
1.8 takayama 224: ください.
1.10 takayama 225: csh を利用している場合, .cshrc で
226: set path=(/usr/local/jdk1.1.8/bin $path)
227: として, jdk の java, javac をサーチパスにいれます.
1.17 takayama 228:
229: 注意:
230: なお, Kaffe 1.0.b4 の java は, class BigInteger に method
231: toByteArray が含まれてないため, OpenMath モジュールでは使用できません.
1.8 takayama 232: */
233: /*&eg
234: ***** JAVA
235: In order to use OMproxy, asir client om_*,
236: you need to install JDK.
237: The bin dir of the JDK must be in yur search path.
238: For example, you need to add the following line
1.10 takayama 239: to your .chsrc when your shell is csh
1.8 takayama 240: set path=(/usr/local/jdk1.1.8/bin $path)
1.10 takayama 241: Bash users put the following line to .bashrc
242: PATH=/usr/local/jdk1.1.8/bin:$PATH
243: export PATH
1.17 takayama 244:
245: Remark:
246: The Java interpreter of Kaffe 1.0.b4 does not contain the method
247: toByteArray in the class BigInteger.
248: So, it cannot be used for the OpenMath module.
1.8 takayama 249: */
250:
251: /*&C
252:
253:
1.6 takayama 254:
255:
256: */
257: /*&jp
258: ★ 動作環境
259:
260: */
261: /*&eg
1.7 takayama 262: ***** SYSTEM REQUIREMENTS
1.6 takayama 263:
264: */
265: /*&C
266:
1.11 takayama 267: OS: FreeBSD 3.3 (Intel CPU),
268: Linux systems (Intel CPU):
1.15 takayama 269: Most Linux with libc5 and with libc6 (glibc 2.x).
1.7 takayama 270:
271: X window system is required.
272:
273: Most part of the OpenXM package may work on other versions of
1.11 takayama 274: FreeBSD 3.x and Linux, but we have not yet tested.
1.6 takayama 275:
276: */
277: /*&jp
1.8 takayama 278: 次の modules は, OS の標準 distribution 以外に, さらに下に記したソフトを
1.6 takayama 279: 必要とします.
280: */
281: /*&eg
282: The following modules require the listed softwares other than the standard
283: OS package.
284: */
285: /*&C
286:
1.27 ! takayama 287: (1) OpenXM/bin/oxmath : Mathematica Version 3.x or 4.x
1.6 takayama 288: (Mathematica server) at /usr/local/Mathematica
289: OpenXM/bin/math2ox [ see http://www.wolfram.com ]
290: Asir client functions m_*
291: (2) OpenXM/lib/java-support : JDK at /usr/local/jdk??
1.8 takayama 292: [ see the section on JAVA]
1.6 takayama 293: Asir client functions om_*
294: sm1 client functions om_*
1.7 takayama 295: (3) PHC pack (OpenXM/bin/phc) and asir client functions
296: phc_* run only on linux (glib5).
1.8 takayama 297: If you install the linux emulation^{note 1} on Free BSD, they run on
298: FreeBSD, too.
299: <note 1>
300: Add linux_enable="YES" in /etc/rc.conf
301: You need the following packages:
302: pkg_info | grep linu
303: linux_base-5.2 The base set of packages needed in Linux mode
304: linux_devtools-5.2 Packages needed for doing development in Linux mode
1.6 takayama 305:
306: */
307:
308:
1.1 takayama 309: /*&jp
1.7 takayama 310: 日本語版の注意.
1.3 maekawa 311: 注意 1.
312: asir で日本語のヘルプを利用するには,
1.1 takayama 313: PAGER=jless
314: export PAGER
1.3 maekawa 315: などで, 日本語を扱える PAGER を指定する必要があるかもしれません.
1.1 takayama 316: */
1.7 takayama 317:
318: /*&eg
319:
1.8 takayama 320: The installation is completed.
1.7 takayama 321:
322: */
323: /*&jp
324:
325: 以上.
326:
327: */
328:
1.1 takayama 329: /*&jp
1.7 takayama 330: ★ 文書
331:
332: OpenXM パッケージでもっとも充実しているクライアントは,
333: asir です.
334: asir のつかいかたは
335: OpenXM/doc/asir2000/man-jp.dvi
336: または OpenXM/doc/asir2000/html-jp の HTML ファイルを見て下さい.
337: asir 用 OpenXM クライアントライブラリのつかい方は,
338: OpenXM/doc/asir-contrib/cman-jp.dvi
339: を見て下さい. dvi の付くファイルは xdvi で見ることができます.
340:
341: OpenXM の設計の概要については,
342: OpenXM/doc/issac2000/issac2000.ps
343: を見て下さい.
344: ps の付くファイルは, ghostview で見ることができます.
345:
1.25 takayama 346: Mathematica client については, OpenXM/doc/ox_math を御覧ください.
347: sm1 client については, OpenXM/doc/kan96xx を御覧ください.
348: asir は, 多項式処理用のライブラリとしてリンクできます.
349: これについては, OpenXM/doc/oxlib を御覧ください.
350:
351: OpenXM 対応の, サーバ を作成するには, OpenXM/src/ox_toolkit
352: が参考になるかもしれません. Java のクラスについては
353: OpenXM/src/OpenMath が参考になるかもしれません.
354:
1.7 takayama 355: */
356: /*&eg
357: ***** DOCUMENTS
358:
359: The best OpenXM client in the OpenXM package is now
360: asir.
361: Documents on asir are
362: OpenXM/doc/asir2000/man-eg.dvi
363: OpenXM/doc/asir2000/html-eg (HTML)
364:
365: The file
366: OpenXM/doc/asir-contrib/cman-eg.dvi
367: is a document on OpenXM client libraries for asir.
1.1 takayama 368:
1.7 takayama 369: The design outline is described in
370: OpenXM/doc/issac2000/issac2000.ps
371:
372: Dvi files can be previewed by xdvi and
373: ps files can be previewed by ghostview.
1.25 takayama 374:
375: As to Mathematica client, see OpenXM/doc/ox_math.
376: As to sm1 client, see OpenXM/doc/kan96xx.
377: The asir can be used as a C library for polynomial manupulation.
378: See OpenXM/doc/oxlib.
379:
380: If you are interested in writing a server for OpenXM, please refer to
381: OpenXM/src/ox_toolkit and OpenXM/src/OpenMath.
382:
1.7 takayama 383: */
1.1 takayama 384:
385:
1.8 takayama 386: /*&eg
387:
388:
389: ***** A QUICK TOUR OF OPENXM BY ASIR
390:
391: */
1.7 takayama 392: /*&jp
1.1 takayama 393:
394:
1.8 takayama 395: ★ ASIR による使用例
1.1 takayama 396:
397:
1.3 maekawa 398: asir を動作させるには, key が必要です.
1.8 takayama 399: OpenXM/lib/asir/asir_key のコメントまたは起動時のメッセージをみて,
400: key を E-mail でとりよせて下さい.
1.1 takayama 401:
1.8 takayama 402: */
403: /*&C
404: ---------------- Call ox_sm1 from asir.
405: bash-2.03$ asir
406: This is Risa/Asir, Version 20000120.
407: Copyright (C) FUJITSU LABORATORIES LIMITED.
408: 1994-1999. All rights reserved.
409: xm Version 20000116. ox_help(0); ox_help("keyword"); for help message
410: [269] sm1_genericAnn([x^3-y^2,[s,x,y]]);
411: /* The annihilating ideal of (x^3-y^2)^s */
412: [-2*y*dx-3*x^2*dy,2*x*dx+3*y*dy-6*s]
413:
414:
415: --------------- Call gnuplot from asir.
416: bash-2.03$ asir
417: This is Risa/Asir, Version 20000120.
418: Copyright (C) FUJITSU LABORATORIES LIMITED.
419: 1994-1999. All rights reserved.
420: xm Version 20000116. ox_help(0); ox_help("keyword"); for help message
421: [269] gnuplot("plot sin(x);");
422: 0
423: [270]
1.13 takayama 424:
425: */
426:
427: /*&jp
428:
429: ★ sm1 クライアントの利用例
430:
431: */
432: /*&eg
433:
434: ****** Example of the use of sm1 client
1.1 takayama 435:
1.8 takayama 436: */
1.1 takayama 437:
1.8 takayama 438: /*&C
439: -------------------------------------- call ox_asir from sm1
1.1 takayama 440: sm1
441: (oxasir.sm1) run ;
1.8 takayama 442: [(x^20-y^20) (x,y)] fctr pmat ; factorize x^20-y^20 by call ox_asir
1.1 takayama 443:
444:
1.8 takayama 445: */
1.1 takayama 446:
1.8 takayama 447: /*&jp
1.5 takayama 448: [著作権表示]
449: OpenXM/Copyright を御覧ください.
1.6 takayama 450: */
1.8 takayama 451: /*&eg
452: [COPYRIGHT]
453: See OpenXM/Copyright.
454: */
455:
456: /*&eg
457:
1.6 takayama 458:
1.7 takayama 459:
1.8 takayama 460: ***** TO COMPILE FROM A SOURCE *****
1.7 takayama 461:
462: */
1.6 takayama 463: /*&jp
1.8 takayama 464:
465:
1.6 takayama 466: ★ OpenXM パッケージの Make 法
467: FreeBSD 2.2.8, FreeBSD 3.3, Linux で動作するものと期待してます.
1.8 takayama 468: Linux glib6 では, いまのところ, /usr/include/features.h
1.20 takayama 469: で #define __FAVOR_BSD 1 してコンパイルする必要がありしたが,
470: 一部のソースを
471: -D_BSD_SOURCE option をつけて gcc でコンパイルするように変えてます
472: (setjmp と sigsetjmp の問題, dirty trick).
1.8 takayama 473:
1.6 takayama 474: OpenXM, OpenXM_contrib, OpenXM_contrib2 が必要です.
475: cvs コミッタの場合次のようにしてソースをとりよせます.
476: */
477: /*&eg
478: * How to make OpenXM package?
479: We have tested the OpenXM package on FreeBSD 2.2.8, FreeBSD 3.3, Linux.
1.20 takayama 480: On Linux glib6, we needed to define
1.8 takayama 481: #define __FAVOR_BSD 1
1.20 takayama 482: in /usr/include/features.h,
483: but now we are compiling some sources with -D_BSD_SOURCE
484: (setjmp vs sigsetjmp).
1.8 takayama 485:
1.6 takayama 486: Do you have directories OpenXM, OpenXM_contrib, OpenXM_contrib2?
487: If you are a CVS committer, then you can get all sources as follows:
488: */
489: //&C rcvs checkout OpenXM OpenXM_contrib OpenXM_contrib2
490: //&C
491: //&jp これらがそろっていたらあとは次のように入力するだけです.
492: //&eg Check that you have these directories, then just type in the following commands
493: /*&C
494:
495: cd OpenXM/src
496: make configure
497: make
498: make install
499:
500: */
501: /*&jp なお, OpenXM/src/ox_math のコンパイルおよび利用には Mathematica が,
502: OpenXM/src/OpenMath のコンパイルおよび利用には
503: には, jdk (java 環境) が必要です.
1.12 takayama 504:
505: Documents を生成するには, tex, ptex (ascii 日本語 tex), dvips, texinfo,
506: texi2html, nkf,
507: が必要です. 詳しくは Makefiles を見て下さい.
508: Document は, binary distribution の OpenXM/doc, OpenXM/lib
509: より得るのが簡単です.
1.6 takayama 510: */
511: /*&eg In order to use and compile OpenXM/src/ox_math, you need Mathematica.
512: In order to use and compile OpenXM/src/OpenMath,
513: you need jdk (java environment).
1.12 takayama 514:
515: In order to generate the full documentation including Japanese documents,
516: you need tex, ptex (ASCII Inc. Japanese tex), dvips, texinfo, texi2html,
517: nkf. See each Makefile.
518: The generated documents are in OpenXM/doc and OpenXM/lib
519: in the binary distribution.
1.15 takayama 520: If you do not like to install Japanese environment such as ptex,
521: type in R for the tex error prompt ? or
522: prepare empty shell scripts ptex and nkf.
1.6 takayama 523: */
524: /*&C
1.9 takayama 525:
526: */
527: /*&jp
528:
529: OpenXM_contrib2/asir2000 の配布を受けてない場合 (ソースライセンスを
530: 富士通より受ける必要があります),
531: OpenXM/src/Makefile の各モジュール名 たとえば
532: make all-kan96xx
533: などと各モジュール名を指定してコンパイルして下さい.
534:
1.22 takayama 535: または
536: OpenXM/src/asir2000 の Makefile を Makefile.forSkip に置き換えて
537: 下さい.
538:
1.9 takayama 539: */
540: /*&eg
541:
542: If you cannot get a source liscence of OpenXM_contrib2/asir2000
543: from Fujitsu labs,
544: compile each modules independently, e.g.,
545: make all-kan96xx
1.22 takayama 546:
547: Or, replace Makefile by Makefile.forSkip in OpenXM/src/asir2000.
1.1 takayama 548:
1.6 takayama 549: */
1.1 takayama 550:
1.6 takayama 551: /*&jp
1.1 takayama 552:
1.8 takayama 553: [OpenXM 下のファイルの構成メモ]
1.3 maekawa 554: lib/asir には, asir のライブラリ, ox_asir 本体
555:
1.8 takayama 556: cd OpenXM/src/kxx ; make install-for-debug した場合,
1.3 maekawa 557: lib/sm1 は src/SSkan/Doc への symbolic link
558: であり, sm1 のライブラリファイルが格納されています.
559: lib/sm1/bin には, binaryfiles
1.1 takayama 560: sm1, ox_sm1, ox, ox_log, ox_sm1_*
1.3 maekawa 561: へのシンボリックリンクが格納されます.
1.8 takayama 562: このシンボリックリンクは src/kxx で make install-for-debug を実行することにより
1.3 maekawa 563: 作成されます.
1.1 takayama 564:
1.3 maekawa 565: sm1 が ox_asir を利用するのに必要なファイル.
1.1 takayama 566: lib/asir/ox_asir,
567: lib/sm1/bin/ox, lib/sm1/bin/ox_log (src/kxx/ox, src/kxx/ox_log)
568: lib/sm1/ox.sm1, lib/sm1/oxasir.sm1
569:
1.3 maekawa 570: asir が ox_sm1_forAsir を利用するのに必要なファイル:
1.1 takayama 571: lib/asir/ox_launch
1.3 maekawa 572: lib/sm1/bin/ox_sm1_forAsir (ox_sm1 へのリンク)
1.1 takayama 573: lib/asir/xm
1.3 maekawa 574: lib/sm1/ 以下の *.sm1 なるすべての ライブラリファイル.
1.1 takayama 575: callsm1.sm1 callsm1b.sm1
1.3 maekawa 576: (ox_sm1_forAsir の定義ファイル, src/kxx/oxserver00.c
577: ox_sm1 が ox_sm1_forAsir という名前で呼ばれるとこれらのファイルをロード.)
1.1 takayama 578:
1.3 maekawa 579: asir が ox_sm1_gnuplot を利用するのに必要なファイル:
1.1 takayama 580: lib/asir/ox_launch
1.3 maekawa 581: lib/sm1/bin/ox_sm1_gnuplot (ox_sm1 へのリンク, ox_sm1_gnuplot は fork して
1.4 maekawa 582: gnuplot4ox を実行します.)
1.1 takayama 583: lib/asir/xm
584: lib/sm1/callsm1.sm1, lib/sm1/gnuplot.sm1
1.3 maekawa 585: (ox_sm1_gnuplot の定義ファイル, src/kxx/oxserver00.c
586: ox_sm1 が ox_sm1_gnuplot という名前で呼ばれるとこれらのファイルをロード.)
1.4 maekawa 587: bin/gnuplot4ox, bin/gnuplot_x11 (gnuplot 本体, src/gnuplot*)
1.1 takayama 588:
589: ----------------------------------------
1.3 maekawa 590: [開発者用メモ]
1.1 takayama 591:
1.3 maekawa 592: << sm1, ox_sm1, ox, oxlog の debug >>
593: binary file は各 directory の make install により
594: OpenXM/bin にコピーされますが,
595: debug 用にいちいちコピーするのは面倒なので,
1.8 takayama 596: OpenXM/src/kan96xx で make install-for-debug
597: OpenXM/src/kxx で make install-for-debug
1.3 maekawa 598: を実行すると,
599: OpenXM/bin/sm1, ox, ox_sm1, oxlog より,
1.1 takayama 600: OpenXM/src/kan96xx/Kan/sm1
601: OpenXM/src/kxx/ox, OpenXM/src/kxx/ox_sm1, OpenXM/src/kxx/oxlog
1.3 maekawa 602: へのシンボリックリンクが作成されます.
1.1 takayama 603:
1.3 maekawa 604: [CVSコミッタ用メモ]
605: << OpenXM ディレクトリ配布版の作成方法 >>
1.1 takayama 606: rcvs export -rHEAD OpenXM
607: rcvs export -rHEAD OpenXM_contrib
608: rcvs export -rHEAD OpenXM_contrib2
1.21 takayama 609: cd OpenXM/src ; make generate-source-distribution
1.3 maekawa 610: して, OpenXM, OpenXM_contrib, OpenXM_contrib2 全体を tar+gzip.
1.7 takayama 611: */
612:
613: /*&C
614:
615: */
616: /*&jp
617:
618: ★ Solaris に関する注意.
619: Solaris ではまだ問題が山積してます.
620: Solaris での make の問題点については, OpenXM/doc/OpenXM-FAQ-jp.txt
621: を見てください.
1.8 takayama 622: Solaris でコンパイルするには, /usr/ccs/bin をサーチパスの最初へもっていって
623: おきます.
1.7 takayama 624:
625: */
1.8 takayama 626: /*&eg
627: ***** COMPILE ON SOLARIS
628: There are a lot of troubles on Solaris for now.
629: At least,
630: /usr/ccs/bin must be at the top of the command search path to compile
631: on Solaris.
632: */
633:
1.7 takayama 634:
635: /*&C
636:
1.1 takayama 637: */
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>