Reputation: 11
I am getting the following error while compiling on ClearCase:
ERROR: Please freeze your view config-specs before invoking make.
I have created one branch and set config specs but I am still getting that error.
How would you resolve this issue?
Upvotes: 1
Views: 79
Reputation: 1324577
The terme "freeze" generally refers (in this context) to a config spec which is not based on "LATEST
".
LATEST
is a shifting label which means it can move (while the make is in progress)
It is best to create a dedicate view which selects in its config spec a label
element * a_label
Each time you want to build:
cleartool mklabel
as in here or in this example) on your sources The view will be considered "frozen" (in that it does refer to frozen fixed versions), and make will be able to proceed in confidence.
Upvotes: 1