Hello,<br><br>I&#39;m compiling WRF-Var (V3.1.1) with the ifort compiler on a SGI
Altix and did have some problems. I found that the problem is related
to the endianness of the buffer library.<br><br>I added the line &quot;call openbf(lnbufr, &#39;QUIET&#39;, 2)&quot; to the file &quot;var/da/da_radiance/da_read_<div id=":16e" class="ii gt">obs_bufrtovs.inc&quot; (before the line &quot;call openbf(lnbufr,&#39;IN&#39;,lnbufr)&quot;) and did get the following output:<br>


<br>=============== WELCOME TO BUFR ARCHIVE LIBRARY ===============<br>MACHINE CHARACTERISTICS: NUMBER OF BYTES PER WORD = 4, NUMBER OF BITS PER WORD = 32,<br>                         BYTE ORDER IS LITTLE ENDIAN (NREV= 1, IORD=4321****),<br>


                         ASCII  IS THE NATIVE LANGUAGE<br>============== VERSION: 2007-01-19 ==============<br><br><br>The
bufr library (embedded in the WRF-Var code) was compiled to work with
little_endian files, but the parameter &quot;-convert big_endian&quot; on the
configure file forces the &quot;amsua.bufr&quot; file to be open converted to
&quot;big_endian&quot; causing the following error message when trying to read
the &quot;amsua.bufr&quot; file unblocked and re-blocked with the &quot;cwordsh&quot;
program:<br>
<br> **************BUFR ARCHIVE LIBRARY ABORT*****************<br> BUFRLIB: OPENBF - ERROR READING INPUT FILE CONNECTED TO UNIT  26 WHEN CHECKING<br> FOR &#39;BUFR&#39; IN FIRST 4 BYTES OF RECORD<br> **************BUFR ARCHIVE LIBRARY ABORT*****************<br>


<br><br>I&#39;m not sure if is safe to remove the &#39;-convert big_endian&#39;
parameter from the configure file, so I forced the &#39;amsua.bufr&#39; file to
be open converted to &#39;little_endian&#39; adding &quot;convert = &#39;LITTLE_ENDIAN&#39;&quot;
to the line 159 of the file &quot;var/da/da_radiance/da_read_obs_bufrtovs.inc&quot;:<br>
<br>open(unit=lnbufr,file=trim(infile),form=&#39;unformatted&#39;, &amp;<br>      iostat = iost, status = &#39;old&#39;, convert = &#39;LITTLE_ENDIAN&#39;)<br><br>It seems to work...<br><br>Alex<br></div>