36 |
|
make_basic.mk from |
37 |
|
|
38 |
|
COMPILER = icc |
39 |
– |
|
39 |
|
to |
41 |
– |
|
40 |
|
COMPILER = gcc |
41 |
|
|
42 |
|
Before changing this make variable, you should run 'make clean'. |
46 |
|
To enable debug, modify the following line in make_basic.mk from |
47 |
|
|
48 |
|
DEBUG = |
51 |
– |
|
49 |
|
to |
53 |
– |
|
50 |
|
DEBUG = 1 |
51 |
|
|
52 |
+ |
When you have finished making any customizations to make_basic.mk, type: |
53 |
+ |
|
54 |
+ |
./configure |
55 |
+ |
make |
56 |
+ |
|
57 |
+ |
If the computer you are building DRMS on has multiple CPUs, you |
58 |
+ |
might want to save time by typing something like: |
59 |
+ |
|
60 |
+ |
make -j 4 |
61 |
+ |
|
62 |
|
Since there is only one Makefile for the whole JSOC tree, you must |
63 |
|
always compile in this top level directory. However, you will be able |
64 |
|
to make specific target, e.g., make drms_server. |
65 |
|
|
66 |
< |
To learn more about the new make system, please refer to |
67 |
< |
http://jsoc/trac/wiki/JsocMakefileBackground and |
68 |
< |
http://jsoc/trac/wiki/JsocMakefileAdd |
66 |
> |
To learn more about the new make system, please refer to |
67 |
> |
http://jsoc.stanford.edu/jsocwiki/JsocMakefileBackground and |
68 |
> |
http://jsoc.stanford.edu/jsocwiki/JsocMakefileAdd |