<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to bugs</title><link href="https://sourceforge.net/p/destral/bugs/" rel="alternate"/><link href="https://sourceforge.net/p/destral/bugs/feed.atom" rel="self"/><id>https://sourceforge.net/p/destral/bugs/</id><updated>2008-01-28T22:05:04Z</updated><subtitle>Recent changes to bugs</subtitle><entry><title>cmake failure without a C++ compiler installed</title><link href="https://sourceforge.net/p/destral/bugs/1/" rel="alternate"/><published>2008-01-28T22:05:04Z</published><updated>2008-01-28T22:05:04Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.netf744e10b8a09ae9b777a47a6c7e2436475a66af1</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Destral is pure C code, but cmake won't work if a C++ compiler is not installed.&lt;/p&gt;
&lt;p&gt;cmake output:&lt;br /&gt;
--------8&amp;lt;----------------------------------&lt;br /&gt;
-- Check for working C compiler: /usr/bin/gcc&lt;br /&gt;
-- Check for working C compiler: /usr/bin/gcc -- works&lt;br /&gt;
-- Check size of void*&lt;br /&gt;
-- Check size of void* - done&lt;br /&gt;
-- Check for working CXX compiler: CMAKE_CXX_COMPILER-NOTFOUND&lt;br /&gt;
CMake Error: your CXX compiler: "CMAKE_CXX_COMPILER-NOTFOUND" was not found.   Please set CMAKE_CXX_COMPILER to a valid compiler path or name.&lt;br /&gt;
CMake Error: Internal CMake error, TryCompile configure of cmake failed&lt;br /&gt;
-- Check for working CXX compiler: CMAKE_CXX_COMPILER-NOTFOUND -- broken&lt;br /&gt;
CMake Error: The C++ compiler "CMAKE_CXX_COMPILER-NOTFOUND" is not able to compile a simple test program.&lt;br /&gt;
It fails with the following output: &lt;/p&gt;
&lt;p&gt;CMake will not be able to correctly generate this project.&lt;br /&gt;
CMake Error: your CXX compiler: "CMAKE_CXX_COMPILER-NOTFOUND" was not found.   Please set CMAKE_CXX_COMPILER to a valid compiler path or name.&lt;br /&gt;
-- Configuring done&lt;br /&gt;
--------8&amp;lt;----------------------------------&lt;/p&gt;
&lt;p&gt;Fix:&lt;/p&gt;
&lt;p&gt;=== modified file 'CMakeLists.txt'&lt;br /&gt;
--- CMakeLists.txt      2008-01-26 14:37:17 +0000&lt;br /&gt;
+++ CMakeLists.txt      2008-01-28 20:47:03 +0000&lt;br /&gt;
@@ -1,4 +1,4 @@&lt;br /&gt;
-PROJECT(destral)&lt;br /&gt;
+PROJECT(destral C)&lt;/p&gt;
&lt;p&gt;ADD_EXECUTABLE(destral destral.c scalpel.c)&lt;/p&gt;
&lt;p&gt;Or, install a C++ compiler... ;-)&lt;/p&gt;
&lt;p&gt;Saludos :-)&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>