version 1.2, 2007/10/16 22:48:15
|
version 1.3, 2008/06/09 23:43:41
|
Line 36 To change your default compiler to gcc, |
|
Line 36 To change your default compiler to gcc, |
|
make_basic.mk from | make_basic.mk from |
| |
COMPILER = icc | COMPILER = icc |
|
|
to | to |
|
|
COMPILER = gcc | COMPILER = gcc |
| |
Before changing this make variable, you should run 'make clean'. | Before changing this make variable, you should run 'make clean'. |
Line 48 probably not link and/or run properly. |
|
Line 46 probably not link and/or run properly. |
|
To enable debug, modify the following line in make_basic.mk from | To enable debug, modify the following line in make_basic.mk from |
| |
DEBUG = | DEBUG = |
|
|
to | to |
|
|
DEBUG = 1 | DEBUG = 1 |
| |
|
When you have finished making any customizations to make_basic.mk, type: |
|
|
|
./configure |
|
make |
|
|
|
If the computer you are building DRMS on has multiple CPUs, you |
|
might want to save time by typing something like: |
|
|
|
make -j 4 |
|
|
Since there is only one Makefile for the whole JSOC tree, you must | Since there is only one Makefile for the whole JSOC tree, you must |
always compile in this top level directory. However, you will be able | always compile in this top level directory. However, you will be able |
to make specific target, e.g., make drms_server. | to make specific target, e.g., make drms_server. |
| |
To learn more about the new make system, please refer to | To learn more about the new make system, please refer to |
http://jsoc/trac/wiki/JsocMakefileBackground and |
http://jsoc.stanford.edu/jsocwiki/JsocMakefileBackground and |
http://jsoc/trac/wiki/JsocMakefileAdd |
http://jsoc.stanford.edu/jsocwiki/JsocMakefileAdd |