forked from wrf-model/WRF
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
======================================
TYPE: bug fix KEYWORDS: AIX, compilation, brackets SOURCE: internal PURPOSE: Fix compilation problems for certain AIX systems DESCRIPTION OF CHANGES: Recently some users have complained about the inability to compile WRF or WRFPLUS on IBM systems with the AIX operating system. Dave discovered that the reason for it was a quirk in the C standard that caused CPP to not properly deal with include statements for non-system files that are written the following format: #include <model_data_order.inc> Instead, the include statement should be formatted like this: #include "model_data_order.inc" These sorts of include statements are found in a large number of files, so the list of modified files is long. However, the only changes in all these files is to change the brackets <> to quotes "" LIST OF MODIFIED FILES : M arch/md_calls.inc M chem/chem_driver.F M dyn_em/couple_or_uncouple_em.F M dyn_em/interp_domain_em.F M dyn_em/module_initialize_b_wave.F M dyn_em/module_initialize_convrad.F M dyn_em/module_initialize_fire.F M dyn_em/module_initialize_grav2d_x.F M dyn_em/module_initialize_heldsuarez.F M dyn_em/module_initialize_hill2d_x.F M dyn_em/module_initialize_les.F M dyn_em/module_initialize_quarter_ss.F M dyn_em/module_initialize_scm_xy.F M dyn_em/module_initialize_seabreeze2d_x.F M dyn_em/module_initialize_squall2d_x.F M dyn_em/module_initialize_squall2d_y.F M dyn_em/module_initialize_tropical_cyclone.F M dyn_em/nest_init_utils.F M dyn_em/shift_domain_em.F M dyn_em/solve_em.F M dyn_exp/module_initialize_exp.F M dyn_exp/solve_exp.F M dyn_nmm/NMM_NEST_UTILS1.F M dyn_nmm/module_IGWAVE_ADJUST.F M dyn_nmm/module_initialize_real.F M dyn_nmm/module_initialize_tropical_cyclone.F M dyn_nmm/shift_domain_nmm.F M dyn_nmm/solve_nmm.F M dyn_nmm/start_domain_nmm.F M external/RSL_LITE/module_dm.F M external/RSL_LITE/tfp_tester.F M external/esmf_time_f90/ESMF_TimeMgr.inc M frame/module_configure.F M frame/module_domain.F M frame/module_domain_type.F M frame/module_driver_constants.F M main/wrf_SST_ESMF.F M phys/module_ra_cam.F M phys/module_ra_cam_support.F M phys/module_sf_clm.F M share/input_wrf.F M share/mediation_feedback_domain.F M share/mediation_force_domain.F M share/mediation_integrate.F M share/mediation_interp_domain.F M share/mediation_nest_move.F M share/mediation_wrfmain.F M share/output_wrf.F M share/solve_interface.F M share/start_domain.F M share/track_input.F M share/wrf_bdyin.F M share/wrf_bdyout.F M share/wrf_restartin.F M share/wrf_restartout.F M share/wrf_tsin.F M var/gen_be/gen_be_addmean.f90 M var/gen_be/gen_be_ensmean.f90 TESTS CONDUCTED: The fix results in successful completion of WRF on AIX as reported by a complaining user. WRFDA (gnu/intel) and WRF (gnu/intel/pgi) regression tests were run on Yellowstone as well, and all passed (though this is a trivial result since our compilers never complained in the first place). ======================================= git-svn-id: https://svn-wrf-model.cgd.ucar.edu/trunk@8798 b0b5d27b-6f0f-0410-a2a3-cb1e977edc3d
- Loading branch information
Showing
58 changed files
with
401 additions
and
401 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.