mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
Update Environment Variables to cover TRICK_SWIG_EXCLUDE (#1628)
* Update Environment-Variables.md * Added clarification to the exclude variables and their purposes.
This commit is contained in:
parent
dafddff0a1
commit
289da24d24
@ -86,8 +86,32 @@ A colon separated list of directories to skip when processing files.
|
||||
|
||||
It is possible to instruct all CP functions to skip entire directories using the environment variable TRICK_EXCLUDE. Set this variable to a colon separated list of directories which you wish CP to bypass. All header files found in TRICK_EXCLUDE will not be processed. All source code files found in TRICK_EXCLUDE will not be compiled or linked into the simulation.
|
||||
|
||||
This environment variable does the job of both TRICK_ICG_EXCLUDE and TRICK_SWIG_EXCLUDE simulataneously.
|
||||
|
||||
This feature is useful to bring in packages as a library.
|
||||
|
||||
### TRICK_ICG_EXCLUDE
|
||||
|
||||
A colon separated list of directories to skip when processing header files.
|
||||
|
||||
It is possible to instruct ICG to skip entire directories using the environment variable TRICK_ICG_EXCLUDE. Set this variable to a colon separated list of directories which you wish ICG to bypass. This is useful when there is code which you do not wish Trick to have any knowledge of (i.e. you don’t need any of the parameters recorded or input processable).
|
||||
|
||||
This excludes files from ICG only, while still allowing SWIG to process them.
|
||||
|
||||
### TRICK_SWIG_EXCLUDE
|
||||
|
||||
A colon separated list of files and directories to skip when generating Python interface files.
|
||||
|
||||
It is possible to instruct SWIG to skip entire directories and files using the environment variable TRICK_SWIG_EXCLUDE. Set this variable to a colon separated list of files that should be bypassed.
|
||||
|
||||
This excludes files from SWIG only, still allowing ICG to process them.
|
||||
|
||||
Example ```S_overrides.mk```:
|
||||
```
|
||||
TRICK_SWIG_EXCLUDE += :models/SwigExclude.hh
|
||||
TRICK_SWIG_EXCLUDE += :models/Swig_Exclude_Dir
|
||||
```
|
||||
|
||||
### TRICK_FORCE_32BIT
|
||||
|
||||
To force Trick to compile in 32-bit on 64-bit systems, set the TRICK_FORCE_32BIT environment variable to 1. Setting this variable appends "-m32" automatically to TRICK_CFLAGS and TRICK_CXXFLAGS.
|
||||
@ -95,12 +119,6 @@ To force Trick to compile in 32-bit on 64-bit systems, set the TRICK_FORCE_32BIT
|
||||
|
||||
Trick determines a system specific suffix to append to object code directory names. By default this is determined automatically by Trick. The user may override this by setting the TRICK_HOST_CPU environment variable.
|
||||
|
||||
### TRICK_ICG_EXCLUDE
|
||||
|
||||
A colon separated list of directories to skip when processing header files.
|
||||
|
||||
It is possible to instruct ICG to skip entire directories using the environment variable TRICK_ICG_EXCLUDE. Set this variable to a colon separated list of directories which you wish ICG to bypass. This is useful when there is code which you do not wish Trick to have any knowledge of (i.e. you don’t need any of the parameters recorded or input processable).
|
||||
|
||||
### TRICK_LDFLAGS
|
||||
|
||||
TRICK_LDFLAGS include linker flags. TRICK_LDFLAGS is used when linking the simulation executable. It is rare to set this variable.
|
||||
|
Loading…
Reference in New Issue
Block a user