<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
</style>
</head>
<body class='hmmessage'>
The error has changed ;-) No seriously, I stll get an error buiding with CMake:<br><br>/usr/lib/gcc/x86_64-pc-linux-gnu/4.1.2/../../../../lib64/crt1.o: In function `_start':<br>(.text+0x20): undefined reference to `main'<br><br>Building from the command line works perfect, so I looked what libraries the executable is linked to:<br><br>&nbsp;linux-vdso.so.1 =&gt;&nbsp; (0x00007fff331ff000)<br>&nbsp;libgfortran.so.1 =&gt; /usr/lib/gcc/x86_64-pc-linux-gnu/4.1.2/libgfortran.so.1 (0x00007ff22ac5e000)<br>&nbsp;libstdc++.so.6 =&gt; /usr/lib/gcc/x86_64-pc-linux-gnu/4.1.2/libstdc++.so.6 (0x00007ff22a962000)<br>&nbsp;libm.so.6 =&gt; /lib/libm.so.6 (0x00007ff22a6e1000)<br>&nbsp;libgcc_s.so.1 =&gt; /lib/libgcc_s.so.1 (0x00007ff22a4d4000)<br>&nbsp;libc.so.6 =&gt; /lib/libc.so.6 (0x00007ff22a195000)<br>&nbsp;/lib64/ld-linux-x86-64.so.2 (0x00007ff22aef7000)<br><br>The only library I tell CMake to link to is libgfortran.so. What libraries does CMake usually link to, without specifying?<br><br>greets,<br>Natalie<br><br>&gt; Date: Wed, 10 Jun 2009 02:38:58 -0700<br>&gt; From: denis_scherbakov@yahoo.com<br>&gt; Subject: RE: [CMake] FW: building a mixed language programm with CMake<br>&gt; To: nataliehapp@hotmail.com<br>&gt; CC: cmake@cmake.org<br>&gt; <br>&gt; <br>&gt; &gt; Thanks, that helped, but I still have troubles to set the<br>&gt; &gt; options right:<br>&gt; &gt; Compiling my code "manually", it takes the<br>&gt; &gt; following commands:<br>&gt; &gt; <br>&gt; &gt; gfortran -c hello.f90<br>&gt; &gt; g++ -lgfortran hello.o test.cxx -o test<br>&gt; <br>&gt; Actually this should look like:<br>&gt; gfortran -c hello.f90<br>&gt; g++ -c test.cxx<br>&gt; g++ -lgfortran hello.o test.o -o test<br>&gt;  <br>&gt; &gt; Well, that´s my CMakeLists.txt for now:<br>&gt; &gt; <br>&gt; &gt; cmake_minimum_required(VERSION 2.4)<br>&gt; &gt; project(TEST Fortran)<br>&gt; &gt; <br>&gt; &gt; SET(TEST_SRCS test.cxx)<br>&gt; &gt; SET(OBJECTS hello.f90)<br>&gt; <br>&gt; You need to work only with sources. Forget about object files.<br>&gt; Here is your CMakeLists.txt:<br>&gt; <br>&gt; CMAKE_MINIMUM_REQUIRED(VERSION 2.6)<br>&gt; PROJECT(TEST Fortran)<br>&gt; <br>&gt; SET(TEST_SRCS test.cxx hello.f90)<br>&gt;  <br>&gt; ADD_EXECUTABLE(test  ${TEST_SRCS})<br>&gt; TARGET_LINK_LIBRARIES(test  gfortran)<br>&gt; <br>&gt; <br>&gt; # NOT NEDDED: SET_TARGET_PROPERTIES(hi PROPERTIES LINKER_LANGUAGE C)<br>&gt; # NOT NEEDED: CMAKE_EXE_LINKER_FLAGS: -lgfortran -o<br>&gt; # Only if you have one more fortran compiler: CMAKE_Fortran_COMPILER: /usr/bin/gfortran<br>&gt; # NOT NEEDED: CMAKE_Fortran_FLAGS: -c<br>&gt; <br>&gt; &gt; which looks fine, but if my executable is build, where does<br>&gt; &gt; it go? I set the EXECUTABLE_OUTPUT_PATH to the directory<br>&gt; &gt; I´m working in,<br>&gt; &gt; but the executable "hi" does not show up..<br>&gt; <br>&gt; Compiled executable now is in build directory. In your case it should<br>&gt; be in current directory.<br>&gt;  <br>&gt; Please, reply to all, so CMake mailing list gets also included.<br>&gt; <br>&gt; Denis<br>&gt; <br>&gt; <br>&gt; <br>&gt;       <br><br /><hr />Nuevo Internet Explorer 8  <a href='http://www.ie8.msn.com/microsoft/internet-explorer-8/es-xl/ie8.aspx' target='_new'>ĦEs Gratis y optimizado para MSN!</a></body>
</html>