Changeset 2388 for palm/trunk/SCRIPTS/palmbuild
- Timestamp:
- Sep 4, 2017 12:49:36 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/palmbuild
r2384 r2388 424 424 line=$(echo "$line" | cut -c51-) 425 425 done 426 column2=$(echo "$l oader_options" | cut -c1-50 )427 printf "| %-20s%-50s | \n" "l oader options:" "$column2"428 line=$(echo "$l oader_options" | cut -c51-)426 column2=$(echo "$linker_options" | cut -c1-50 ) 427 printf "| %-20s%-50s | \n" "linker options:" "$column2" 428 line=$(echo "$linker_options" | cut -c51-) 429 429 while [[ "$line" != "" ]] 430 430 do … … 521 521 echo " " 522 522 echo " *** creating utilities on remote host" 523 make_call_string="make -f Makefile_utilities $make_options F90=$compiler_name F90_SER=$compiler_name_ser COPT=\"$cpp_options\" F90FLAGS=\"$compiler_options\" LDFLAGS=\"$l oader_options\" "523 make_call_string="make -f Makefile_utilities $make_options F90=$compiler_name F90_SER=$compiler_name_ser COPT=\"$cpp_options\" F90FLAGS=\"$compiler_options\" LDFLAGS=\"$linker_options\" " 524 524 echo "$login_init_cmd $module_commands cd ${remote_make_depository}; echo $make_call_string > LAST_MAKE_CALL; chmod u+x LAST_MAKE_CALL; $make_call_string; [[ \$? != 0 ]] && echo MAKE_ERROR" | ssh -q $ssh_key ${remote_username}@${remote_ip} 2>&1 | tee ${remote_hostname}_last_make_protokoll 525 525 … … 555 555 echo " " 556 556 echo " *** compile PALM sources on remote host" 557 make_call_string="make $make_options PROG=$program_name F90=$compiler_name COPT=\"$cpp_options\" F90FLAGS=\"$compiler_options\" LDFLAGS=\"$l oader_options\" "557 make_call_string="make $make_options PROG=$program_name F90=$compiler_name COPT=\"$cpp_options\" F90FLAGS=\"$compiler_options\" LDFLAGS=\"$linker_options\" " 558 558 echo "$login_init_cmd $module_commands cd ${remote_make_depository}; echo $make_call_string > LAST_MAKE_CALL; chmod u+x LAST_MAKE_CALL; $make_call_string; [[ \$? != 0 ]] && echo MAKE_ERROR" | ssh -q $ssh_key ${remote_username}@${remote_ip} 2>&1 | tee ${remote_hostname}_last_make_protokoll 559 559 … … 610 610 then 611 611 612 make_call_string="make $make_options PROG=$program_name F90=$compiler_name COPT=\"$cpp_options\" F90FLAGS=\"$compiler_options\" LDFLAGS=\"$l oader_options\" "612 make_call_string="make $make_options PROG=$program_name F90=$compiler_name COPT=\"$cpp_options\" F90FLAGS=\"$compiler_options\" LDFLAGS=\"$linker_options\" " 613 613 [[ "$login_init_cmd" != "" ]] && login_init_cmd=${login_init_cmd}";" 614 614 [[ "$module_commands" != "" ]] && module_commands=${module_commands}";" … … 700 700 echo " " 701 701 echo " *** creating utilities on local host" 702 make -f Makefile_utilities $make_options F90=$compiler_name F90_SER=$compiler_name_ser COPT="$cpp_options" F90FLAGS="$compiler_options" LDFLAGS="$l oader_options"702 make -f Makefile_utilities $make_options F90=$compiler_name F90_SER=$compiler_name_ser COPT="$cpp_options" F90FLAGS="$compiler_options" LDFLAGS="$linker_options" 703 703 704 704 … … 707 707 echo " *** compile PALM sources on local host" 708 708 709 make $make_options PROG=$program_name F90=$compiler_name COPT="$cpp_options" F90FLAGS="$compiler_options" LDFLAGS="$l oader_options" 2>&1 | tee ${local_hostname}_last_make_protokoll709 make $make_options PROG=$program_name F90=$compiler_name COPT="$cpp_options" F90FLAGS="$compiler_options" LDFLAGS="$linker_options" 2>&1 | tee ${local_hostname}_last_make_protokoll 710 710 711 711 if [[ $? != 0 ]] … … 778 778 [[ "$module_commands" != "" ]] && $module_commands 779 779 780 make $make_options PROG=$program_name F90=$compiler_name COPT="$cpp_options" F90FLAGS="$compiler_options" LDFLAGS="$l oader_options"780 make $make_options PROG=$program_name F90=$compiler_name COPT="$cpp_options" F90FLAGS="$compiler_options" LDFLAGS="$linker_options" 781 781 782 782 if [[ \$? != 0 ]]
Note: See TracChangeset
for help on using the changeset viewer.