File: comque.csh

package info (click to toggle)
fis-gtm 6.3-007-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 36,284 kB
  • sloc: ansic: 328,861; asm: 5,182; csh: 5,102; sh: 1,918; awk: 291; makefile: 69; sed: 13
file content (181 lines) | stat: -rwxr-xr-x 5,425 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
#!/usr/local/bin/tcsh
#################################################################
#								#
# Copyright (c) 2001-2019 Fidelity National Information		#
# Services, Inc. and/or its subsidiaries. All rights reserved.	#
#								#
#	This source code contains the intellectual property	#
#	of its copyright holder(s), and is made available	#
#	under a license.  If you do not know the terms of	#
#	the license, please stop and do not read further.	#
#								#
#################################################################

##################################################################
#
#	comque.csh - submit background task to compile & link GT.M
#
#	comque.csh is an interactive script to compile & link
#	(build) a release of GT.M.  It prompts the user for 4
#	parameters:
#		version	- version to be built (default: current)
#		images	- type of images (default: current)
#		C compiler options in addition to defaults
#		assembler options in addition to defaults
#
##################################################################
#

#	Do not build as root. If you build as root, you'll endu up with incorrectly set permissions on some files.
#	Incorrectly set permissions fail kitstart.csh

if ( 0 == `id -u` ) then
    echo "You can not build as root."
    exit 1
endif
#	Get rid of debug options producing huge amounts of output if set
unsetenv gtmdbglvl
#	Get the version number/designation:
echo " "
echo -n "Enter Version		"
echo -n "[$gtm_verno]:	"
if ( $?comque_batch_mode != 0) then
	set comque_ver = ""
else
	set comque_ver = $<
endif
if ( "$comque_ver" == "" ) then
	set comque_ver = $gtm_verno
endif
echo " "

#	Get the image type:
if ( "$gtm_exe" == "" ) then
	set comque_image = "p"
else
	# Convert current image type to single-character prompt
	set comque_image = `basename $gtm_exe`
	switch ( $comque_image )
	case "b*":
			set comque_image = "b"
			breaksw

	case "d*":
			set comque_image = "d"
			breaksw

	case "p*":
	default:
			set comque_image = "p"
			breaksw

	endsw
endif

echo -n "Enter Image		"
echo -n "[$comque_image]:	"
if ( $?comque_batch_mode != 0) then
	set comque_image_input = ""
else
	set comque_image_input = $<
endif
if ( "$comque_image_input" != "" ) then
	set comque_image = $comque_image_input
endif
echo " "

#	Convert to name and set default compiler and assembler options.
#	N.B.: These default options must be calculated the same way gtm_env.csh and gtm_env_sp.csh calculate them.
switch ( $comque_image )
case "[Bb]*":
		set comque_image = "bta"
		set comque_as_options_default = \
			"$gt_as_options_common $gt_as_option_I $gt_as_option_DDEBUG $gt_as_option_optimize"
		set comque_cc_options_default = \
			"$gt_cc_options_common $gt_cc_option_I $gt_cc_option_DDEBUG $gt_cc_option_optimize"
		breaksw

case "[Dd]*":
		if ("$comque_image" =~ "*scan*") then
			setenv scan_image 1
			setenv gt_cc_option_debug "$gt_cc_option_debug_scan"
		endif
		set comque_image = "dbg"
		set comque_as_options_default = \
			"$gt_as_options_common $gt_as_option_I $gt_as_option_DDEBUG $gt_as_option_debug $gt_as_option_nooptimize"
		set comque_cc_options_default = \
			"$gt_cc_options_common $gt_cc_option_I $gt_cc_option_DDEBUG $gt_cc_option_debug $gt_cc_option_nooptimize"
		breaksw

case "[Pp]*":
		set comque_image = "pro"
		set comque_as_options_default = \
			"$gt_as_options_common $gt_as_option_I $gt_as_option_optimize"
		set comque_cc_options_default = \
			"$gt_cc_options_common $gt_cc_option_I $gt_cc_option_optimize"
		if ( "$HOSTOS" == "Linux" ) then
			set comque_cc_options_default = "$comque_cc_options_default $gt_cc_option_debug"
		endif
		breaksw

endsw

#	Get assembler options:
echo "Enter additional assembler options"
echo "	[default: $comque_as_options_default]"
echo -n '	-->	'
if ( $?comque_batch_mode != 0) then
	set comque_as_options_extra = ""
else
	set comque_as_options_extra = "$<"
endif
if ( "$comque_as_options_extra" != "" ) then
	echo "	[new: $comque_as_options_default $comque_as_options_extra]"
endif
echo " "

#	Get C compiler options:
echo "Enter additional C compiler options"
echo "	[default: $comque_cc_options_default]"
echo -n '	-->	'
if ( $?comque_batch_mode != 0) then
	set comque_cc_options_extra = ""
else
	set comque_cc_options_extra = "$<"
endif
if ( "$comque_cc_options_extra" != "" ) then
	echo "	[new: $comque_cc_options_default $comque_cc_options_extra]"
endif
echo " "


version $comque_ver $comque_image
if ( ! -d $gtm_ver/log ) then
	mkdir $gtm_ver/log
	chmod 775 $gtm_ver/log
endif

rm -f $gtm_ver/log/comlist.$comque_image.log
if ( $?comque_no_background != 0) then
	if ( $?comque_batch_mode != 0) then
		/usr/local/bin/tcsh $gtm_tools/comlist.csh \
			"$comque_as_options_extra" "$comque_cc_options_extra" "gtm_$comque_image" "$comque_ver" < /dev/null \
				>& $gtm_ver/log/comlist.$comque_image.log
	else
		/usr/local/bin/tcsh $gtm_tools/comlist.csh \
			"$comque_as_options_extra" "$comque_cc_options_extra" "gtm_$comque_image" "$comque_ver" < /dev/null \
				|& tee $gtm_ver/log/comlist.$comque_image.log
	endif
else
	nohup /usr/local/bin/tcsh $gtm_tools/comlist.csh \
		"$comque_as_options_extra" "$comque_cc_options_extra" "gtm_$comque_image" "$comque_ver" \
		>& $gtm_ver/log/comlist.$comque_image.log < /dev/null &
endif

unset comque_as_options_default
unset comque_as_options_extra
unset comque_cc_options_default
unset comque_cc_options_extra
unset comque_image
unset comque_image_input
unset comque_ver