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
|
#!/usr/local/bin/tcsh -f
#################################################################
# #
# Copyright (c) 2001-2015 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. #
# #
#################################################################
#
# Note: This script only works when called from buildaux.csh
#
set gt_image = $1
set gt_ld_options = "$2"
echo ""
echo "############# Linking GTCM_SHMCLEAN ###########"
echo ""
@ buildaux_gtcm_shmclean_status = 0
source $gtm_tools/gtm_env.csh
set aix_loadmap_option = ''
if ( $HOSTOS == "AIX") then
set aix_loadmap_option = "-bcalls:$gtm_map/gtcm_shmclean.loadmap"
set aix_loadmap_option = "$aix_loadmap_option -bmap:$gtm_map/gtcm_shmclean.loadmap"
set aix_loadmap_option = "$aix_loadmap_option -bxref:$gtm_map/gtcm_shmclean.loadmap"
endif
set echo
gt_ld $gt_ld_options $aix_loadmap_option ${gt_ld_option_output}$3/gtcm_shmclean -L$gtm_obj $gtm_obj/gtcm_shmclean.o \
$gt_ld_sysrtns -lgtcm -lmumps -lstub $gt_ld_extra_libs $gt_ld_syslibs \
>& $gtm_map/gtcm_shmclean.map
@ exit_status = $status
unset echo
if ( $exit_status != 0 || ! -x $3/gtcm_shmclean) then
@ buildaux_gtcm_shmclean_status++
echo "buildaux-E-linkgtcm_shmclean, Failed to link gtcm_shmclean (see ${dollar_sign}gtm_map/gtcm_shmclean.map)" \
>> $gtm_log/error.${gtm_exe:t}.log
else if ( "ia64" == $mach_type && "hpux" == $platform_name ) then
if ( "dbg" == $gt_image ) then
chatr +dbg enable $3/gtcm_shmclean
endif
endif
exit $buildaux_gtcm_shmclean_status
|