Displaying 5 results from an estimated 5 matches for "checkincludefile".
2016 Sep 16
5
(Thin)LTO llvm build
...and error files?
>
> CMake is very good at not presenting the real issue…
> Here it is trying to build very simple programs to check features
> availability. Like:
>
> #include <strings.h>
> int main() { ffs(0); return 0; }
In CMakeError.log there are errors like:
CheckIncludeFile.c:1:10: fatal error: 'malloc/malloc.h' file not found
#include <malloc/malloc.h>
...
CheckIncludeFile.c:1:10: fatal error: 'ndir.h' file not found
#include <ndir.h>
...
CheckIncludeFile.c:1:10: fatal error: 'sys/ndir.h' file not found
#include <sys/ndir.h&...
2016 Sep 16
2
(Thin)LTO llvm build
...issue…
>>> Here it is trying to build very simple programs to check features
>>> availability. Like:
>>>
>>> #include <strings.h>
>>> int main() { ffs(0); return 0; }
>>
>> In CMakeError.log there are errors like:
>>
>> CheckIncludeFile.c:1:10: fatal error: 'malloc/malloc.h' file not found
>> #include <malloc/malloc.h>
>>
>> ...
>>
>> CheckIncludeFile.c:1:10: fatal error: 'ndir.h' file not found
>> #include <ndir.h>
>>
>> ...
>>
>> CheckInc...
2016 Sep 20
4
(Thin)LTO llvm build
...sue…
>>> Here it is trying to build very simple programs to check features
>>> availability. Like:
>>>
>>> #include <strings.h>
>>> int main() { ffs(0); return 0; }
>>
>> In CMakeError.log there are errors like:
>>
>> CheckIncludeFile.c:1:10: fatal error: 'malloc/malloc.h' file not found
>> #include <malloc/malloc.h>
>>
>> ...
>>
>> CheckIncludeFile.c:1:10: fatal error: 'ndir.h' file not found
>> #include <ndir.h>
>>
>> ...
>>
>> CheckInc...
2016 Sep 16
4
(Thin)LTO llvm build
On Fri, Sep 16, 2016 at 10:18 PM, Teresa Johnson <tejohnson at google.com> wrote:
>
> Cc'ing llvm-dev again in case someone knows what is going on.
>
> That error is coming from a polly configure script, which I don't
> have cloned into my own tree. Not sure why polly would behave
> differently when configuring for ThinLTO. Does polly configure ok
> when
2017 May 29
0
[PATCH] Add CMake build script
...git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..06a38a2
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,439 @@
+cmake_minimum_required(VERSION 3.1)
+
+project(speex VERSION 1.2.0 LANGUAGES C)
+
+set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/")
+
+include(CheckIncludeFile)
+include(CheckSymbolExists)
+include(CheckLibraryExists)
+include(CMakeDependentOption)
+include(FeatureSummary)
+include(TestVarArrays)
+include(CheckCCompilerFlag)
+include(GNUInstallDirs)
+include(TestBigEndian)
+
+test_big_endian(WORDS_BIGENDIAN)
+
+check_include_file(inttypes.h HAVE_INTTYPES_...