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 DSE ###########"
echo ""
@ buildaux_dse_status = 0
source $gtm_tools/gtm_env.csh
set aix_loadmap_option = ''
if ( $HOSTOS == "AIX") then
set aix_loadmap_option = "-bcalls:$gtm_map/dse.loadmap -bmap:$gtm_map/dse.loadmap -bxref:$gtm_map/dse.loadmap"
endif
set echo
gt_ld $gt_ld_options $aix_loadmap_option ${gt_ld_option_output}$3/dse -L$gtm_obj $gtm_obj/{dse,dse_cmd}.o \
$gt_ld_sysrtns $gt_ld_options_all_exe -ldse -lmumps -lstub \
$gt_ld_extra_libs $gt_ld_syslibs >& $gtm_map/dse.map
@ exit_status = $status
unset echo
if ( $exit_status != 0 || ! -x $3/dse ) then
@ buildaux_dse_status++
echo "buildaux-E-linkdse, Failed to link dse (see ${dollar_sign}gtm_map/dse.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 +as mpas $3/dse
else
chatr +as mpas $3/dse
endif
endif
exit $buildaux_dse_status
|