Commands
Command
| Description
|
---|
mecca --copy {project}
| Checkout the code for a program when run in empty directory. When run in non-empty
directory will update current directory with changes commited to MECCA since last copy done in the
current directory.
|
mecca --uncopy
| Inverse of --copy. Checks for uncommited changes
in the current directory and if the user confirms then removes all files from
the current directory. This leaves the directory ready for another mecca
--copy.
|
mecca --update
| Must be run in a directory populated by a previous mecca --copy.
Will update current directory with changes commited to MECCA since last copy done in
the current directory.
|
mecca --diff
| Must be run in a directory populated by a previous mecca --copy. Will
display differences from what is in MECCA repository, i.e., your changes.
|
mecca --dev[elopment] [{project}]
| Compile a program and place it on the Z index page (for PAs) or the D7 SA testing page (for SAs). In the case of
a service or library, the item is merely built in the working directory.
|
mecca {--commit} {--deletes_allowed} [{project}]
| Commit and release modified application code. To remove files
one must add --deletes_allowed. When --deletes_allowed is
present MECCA will remove from the repository any files removed from the working
directory.
|
mecca --rebuild {project}
| recompiles and releases a program, e.g., if a library changes
|
mecca --retreat {project}
| backs out changes to a program or library (MECCA will prompt for the old version to be made the current version.)
|
mecca --newpa
| creates a new primary application (MECCA will assign a PA number.)
|
mecca --newsa
| creates a new secondary application (MECCA will assign an SA number.)
|
mecca --newcs {service}
| creates a new (central) service (The user must supply an available name.)
|
mecca --newlib ul_{library}
| creates a new user library (The user must supply an available name starting with ul_.)
|
mecca --history {project}
| displays a history of changes made to this project
|
mecca --showinfo {project}
| displays information about a program, e.g., its description and keeper
|
mecca --info {project}
| changes information about a program, e.g., its description and keeper
|
mecca --subscribe {project}
| subscribes the user to emails of code changes and program crashes
|
mecca --unsubscribe {project}
| unsubscribes the user from emails of code changes and program crashes
|
mecca --make {target}
| Build the whole program/library or just a part, i.e., target. Target is
terminology from make, e.g.,
mecca --make foo.o. This does not release the changes or even place them on the
Z index page or the D7 SA testing page. One might find mecca --make foo.E useful, as this will run foo.cpp through
the preprocesser and leave the results in foo.E. This can be helpful to track down issues caused
by poor choices in header files, e.g., "#define const // turn off const" in some user
library header file. (There are additional options to make including clean and sterile.)
|
Files
File
| Description
|
---|
depends.opt
| One for each program and contained in CVS with each program's source code.
Developers specify which libraries a program needs in this file. It is one library per line.
A library is specified by its name, e.g., ul_clib. One can use a test library by giving
a full pathname, e.g., /export/home1/hendricks/cns/mecca/uls/ul_clib. Available user libraries
are documented at https://www-ad.fnal.gov/help/#ulib.
The "ul_" prefix is ommitted in the list but required by MECCA.
|
options.opt
| One for each program and contained in CVS with each program's source code.
Used to configure additional information about a program/library, e.g., whether or not
a library should be built as shared library. Most users should leave this alone.
|
abstract.txt
| Services can/should have an abstract file with some basic information
about the service. This abstract is published to the web, e.g.,
MECCA's abstract.
The abstract.txt file is commited into MECCA and the HTML file is generated from it and published.
|
build_results.txt
| output of most recent build (This file should not be committed into MECCA.)
|
mecca_version_info.cpp
| auto-generated by MECCA during a build and supports embedded version information
|
history.txt
| one for each program which contains the history of changes to this project (This file is no longer updated by MECCA and should be ignored.)
|