Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

AR=INTERNAL_BUILD_ERROR_SHOULD_NOT_NEED_AR

Emanuell

New member
I tried to compile the em_real case but I get this error, and I don't find any information that helps

I used these modules
compiler/2022.0.2
openmpi/4.1.2_gcc-11.2.0
gcc/11.2.0
curl/7.77.0_gcc-9.3.0

And with these dependencies versions
zlib-1.2.11
libpng-1.6.37
hdf5-1.12.0.
netcdf-c/v4.7.4
netcdf-fortran/v4.5.3
jasper-1.900.29
jpegsrc.v9e

Also I did this in the WRF folder before executing ./configure
cd arch
vim Config.pl
and change $I_really_want_to_output_grib2_from_WRF = "FALSE" ;
to
$I_really_want_to_output_grib2_from_WRF = "TRUE" ;

After executing ./configure with options 34 and 1
I edit configure.wrf file
changed this line
FC = time $(DM_FC)
to
FC = $(DM_FC)
 

Attachments

  • compile.log
    697.9 KB · Views: 2
The first errors in your log file are
Code:
gcc  -I. -w -O3 -c   -DDM_PARALLEL -DLANDREAD_STUB=1 -DMAX_HISTORY=25 -DNMM_CORE=0 -I/home/etorresl/wrf_lib_gcc/include   -c enc_jpeg2000.c
gcc  -I. -w -O3 -c   -DDM_PARALLEL -DLANDREAD_STUB=1 -DMAX_HISTORY=25 -DNMM_CORE=0 -I/home/etorresl/wrf_lib_gcc/include   -c dec_jpeg2000.c
dec_jpeg2000.c:4:10: fatal error: jasper/jasper.h: No such file or directory
    4 | #include "jasper/jasper.h"
      |          ^~~~~~~~~~~~~~~~~
enc_jpeg2000.c:4:10: fatal error: jasper/jasper.h: No such file or directory
    4 | #include "jasper/jasper.h"
      |          ^~~~~~~~~~~~~~~~~
compilation terminated.
compilation terminated.
make[5]: [../../io_grib_share/build/compile_rules.mk:31: enc_jpeg2000.o] Error 1 (ignored)
make[5]: [../../io_grib_share/build/compile_rules.mk:31: dec_jpeg2000.o] Error 1 (ignored)

It seems like the jasper directory you provided isn't correct or that the include is not in the expected location.
 
Top