<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: MPI_Status_f2c and MPI_Status_c2f  undefined references in Intel MPI 2021.12 in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Status-f2c-and-MPI-Status-c2f-undefined-references-in-Intel/m-p/1593878#M11682</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/245425"&gt;@TobiasK&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get the same problem. The symbol is missing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt; $ mv statusc2f.c statusc2f.cpp

 $ mpiicpx -o statusc2f statusc2f.cpp
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /tmp/icpx-3554b074ae/statusc2f-5e7312.o: in function `main':
statusc2f.cpp:(.text+0x2f): undefined reference to `MPI_Status_c2f'
icpx: error: linker command failed with exit code 1 (use -v to see invocation)&lt;/LI-CODE&gt;</description>
    <pubDate>Tue, 30 Apr 2024 14:10:01 GMT</pubDate>
    <dc:creator>Louise-Linaro</dc:creator>
    <dc:date>2024-04-30T14:10:01Z</dc:date>
    <item>
      <title>MPI_Status_f2c and MPI_Status_c2f  undefined references in Intel MPI 2021.12</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Status-f2c-and-MPI-Status-c2f-undefined-references-in-Intel/m-p/1593551#M11678</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Compilation:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt; $ mpiicc -o statusf2c statusf2c.c 
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /tmp/icx-ef92159ca4/statusf2c-1d1ec7.o: in function `main':
statusf2c.c:(.text+0x2f): undefined reference to `MPI_Status_f2c'
icx: error: linker command failed with exit code 1 (use -v to see invocation)

 $ mpiicc -v
mpiicx for the Intel(R) MPI Library @IMPI_OFFICIALVERSION@ for Linux*
Copyright Intel Corporation.
Intel(R) oneAPI DPC++/C++ Compiler 2024.1.0 (2024.1.0.20240308)
Target: x86_64-unknown-linux-gnu
Thread model: posix&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;statusf2c.c&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;#include "mpi.h"

int main(int argc, char* argv[])
{
    MPI_Init(&amp;amp;argc, &amp;amp;argv);

    const MPI_Fint *f_status;
    MPI_Status *c_status;

    MPI_Status_f2c(f_status, c_status);

    MPI_Finalize();
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Compilation:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt; $ mpiicc -o statusc2f statusc2f.c 
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /tmp/icx-c05bcc98a2/statusc2f-14ef22.o: in function `main':
statusc2f.c:(.text+0x2f): undefined reference to `MPI_Status_c2f'
icx: error: linker command failed with exit code 1 (use -v to see invocation)&lt;/LI-CODE&gt;&lt;P&gt;statusc2f.c&lt;/P&gt;&lt;LI-CODE lang="markup"&gt; $ cat statusc2f.c 
#include "mpi.h"

int main(int argc, char* argv[])
{
    MPI_Init(&amp;amp;argc, &amp;amp;argv);

    MPI_Fint *f_status;
    const MPI_Status *c_status;

    MPI_Status_c2f(c_status, f_status);

    MPI_Finalize();
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Started failing with Intel MPI 2021.12&lt;/P&gt;&lt;P&gt;Not previously failing with Intel MPI 2021.11.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2024 16:07:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-Status-f2c-and-MPI-Status-c2f-undefined-references-in-Intel/m-p/1593551#M11678</guid>
      <dc:creator>Louise-Linaro</dc:creator>
      <dc:date>2024-04-29T16:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: MPI_Status_f2c and MPI_Status_c2f  undefined references in Intel MPI 2021.12</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Status-f2c-and-MPI-Status-c2f-undefined-references-in-Intel/m-p/1593873#M11681</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/311259"&gt;@Louise-Linaro&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please use&lt;BR /&gt;mpiicx instead of mpiicc?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Apr 2024 13:56:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-Status-f2c-and-MPI-Status-c2f-undefined-references-in-Intel/m-p/1593873#M11681</guid>
      <dc:creator>TobiasK</dc:creator>
      <dc:date>2024-04-30T13:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: MPI_Status_f2c and MPI_Status_c2f  undefined references in Intel MPI 2021.12</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Status-f2c-and-MPI-Status-c2f-undefined-references-in-Intel/m-p/1593878#M11682</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/245425"&gt;@TobiasK&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get the same problem. The symbol is missing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt; $ mv statusc2f.c statusc2f.cpp

 $ mpiicpx -o statusc2f statusc2f.cpp
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /tmp/icpx-3554b074ae/statusc2f-5e7312.o: in function `main':
statusc2f.cpp:(.text+0x2f): undefined reference to `MPI_Status_c2f'
icpx: error: linker command failed with exit code 1 (use -v to see invocation)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 30 Apr 2024 14:10:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-Status-f2c-and-MPI-Status-c2f-undefined-references-in-Intel/m-p/1593878#M11682</guid>
      <dc:creator>Louise-Linaro</dc:creator>
      <dc:date>2024-04-30T14:10:01Z</dc:date>
    </item>
    <item>
      <title>Re:MPI_Status_f2c and MPI_Status_c2f  undefined references in Intel MPI 2021.12</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Status-f2c-and-MPI-Status-c2f-undefined-references-in-Intel/m-p/1593908#M11684</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/311259"&gt;@Louise-Linaro&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;actually we just put a patch release online that fixes this issue, please update to 2021.12.1:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/developer/articles/tool/oneapi-standalone-components.html#mpi" target="_blank"&gt;https://www.intel.com/content/www/us/en/developer/articles/tool/oneapi-standalone-components.html#mpi&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Apr 2024 15:42:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-Status-f2c-and-MPI-Status-c2f-undefined-references-in-Intel/m-p/1593908#M11684</guid>
      <dc:creator>TobiasK</dc:creator>
      <dc:date>2024-04-30T15:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: Re:MPI_Status_f2c and MPI_Status_c2f  undefined references in Intel MPI 2021.12</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Status-f2c-and-MPI-Status-c2f-undefined-references-in-Intel/m-p/1594402#M11689</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/245425"&gt;@TobiasK&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes my issue was resolved with 2021.12.1&lt;/P&gt;</description>
      <pubDate>Thu, 02 May 2024 08:35:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-Status-f2c-and-MPI-Status-c2f-undefined-references-in-Intel/m-p/1594402#M11689</guid>
      <dc:creator>Louise-Linaro</dc:creator>
      <dc:date>2024-05-02T08:35:09Z</dc:date>
    </item>
    <item>
      <title>Re:MPI_Status_f2c and MPI_Status_c2f  undefined references in Intel MPI 2021.12</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Status-f2c-and-MPI-Status-c2f-undefined-references-in-Intel/m-p/1594403#M11690</link>
      <description>&lt;P&gt;Thanks for the confirmation!&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 May 2024 08:38:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-Status-f2c-and-MPI-Status-c2f-undefined-references-in-Intel/m-p/1594403#M11690</guid>
      <dc:creator>TobiasK</dc:creator>
      <dc:date>2024-05-02T08:38:50Z</dc:date>
    </item>
  </channel>
</rss>

