Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

Porting cesm1.2.0, 'underscore' problems

 I'm trying to port cesm1.2.0 on local computer, using 'ibm' 13.1.0.8 compiler, netcdf version 4.2.1, ibm MPI compiler MPICC:= mpcc_r, MPIFC:= mpxlf95_r,

at the cesm.exe build step, there are always problems like that:

ERROR: cesm.buildexe.csh failed, in more detaild:

-----------------------------------------------------------------------------------------------------

mpxlf95_r  -o /$EXEROOT/bld/cesm.exe ccsm_comp_mod.o ccsm_driver.o mrg_mod.o seq_avdata_mod.o seq_diag_mct.o seq_domain_mct.o seq_flux_mct.o seq_frac_mct.o seq_hist_mod.o seq_map_esmf.o seq_map_mod.o seq_mctext_mod.o seq_rest_mod.o -L/$EXEROOT/bld/lib/ -latm -lice -llnd -locn -lrof -lglc -lwav -lcsm_share -lmct -lmpeu -lpio -lgptl -L/sw/aix61/netcdf-4.2.1/lib -lnetcdff -lnetcdf -L/sw/aix61/netcdf-4.2.1/lib -lnetcdf -lhdf5_hl -lhdf5 -lm -lz -L/sw/aix61/hdf5-1.8.8/lib -L/sw/aix53/zlib-1.2.6/lib -L/sw/aix53/szip-2.1/lib -lsz -lmass -lessl -g -q64 -lmass   -L/sw/aix61/netcdf-4.2.1/lib -lnetcdff -lnetcdf -L/sw/aix61/netcdf-4.2.1/lib -lnetcdf -lhdf5_hl -lhdf5 -lm -lz -L/sw/aix61/hdf5-1.8.8/lib -L/sw/aix53/zlib-1.2.6/lib -L/sw/aix53/szip-2.1/lib -lsz -bdatapsize:64K -bstackpsize:64K -btextpsize:32K -qextname
ld: 0711-317 ERROR: Undefined symbol: .gptlfinalize_
ld: 0711-317 ERROR: Undefined symbol: .flush__
ld: 0711-317 ERROR: Undefined symbol: .gptldisable_
******************
ld: 0711-317 ERROR: Undefined symbol: .chdir_

ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.

-----------------------------------------------------------------------------------------------------I put the -qextname option in the FLAGS, but it still doesn't work.I also tried to go to the director which included *.o files and run:---------------------------------------------------------------------------------------------------mpxlf95_r  -o /$EXEROOT/bld/cesm.exe ccsm_comp_mod.o ccsm_driver.o mrg_mod.o seq_avdata_mod.o seq_diag_mct.o seq_domain_mct.o seq_flux_mct.o seq_frac_mct.o seq_hist_mod.o seq_map_esmf.o seq_map_mod.o seq_mctext_mod.o seq_rest_mod.o -L/$EXEROOT/bld/lib/ -latm -lice -llnd -locn -lrof -lglc -lwav -lcsm_share -lmct -lmpeu -lpio -lgptl -L/sw/aix61/netcdf-4.2.1/lib -lnetcdff -lnetcdf -L/sw/aix61/netcdf-4.2.1/lib -lnetcdf -lhdf5_hl -lhdf5 -lm -lz -L/sw/aix61/hdf5-1.8.8/lib -L/sw/aix53/zlib-1.2.6/lib -L/sw/aix53/szip-2.1/lib -lsz -lmass -lessl -g -q64 -lmass   -L/sw/aix61/netcdf-4.2.1/lib -lnetcdff -lnetcdf -L/sw/aix61/netcdf-4.2.1/lib -lnetcdf -lhdf5_hl -lhdf5 -lm -lz -L/sw/aix61/hdf5-1.8.8/lib -L/sw/aix53/zlib-1.2.6/lib -L/sw/aix53/szip-2.1/lib -lsz -bdatapsize:64K -bstackpsize:64K -btextpsize:32K -qextname-brename:.flush__,.flush_ **** -brename:.chdir_,.chdir----------------------------------------------------------------------------------------------------Then it seems works, and the cesm.exe file can be created. But, does anyone knows how to change the FLAGS in the MARCOS file to make it work?
Thanks a lot!
Wuke Wang
 

jedwards

CSEG and Liaisons
Staff member
The -qextname option needs an argument.  In the config_machines.xml file it looks like:
Code:
<ADD_FFLAGS> -qextname=flush,chdir,gptlfinalize,gptldisable </ADD_FFLAGS>
  <br />In macros you would just add these flags to the FFLAGS.
 

jedwards

CSEG and Liaisons
Staff member
The -qextname option needs an argument.  In the config_machines.xml file it looks like:
Code:
<ADD_FFLAGS> -qextname=flush,chdir,gptlfinalize,gptldisable </ADD_FFLAGS>
  <br />In macros you would just add these flags to the FFLAGS.
 

jedwards

CSEG and Liaisons
Staff member
The -qextname option needs an argument.  In the config_machines.xml file it looks like:
Code:
<ADD_FFLAGS> -qextname=flush,chdir,gptlfinalize,gptldisable </ADD_FFLAGS>
  <br />In macros you would just add these flags to the FFLAGS.
 

jedwards

CSEG and Liaisons
Staff member
The -qextname option needs an argument.  In the config_machines.xml file it looks like:
Code:
<ADD_FFLAGS> -qextname=flush,chdir,gptlfinalize,gptldisable </ADD_FFLAGS>
  <br />In macros you would just add these flags to the FFLAGS.
 
Dear jedwards,thank you for the quick reply. Unfortunately I got the same error after adding the
Code:
-qextname=flush,chdir,gptlfinalize,gptldisable<br /><br />in the config_compilers.xml.<br /><br />my configuration in the file is:<br /><br /><em><compiler COMPILER="ibm" MACH="c2aECMWF"></em><br /><em>  <SFC> xlf90_r </SFC></em><br /><em>  <MPIFC> mpxlf90_r </MPIFC></em><br /><em>  <SCC> xlC </SCC></em><br /><em>  <MPICC> mpcc_r </MPICC>  </em><br /><em>  <ADD_CPPDEFS> -DAIX -DIBM -Dextname -DFORTRANUNDERSCORE -DIBMR2Fortran -Dappendus -D_LARGE_FILES</ADD_CPPDEFS></em><br /><em>  <ADD_CFLAGS> -qarch=auto -qtune=auto -qcache=auto </ADD_CFLAGS></em><br /><em>  <ADD_FFLAGS> -qarch=auto -qtune=auto -qcache=auto -qextname=flush,chdir,gptlfinalize,gptldisable </ADD_FFLAGS></em><br /><em>  <LDFLAGS>-L/usr/local/apps/netcdf4/4.1.3/LP64/lib -lnetcdff -lnetcdf -lnetcdf_c++ -L/usr/local/apps/hdf5/1.8.9/LP64/lib -L/usr/local/apps/szip/2.1/LP64/lib -lsz </LDFLAGS></em><br /><em>  <NETCDF_PATH>/usr/local/apps/netcdf4/4.1.3/LP64</NETCDF_PATH></em><br /><em>  <ADD_SLIBS> -L/usr/local/apps/netcdf4/4.1.3/LP64/lib -lnetcdff -lnetcdf -L/usr/local/apps/hdf5/1.8.9/LP64/lib -L/usr/local/apps/zlib/1.2.6/LP64/lib -lhdf5_hl -lhdf5 -lz</ADD_SLIBS></em><br /><em></compiler></em><br /><br />and the errors are:<br /><br /><em>mpxlf90_r  -o /scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/cesm.exe ccsm_comp_mod.o ccsm_driver.o mrg_mod.o seq_avdata_mod.o seq_diag_mct.o seq_domain_mct.o seq_flux_mct.o seq_frac_mct.o seq_hist_mod.o seq_map_esmf.o seq_map_mod.o seq_mctext_mod.o seq_rest_mod.o  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -latm  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -lice  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -llnd  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -locn  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -lrof  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -lglc  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -lwav -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib -lcsm_share  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/mct/mct -lmct -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/mct/mpeu -lmpeu -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/pio -lpio -lgptl -L/usr/local/apps/netcdf4/4.1.3/LP64/lib -lnetcdff -lnetcdf -L/usr/local/apps/hdf5/1.8.9/LP64/lib -L/usr/local/apps/zlib/1.2.6/LP64/lib -lhdf5_hl -lhdf5 -lz -lmass   -L/usr/local/apps/netcdf4/4.1.3/LP64/lib -lnetcdff -lnetcdf -lnetcdf_c++ -L/usr/local/apps/hdf5/1.8.9/LP64/lib -L/usr/local/apps/szip/2.1/LP64/lib -lsz </em><br /><em>ld: 0711-317 ERROR: Undefined symbol: .flush__</em><br /><em>ld: 0711-317 ERROR: Undefined symbol: .chdir_</em><br /><em>ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.</em><br /><em>gmake: *** [/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/cesm.exe] Error 8</em><br /><br /><br />Best regards
 
Dear jedwards,thank you for the quick reply. Unfortunately I got the same error after adding the
Code:
-qextname=flush,chdir,gptlfinalize,gptldisable<br /><br />in the config_compilers.xml.<br /><br />my configuration in the file is:<br /><br /><em><compiler COMPILER="ibm" MACH="c2aECMWF"></em><br /><em>  <SFC> xlf90_r </SFC></em><br /><em>  <MPIFC> mpxlf90_r </MPIFC></em><br /><em>  <SCC> xlC </SCC></em><br /><em>  <MPICC> mpcc_r </MPICC>  </em><br /><em>  <ADD_CPPDEFS> -DAIX -DIBM -Dextname -DFORTRANUNDERSCORE -DIBMR2Fortran -Dappendus -D_LARGE_FILES</ADD_CPPDEFS></em><br /><em>  <ADD_CFLAGS> -qarch=auto -qtune=auto -qcache=auto </ADD_CFLAGS></em><br /><em>  <ADD_FFLAGS> -qarch=auto -qtune=auto -qcache=auto -qextname=flush,chdir,gptlfinalize,gptldisable </ADD_FFLAGS></em><br /><em>  <LDFLAGS>-L/usr/local/apps/netcdf4/4.1.3/LP64/lib -lnetcdff -lnetcdf -lnetcdf_c++ -L/usr/local/apps/hdf5/1.8.9/LP64/lib -L/usr/local/apps/szip/2.1/LP64/lib -lsz </LDFLAGS></em><br /><em>  <NETCDF_PATH>/usr/local/apps/netcdf4/4.1.3/LP64</NETCDF_PATH></em><br /><em>  <ADD_SLIBS> -L/usr/local/apps/netcdf4/4.1.3/LP64/lib -lnetcdff -lnetcdf -L/usr/local/apps/hdf5/1.8.9/LP64/lib -L/usr/local/apps/zlib/1.2.6/LP64/lib -lhdf5_hl -lhdf5 -lz</ADD_SLIBS></em><br /><em></compiler></em><br /><br />and the errors are:<br /><br /><em>mpxlf90_r  -o /scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/cesm.exe ccsm_comp_mod.o ccsm_driver.o mrg_mod.o seq_avdata_mod.o seq_diag_mct.o seq_domain_mct.o seq_flux_mct.o seq_frac_mct.o seq_hist_mod.o seq_map_esmf.o seq_map_mod.o seq_mctext_mod.o seq_rest_mod.o  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -latm  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -lice  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -llnd  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -locn  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -lrof  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -lglc  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -lwav -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib -lcsm_share  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/mct/mct -lmct -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/mct/mpeu -lmpeu -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/pio -lpio -lgptl -L/usr/local/apps/netcdf4/4.1.3/LP64/lib -lnetcdff -lnetcdf -L/usr/local/apps/hdf5/1.8.9/LP64/lib -L/usr/local/apps/zlib/1.2.6/LP64/lib -lhdf5_hl -lhdf5 -lz -lmass   -L/usr/local/apps/netcdf4/4.1.3/LP64/lib -lnetcdff -lnetcdf -lnetcdf_c++ -L/usr/local/apps/hdf5/1.8.9/LP64/lib -L/usr/local/apps/szip/2.1/LP64/lib -lsz </em><br /><em>ld: 0711-317 ERROR: Undefined symbol: .flush__</em><br /><em>ld: 0711-317 ERROR: Undefined symbol: .chdir_</em><br /><em>ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.</em><br /><em>gmake: *** [/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/cesm.exe] Error 8</em><br /><br /><br />Best regards
 
Dear jedwards,thank you for the quick reply. Unfortunately I got the same error after adding the
Code:
-qextname=flush,chdir,gptlfinalize,gptldisable<br /><br />in the config_compilers.xml.<br /><br />my configuration in the file is:<br /><br /><em><compiler COMPILER="ibm" MACH="c2aECMWF"></em><br /><em>  <SFC> xlf90_r </SFC></em><br /><em>  <MPIFC> mpxlf90_r </MPIFC></em><br /><em>  <SCC> xlC </SCC></em><br /><em>  <MPICC> mpcc_r </MPICC>  </em><br /><em>  <ADD_CPPDEFS> -DAIX -DIBM -Dextname -DFORTRANUNDERSCORE -DIBMR2Fortran -Dappendus -D_LARGE_FILES</ADD_CPPDEFS></em><br /><em>  <ADD_CFLAGS> -qarch=auto -qtune=auto -qcache=auto </ADD_CFLAGS></em><br /><em>  <ADD_FFLAGS> -qarch=auto -qtune=auto -qcache=auto -qextname=flush,chdir,gptlfinalize,gptldisable </ADD_FFLAGS></em><br /><em>  <LDFLAGS>-L/usr/local/apps/netcdf4/4.1.3/LP64/lib -lnetcdff -lnetcdf -lnetcdf_c++ -L/usr/local/apps/hdf5/1.8.9/LP64/lib -L/usr/local/apps/szip/2.1/LP64/lib -lsz </LDFLAGS></em><br /><em>  <NETCDF_PATH>/usr/local/apps/netcdf4/4.1.3/LP64</NETCDF_PATH></em><br /><em>  <ADD_SLIBS> -L/usr/local/apps/netcdf4/4.1.3/LP64/lib -lnetcdff -lnetcdf -L/usr/local/apps/hdf5/1.8.9/LP64/lib -L/usr/local/apps/zlib/1.2.6/LP64/lib -lhdf5_hl -lhdf5 -lz</ADD_SLIBS></em><br /><em></compiler></em><br /><br />and the errors are:<br /><br /><em>mpxlf90_r  -o /scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/cesm.exe ccsm_comp_mod.o ccsm_driver.o mrg_mod.o seq_avdata_mod.o seq_diag_mct.o seq_domain_mct.o seq_flux_mct.o seq_frac_mct.o seq_hist_mod.o seq_map_esmf.o seq_map_mod.o seq_mctext_mod.o seq_rest_mod.o  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -latm  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -lice  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -llnd  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -locn  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -lrof  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -lglc  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -lwav -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib -lcsm_share  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/mct/mct -lmct -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/mct/mpeu -lmpeu -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/pio -lpio -lgptl -L/usr/local/apps/netcdf4/4.1.3/LP64/lib -lnetcdff -lnetcdf -L/usr/local/apps/hdf5/1.8.9/LP64/lib -L/usr/local/apps/zlib/1.2.6/LP64/lib -lhdf5_hl -lhdf5 -lz -lmass   -L/usr/local/apps/netcdf4/4.1.3/LP64/lib -lnetcdff -lnetcdf -lnetcdf_c++ -L/usr/local/apps/hdf5/1.8.9/LP64/lib -L/usr/local/apps/szip/2.1/LP64/lib -lsz </em><br /><em>ld: 0711-317 ERROR: Undefined symbol: .flush__</em><br /><em>ld: 0711-317 ERROR: Undefined symbol: .chdir_</em><br /><em>ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.</em><br /><em>gmake: *** [/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/cesm.exe] Error 8</em><br /><br /><br />Best regards
 
Dear jedwards,thank you for the quick reply. Unfortunately I got the same error after adding the
Code:
-qextname=flush,chdir,gptlfinalize,gptldisable<br /><br />in the config_compilers.xml.<br /><br />my configuration in the file is:<br /><br /><em><compiler COMPILER="ibm" MACH="c2aECMWF"></em><br /><em>  <SFC> xlf90_r </SFC></em><br /><em>  <MPIFC> mpxlf90_r </MPIFC></em><br /><em>  <SCC> xlC </SCC></em><br /><em>  <MPICC> mpcc_r </MPICC>  </em><br /><em>  <ADD_CPPDEFS> -DAIX -DIBM -Dextname -DFORTRANUNDERSCORE -DIBMR2Fortran -Dappendus -D_LARGE_FILES</ADD_CPPDEFS></em><br /><em>  <ADD_CFLAGS> -qarch=auto -qtune=auto -qcache=auto </ADD_CFLAGS></em><br /><em>  <ADD_FFLAGS> -qarch=auto -qtune=auto -qcache=auto -qextname=flush,chdir,gptlfinalize,gptldisable </ADD_FFLAGS></em><br /><em>  <LDFLAGS>-L/usr/local/apps/netcdf4/4.1.3/LP64/lib -lnetcdff -lnetcdf -lnetcdf_c++ -L/usr/local/apps/hdf5/1.8.9/LP64/lib -L/usr/local/apps/szip/2.1/LP64/lib -lsz </LDFLAGS></em><br /><em>  <NETCDF_PATH>/usr/local/apps/netcdf4/4.1.3/LP64</NETCDF_PATH></em><br /><em>  <ADD_SLIBS> -L/usr/local/apps/netcdf4/4.1.3/LP64/lib -lnetcdff -lnetcdf -L/usr/local/apps/hdf5/1.8.9/LP64/lib -L/usr/local/apps/zlib/1.2.6/LP64/lib -lhdf5_hl -lhdf5 -lz</ADD_SLIBS></em><br /><em></compiler></em><br /><br />and the errors are:<br /><br /><em>mpxlf90_r  -o /scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/cesm.exe ccsm_comp_mod.o ccsm_driver.o mrg_mod.o seq_avdata_mod.o seq_diag_mct.o seq_domain_mct.o seq_flux_mct.o seq_frac_mct.o seq_hist_mod.o seq_map_esmf.o seq_map_mod.o seq_mctext_mod.o seq_rest_mod.o  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -latm  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -lice  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -llnd  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -locn  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -lrof  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -lglc  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib/ -lwav -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/lib -lcsm_share  -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/mct/mct -lmct -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/mct/mpeu -lmpeu -L/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/pio -lpio -lgptl -L/usr/local/apps/netcdf4/4.1.3/LP64/lib -lnetcdff -lnetcdf -L/usr/local/apps/hdf5/1.8.9/LP64/lib -L/usr/local/apps/zlib/1.2.6/LP64/lib -lhdf5_hl -lhdf5 -lz -lmass   -L/usr/local/apps/netcdf4/4.1.3/LP64/lib -lnetcdff -lnetcdf -lnetcdf_c++ -L/usr/local/apps/hdf5/1.8.9/LP64/lib -L/usr/local/apps/szip/2.1/LP64/lib -lsz </em><br /><em>ld: 0711-317 ERROR: Undefined symbol: .flush__</em><br /><em>ld: 0711-317 ERROR: Undefined symbol: .chdir_</em><br /><em>ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.</em><br /><em>gmake: *** [/scratch/ms/jrc/jry/AbdullaCLM/jry/EUCase/bld/cesm.exe] Error 8</em><br /><br /><br />Best regards
 

jedwards

CSEG and Liaisons
Staff member
Did you start from a clean case after making this change?   You didn't send me enough of the log file to see what's going on.  You should have -DCPRIBM in your Macros file. 
 

jedwards

CSEG and Liaisons
Staff member
Did you start from a clean case after making this change?   You didn't send me enough of the log file to see what's going on.  You should have -DCPRIBM in your Macros file. 
 

jedwards

CSEG and Liaisons
Staff member
Did you start from a clean case after making this change?   You didn't send me enough of the log file to see what's going on.  You should have -DCPRIBM in your Macros file. 
 

jedwards

CSEG and Liaisons
Staff member
Did you start from a clean case after making this change?   You didn't send me enough of the log file to see what's going on.  You should have -DCPRIBM in your Macros file. 
 
Top