|
Revision 775, 0.6 kB
(checked in by mgalloy, 5 months ago)
|
|
Removing RESOLVE_ALL from build script. IDLdoc is not intended to be run from a runtime or VM environment, so IDL library routines are not required to be built into the .sav file. Providing IDL 6.4 library routines overrides possibly newer ones available from the user.
|
| Line | |
|---|
| 1 | ;+ |
|---|
| 2 | ; Builds the idldoc sav file. |
|---|
| 3 | ;- |
|---|
| 4 | |
|---|
| 5 | ; clear any other compilations |
|---|
| 6 | .reset |
|---|
| 7 | |
|---|
| 8 | ; compile required code |
|---|
| 9 | |
|---|
| 10 | @idldoc_compile_all |
|---|
| 11 | |
|---|
| 12 | ; NOT resolving all IDL lib routines anymore, so that the .sav file generated |
|---|
| 13 | ; with IDL 6.4 can be safely used with later versions of IDL that may have |
|---|
| 14 | ; different versions of the IDL library routines. IDLdoc is not intended to |
|---|
| 15 | ; run in a runtime or VM environment, so they are not needed anyway. The .sav |
|---|
| 16 | ; file is produced simply as a way to package all the required routines in a |
|---|
| 17 | ; single file. |
|---|
| 18 | |
|---|
| 19 | ; create the sav file |
|---|
| 20 | save, filename='idldoc.sav', /routines, description='IDLdoc ' + idldoc_version(/full) |
|---|
| 21 | |
|---|
| 22 | exit |
|---|