Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Looking for _NSGetEnviron ( Debian ) - not found on 1.3, 1.4, master #53

Closed
OlegJakushkin opened this issue Jan 15, 2014 · 2 comments
Closed
Labels
Milestone

Comments

@OlegJakushkin
Copy link

On:
PRETTY_NAME="Debian GNU/Linux 7 (wheezy)"
NAME="Debian GNU/Linux"
VERSION_ID="7"
VERSION="7 (wheezy)"
ID=debian
ANSI_COLOR="1;31"
HOME_URL="http://www.debian.org/"
SUPPORT_URL="http://www.debian.org/support/"
BUG_REPORT_URL="http://bugs.debian.org/"

With cmake2.8.12 and same with 2.8.8 I get:
2014-01-15 19:57:05 oj@fatman ~/clang-tools/Bear-1.4/build $ cmake ..
-- The C compiler identification is GNU 4.7.2
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.26")
-- checking for module 'libconfig>=1.4'
-- package 'libconfig>=1.4' not found
CMake Error at /usr/local/share/cmake-2.8/Modules/FindPkgConfig.cmake:279 (message):
A required package was not found
Call Stack (most recent call first):
/usr/local/share/cmake-2.8/Modules/FindPkgConfig.cmake:333 (_pkg_check_modules_internal)
CMakeLists.txt:22 (pkg_check_modules)

-- Try C99 C flag = [ ]
-- Performing Test C99_FLAG_DETECTED
-- Performing Test C99_FLAG_DETECTED - Failed
-- Try C99 C flag = [-std=c99]
-- Performing Test C99_FLAG_DETECTED
-- Performing Test C99_FLAG_DETECTED - Success
-- Looking for vfork
-- Looking for vfork - found
-- Looking for execve
-- Looking for execve - found
-- Looking for execv
-- Looking for execv - found
-- Looking for execvpe
-- Looking for execvpe - found
-- Looking for execvp
-- Looking for execvp - found
-- Looking for execvP
-- Looking for execvP - not found
-- Looking for execl
-- Looking for execl - found
-- Looking for execlp
-- Looking for execlp - found
-- Looking for execle
-- Looking for execle - found
-- Looking for posix_spawn
-- Looking for posix_spawn - found
-- Looking for posix_spawnp
-- Looking for posix_spawnp - found
-- Looking for _NSGetEnviron
-- Looking for _NSGetEnviron - not found
-- Looking for scons
-- Looking for qmake
-- Found PythonInterp: /usr/bin/python (found version "2.7.3")
-- Configuring incomplete, errors occurred!
See also "/home/ole_jak/clang-tools/Bear-1.4/build/CMakeFiles/CMakeOutput.log".
See also "/home/ole_jak/clang-tools/Bear-1.4/build/CMakeFiles/CMakeError.log".

I get this for current master, 1.4 release, 1.3 release.


CMakeError.log:
Performing C SOURCE FILE Test C99_FLAG_DETECTED failed with the following output:
Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp

Run Build Command:/usr/bin/make "cmTryCompileExec1153439699/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1153439699.dir/build.make CMakeFiles/cmTryCompileExec1153439699.dir/build
make[1]: Entering directory /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp' /usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec1153439699.dir/src.c.o /usr/bin/cc -DC99_FLAG_DETECTED -o CMakeFiles/cmTryCompileExec1153439699.dir/src.c.o -c /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/src.c /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/src.c:51:29: error: expected ‘;’, ‘,’ or ‘)’ before ‘text’ /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/src.c: In function ‘main’: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/src.c:107:18: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘newvar’ /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/src.c:107:18: error: ‘newvar’ undeclared (first use in this function) /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/src.c:107:18: note: each undeclared identifier is reported only once for each function it appears in /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/src.c:117:3: error: ‘for’ loop initial declarations are only allowed in C99 mode /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/src.c:117:3: note: use option -std=c99 or -std=gnu99 to compile your code make[1]: Leaving directory/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp'
make[1]: *** [CMakeFiles/cmTryCompileExec1153439699.dir/src.c.o] Error 1
make: *** [cmTryCompileExec1153439699/fast] Error 2

Source file was:

include <stdarg.h>

include <stdbool.h>

include <stdlib.h>

include <wchar.h>

include <stdio.h>

// Check varargs macros. These examples are taken from C99 6.10.3.5.

define debug(...) fprintf (stderr, VA_ARGS)

define showlist(...) puts (#VA_ARGS)

define report(test,...) ((test) ? puts (#test) : printf (VA_ARGS))

static void
test_varargs_macros (void)
{
int x = 1234;
int y = 5678;
debug ("Flag");
debug ("X = %d\n", x);
showlist (The first, second, and third items.);
report (x>y, "x is %d but y is %d", x, y);
}

// Check long long types.

define BIG64 18446744073709551615ull

define BIG32 4294967295ul

define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0)

if !BIG_OK

your preprocessor is broken;

endif

if BIG_OK

else

your preprocessor is broken;

endif

static long long int bignum = -9223372036854775807LL;
static unsigned long long int ubignum = BIG64;

struct incomplete_array
{
int datasize;
double data[];
};

struct named_init {
int number;
const wchar_t *name;
double average;
};

typedef const char *ccp;

static inline int
test_restrict (ccp restrict text)
{
// See if C++-style comments work.
// Iterate through items via the restricted pointer.
// Also check for declarations in for loops.
for (unsigned int i = 0; *(text+i) != '\0'; ++i)
continue;
return 0;
}

// Check varargs and va_copy.
static void
test_varargs (const char *format, ...)
{
va_list args;
va_start (args, format);
va_list args_copy;
va_copy (args_copy, args);

const char *str = NULL;
int number = 0;
float fnumber = 0.0;

while (_format)
{
switch (_format++)
{
case 's': // string
str = va_arg (args_copy, const char *);
break;
case 'd': // int
number = va_arg (args_copy, int);
break;
case 'f': // float
fnumber = va_arg (args_copy, double);
break;
default:
break;
}
}
va_end (args_copy);
va_end (args);

number = (number != 0) && (str != NULL) && (fnumber != 0.0);
}

int
main ()
{

// Check bool.
_Bool success = false;

// Check restrict.
if (test_restrict ("String literal") == 0)
success = true;
char *restrict newvar = "Another string";

// Check varargs.
test_varargs ("s, d' f .", "string", 65, 34.234);
test_varargs_macros ();

// Check flexible array members.
struct incomplete_array *ia =
malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10));
ia->datasize = 10;
for (int i = 0; i < ia->datasize; ++i)
ia->data[i] = i * 1.234;

// Check named initializers.
struct named_init ni = {
.number = 34,
.name = L"Test wide string",
.average = 543.34343,
};

ni.number = 58;

int dynamic_array[ni.number];
dynamic_array[ni.number - 1] = 543;

// work around unused variable warnings
return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x'
|| dynamic_array[ni.number - 1] != 543);

;
return 0;
}
Determining if the function execvP exists failed with the following output:
Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp

Run Build Command:/usr/bin/make "cmTryCompileExec2273797866/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2273797866.dir/build.make CMakeFiles/cmTryCompileExec2273797866.dir/build
make[1]: Entering directory /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp' /usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec2273797866.dir/CheckFunctionExists.c.o /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=execvP -o CMakeFiles/cmTryCompileExec2273797866.dir/CheckFunctionExists.c.o -c /usr/local/share/cmake-2.8/Modules/CheckFunctionExists.c Linking C executable cmTryCompileExec2273797866 /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2273797866.dir/link.txt --verbose=1 /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=execvP CMakeFiles/cmTryCompileExec2273797866.dir/CheckFunctionExists.c.o -o cmTryCompileExec2273797866 -rdynamic CMakeFiles/cmTryCompileExec2273797866.dir/CheckFunctionExists.c.o: In functionmain':
CheckFunctionExists.c:(.text+0x15): undefined reference to execvP' collect2: error: ld returned 1 exit status make[1]: Leaving directory/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp'
make[1]: *** [cmTryCompileExec2273797866] Error 1
make: *** [cmTryCompileExec2273797866/fast] Error 2

Determining if the _NSGetEnviron exist failed with the following output:
Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp

Run Build Command:/usr/bin/make "cmTryCompileExec2610045503/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2610045503.dir/build.make CMakeFiles/cmTryCompileExec2610045503.dir/build
make[1]: Entering directory /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp' /usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec2610045503.dir/CheckSymbolExists.c.o /usr/bin/cc -std=c99 -o CMakeFiles/cmTryCompileExec2610045503.dir/CheckSymbolExists.c.o -c /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:2:25: fatal error: crt_externs.h: No such file or directory compilation terminated. make[1]: *** [CMakeFiles/cmTryCompileExec2610045503.dir/CheckSymbolExists.c.o] Error 1 make[1]: Leaving directory/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp'
make: *** [cmTryCompileExec2610045503/fast] Error 2

File /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
/* */

include <crt_externs.h>

int main(int argc, char** argv)
{
(void)argv;

ifndef _NSGetEnviron

return ((int*)(&_NSGetEnviron))[argc];

else

(void)argc;
return 0;

endif

}


CMakeOutput.log:
The system is: Linux - 3.2.0-4-amd64 - x86_64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /usr/bin/cc
Build flags:
Id flags:

The output was:
0

Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"

The C compiler identification is GNU, found in "/home/oj/clang-tools/Bear-1.3/CMakeFiles/2.8.12/CompilerIdC/a.out"

Determining if the C compiler works passed with the following output:
Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp

Run Build Command:/usr/bin/make "cmTryCompileExec472759118/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec472759118.dir/build.make CMakeFiles/cmTryCompileExec472759118.dir/build
make[1]: Entering directory /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp' /usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec472759118.dir/testCCompiler.c.o /usr/bin/cc -o CMakeFiles/cmTryCompileExec472759118.dir/testCCompiler.c.o -c /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/testCCompiler.c Linking C executable cmTryCompileExec472759118 /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec472759118.dir/link.txt --verbose=1 /usr/bin/cc CMakeFiles/cmTryCompileExec472759118.dir/testCCompiler.c.o -o cmTryCompileExec472759118 -rdynamic make[1]: Leaving directory/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp'

Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp

Run Build Command:/usr/bin/make "cmTryCompileExec3819238834/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3819238834.dir/build.make CMakeFiles/cmTryCompileExec3819238834.dir/build
make[1]: Entering directory /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp' /usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec3819238834.dir/CMakeCCompilerABI.c.o /usr/bin/cc -o CMakeFiles/cmTryCompileExec3819238834.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-2.8/Modules/CMakeCCompilerABI.c Linking C executable cmTryCompileExec3819238834 /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3819238834.dir/link.txt --verbose=1 /usr/bin/cc -v CMakeFiles/cmTryCompileExec3819238834.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec3819238834 -rdynamic Using built-in specs. COLLECT_GCC=/usr/bin/cc COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Debian 4.7.2-5' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --with-arch-32=i586 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 4.7.2 (Debian 4.7.2-5) COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/ LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/ COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3819238834' '-rdynamic' '-mtune=generic' '-march=x86-64' /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --eh-frame-hdr -m elf_x86_64 --hash-style=both -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTryCompileExec3819238834 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec3819238834.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o make[1]: Leaving directory/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp'

Parsed C implicit link information from above output:
link line regex: [^( _|._[/])(ld|([^/]+-)?ld|collect2)[^/]*( |$)]
ignore line: [Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec3819238834/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec3819238834.dir/build.make CMakeFiles/cmTryCompileExec3819238834.dir/build]
ignore line: [make[1]: Entering directory `/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp']
ignore line: [/usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1]
ignore line: [Building C object CMakeFiles/cmTryCompileExec3819238834.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/cc -o CMakeFiles/cmTryCompileExec3819238834.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-2.8/Modules/CMakeCCompilerABI.c]
ignore line: [Linking C executable cmTryCompileExec3819238834]
ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3819238834.dir/link.txt --verbose=1]
ignore line: [/usr/bin/cc -v CMakeFiles/cmTryCompileExec3819238834.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec3819238834 -rdynamic ]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/cc]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Debian 4.7.2-5' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --with-arch-32=i586 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
ignore line: [Thread model: posix]
ignore line: [gcc version 4.7.2 (Debian 4.7.2-5) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3819238834' '-rdynamic' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --eh-frame-hdr -m elf_x86_64 --hash-style=both -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTryCompileExec3819238834 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec3819238834.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o]
arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/collect2] ==> ignore
arg [--sysroot=/] ==> ignore
arg [--build-id] ==> ignore
arg [--no-add-needed] ==> ignore
arg [--eh-frame-hdr] ==> ignore
arg [-m] ==> ignore
arg [elf_x86_64] ==> ignore
arg [--hash-style=both] ==> ignore
arg [-export-dynamic] ==> ignore
arg [-dynamic-linker] ==> ignore
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-o] ==> ignore
arg [cmTryCompileExec3819238834] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib]
arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
arg [-L/lib/../lib] ==> dir [/lib/../lib]
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..]
arg [CMakeFiles/cmTryCompileExec3819238834.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [--as-needed] ==> ignore
arg [-lgcc_s] ==> lib [gcc_s]
arg [--no-as-needed] ==> ignore
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [--as-needed] ==> ignore
arg [-lgcc_s] ==> lib [gcc_s]
arg [--no-as-needed] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] ==> ignore
remove lib [gcc]
remove lib [gcc_s]
remove lib [gcc]
remove lib [gcc_s]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> [/usr/lib/gcc/x86_64-linux-gnu/4.7]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> [/usr/lib]
collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
collapse library dir [/lib/../lib] ==> [/lib]
collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> [/usr/lib]
implicit libs: [c]
implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
implicit fwks: []

Performing C SOURCE FILE Test C99_FLAG_DETECTED succeded with the following output:
Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp

Run Build Command:/usr/bin/make "cmTryCompileExec508479782/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec508479782.dir/build.make CMakeFiles/cmTryCompileExec508479782.dir/build
make[1]: Entering directory /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp' /usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec508479782.dir/src.c.o /usr/bin/cc -DC99_FLAG_DETECTED -std=c99 -o CMakeFiles/cmTryCompileExec508479782.dir/src.c.o -c /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/src.c Linking C executable cmTryCompileExec508479782 /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec508479782.dir/link.txt --verbose=1 /usr/bin/cc -DC99_FLAG_DETECTED -std=c99 CMakeFiles/cmTryCompileExec508479782.dir/src.c.o -o cmTryCompileExec508479782 -rdynamic make[1]: Leaving directory/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp'

Source file was:

include <stdarg.h>

include <stdbool.h>

include <stdlib.h>

include <wchar.h>

include <stdio.h>

// Check varargs macros. These examples are taken from C99 6.10.3.5.

define debug(...) fprintf (stderr, VA_ARGS)

define showlist(...) puts (#VA_ARGS)

define report(test,...) ((test) ? puts (#test) : printf (VA_ARGS))

static void
test_varargs_macros (void)
{
int x = 1234;
int y = 5678;
debug ("Flag");
debug ("X = %d\n", x);
showlist (The first, second, and third items.);
report (x>y, "x is %d but y is %d", x, y);
}

// Check long long types.

define BIG64 18446744073709551615ull

define BIG32 4294967295ul

define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0)

if !BIG_OK

your preprocessor is broken;

endif

if BIG_OK

else

your preprocessor is broken;

endif

static long long int bignum = -9223372036854775807LL;
static unsigned long long int ubignum = BIG64;

struct incomplete_array
{
int datasize;
double data[];
};

struct named_init {
int number;
const wchar_t *name;
double average;
};

typedef const char *ccp;

static inline int
test_restrict (ccp restrict text)
{
// See if C++-style comments work.
// Iterate through items via the restricted pointer.
// Also check for declarations in for loops.
for (unsigned int i = 0; *(text+i) != '\0'; ++i)
continue;
return 0;
}

// Check varargs and va_copy.
static void
test_varargs (const char *format, ...)
{
va_list args;
va_start (args, format);
va_list args_copy;
va_copy (args_copy, args);

const char *str = NULL;
int number = 0;
float fnumber = 0.0;

while (_format)
{
switch (_format++)
{
case 's': // string
str = va_arg (args_copy, const char *);
break;
case 'd': // int
number = va_arg (args_copy, int);
break;
case 'f': // float
fnumber = va_arg (args_copy, double);
break;
default:
break;
}
}
va_end (args_copy);
va_end (args);

number = (number != 0) && (str != NULL) && (fnumber != 0.0);
}

int
main ()
{

// Check bool.
_Bool success = false;

// Check restrict.
if (test_restrict ("String literal") == 0)
success = true;
char *restrict newvar = "Another string";

// Check varargs.
test_varargs ("s, d' f .", "string", 65, 34.234);
test_varargs_macros ();

// Check flexible array members.
struct incomplete_array *ia =
malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10));
ia->datasize = 10;
for (int i = 0; i < ia->datasize; ++i)
ia->data[i] = i * 1.234;

// Check named initializers.
struct named_init ni = {
.number = 34,
.name = L"Test wide string",
.average = 543.34343,
};

ni.number = 58;

int dynamic_array[ni.number];
dynamic_array[ni.number - 1] = 543;

// work around unused variable warnings
return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x'
|| dynamic_array[ni.number - 1] != 543);

;
return 0;
}
Determining if the function vfork exists passed with the following output:
Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp

Run Build Command:/usr/bin/make "cmTryCompileExec3987380200/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3987380200.dir/build.make CMakeFiles/cmTryCompileExec3987380200.dir/build
make[1]: Entering directory /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp' /usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec3987380200.dir/CheckFunctionExists.c.o /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=vfork -o CMakeFiles/cmTryCompileExec3987380200.dir/CheckFunctionExists.c.o -c /usr/local/share/cmake-2.8/Modules/CheckFunctionExists.c Linking C executable cmTryCompileExec3987380200 /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3987380200.dir/link.txt --verbose=1 /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=vfork CMakeFiles/cmTryCompileExec3987380200.dir/CheckFunctionExists.c.o -o cmTryCompileExec3987380200 -rdynamic make[1]: Leaving directory/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp'

Determining if the function execve exists passed with the following output:
Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp

Run Build Command:/usr/bin/make "cmTryCompileExec3766393174/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3766393174.dir/build.make CMakeFiles/cmTryCompileExec3766393174.dir/build
make[1]: Entering directory /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp' /usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec3766393174.dir/CheckFunctionExists.c.o /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=execve -o CMakeFiles/cmTryCompileExec3766393174.dir/CheckFunctionExists.c.o -c /usr/local/share/cmake-2.8/Modules/CheckFunctionExists.c Linking C executable cmTryCompileExec3766393174 /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3766393174.dir/link.txt --verbose=1 /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=execve CMakeFiles/cmTryCompileExec3766393174.dir/CheckFunctionExists.c.o -o cmTryCompileExec3766393174 -rdynamic make[1]: Leaving directory/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp'

Determining if the function execv exists passed with the following output:
Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp

Run Build Command:/usr/bin/make "cmTryCompileExec664966407/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec664966407.dir/build.make CMakeFiles/cmTryCompileExec664966407.dir/build
make[1]: Entering directory /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp' /usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec664966407.dir/CheckFunctionExists.c.o /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=execv -o CMakeFiles/cmTryCompileExec664966407.dir/CheckFunctionExists.c.o -c /usr/local/share/cmake-2.8/Modules/CheckFunctionExists.c Linking C executable cmTryCompileExec664966407 /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec664966407.dir/link.txt --verbose=1 /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=execv CMakeFiles/cmTryCompileExec664966407.dir/CheckFunctionExists.c.o -o cmTryCompileExec664966407 -rdynamic make[1]: Leaving directory/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp'

Determining if the function execvpe exists passed with the following output:
Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp

Run Build Command:/usr/bin/make "cmTryCompileExec1044600673/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec1044600673.dir/build.make CMakeFiles/cmTryCompileExec1044600673.dir/build
make[1]: Entering directory /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp' /usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec1044600673.dir/CheckFunctionExists.c.o /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=execvpe -o CMakeFiles/cmTryCompileExec1044600673.dir/CheckFunctionExists.c.o -c /usr/local/share/cmake-2.8/Modules/CheckFunctionExists.c Linking C executable cmTryCompileExec1044600673 /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1044600673.dir/link.txt --verbose=1 /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=execvpe CMakeFiles/cmTryCompileExec1044600673.dir/CheckFunctionExists.c.o -o cmTryCompileExec1044600673 -rdynamic make[1]: Leaving directory/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp'

Determining if the function execvp exists passed with the following output:
Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp

Run Build Command:/usr/bin/make "cmTryCompileExec2332119349/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2332119349.dir/build.make CMakeFiles/cmTryCompileExec2332119349.dir/build
make[1]: Entering directory /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp' /usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec2332119349.dir/CheckFunctionExists.c.o /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=execvp -o CMakeFiles/cmTryCompileExec2332119349.dir/CheckFunctionExists.c.o -c /usr/local/share/cmake-2.8/Modules/CheckFunctionExists.c Linking C executable cmTryCompileExec2332119349 /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2332119349.dir/link.txt --verbose=1 /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=execvp CMakeFiles/cmTryCompileExec2332119349.dir/CheckFunctionExists.c.o -o cmTryCompileExec2332119349 -rdynamic make[1]: Leaving directory/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp'

Determining if the function execl exists passed with the following output:
Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp

Run Build Command:/usr/bin/make "cmTryCompileExec3118399448/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3118399448.dir/build.make CMakeFiles/cmTryCompileExec3118399448.dir/build
make[1]: Entering directory /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp' /usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec3118399448.dir/CheckFunctionExists.c.o /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=execl -o CMakeFiles/cmTryCompileExec3118399448.dir/CheckFunctionExists.c.o -c /usr/local/share/cmake-2.8/Modules/CheckFunctionExists.c Linking C executable cmTryCompileExec3118399448 /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3118399448.dir/link.txt --verbose=1 /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=execl CMakeFiles/cmTryCompileExec3118399448.dir/CheckFunctionExists.c.o -o cmTryCompileExec3118399448 -rdynamic make[1]: Leaving directory/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp'

Determining if the function execlp exists passed with the following output:
Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp

Run Build Command:/usr/bin/make "cmTryCompileExec2300573743/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec2300573743.dir/build.make CMakeFiles/cmTryCompileExec2300573743.dir/build
make[1]: Entering directory /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp' /usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec2300573743.dir/CheckFunctionExists.c.o /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=execlp -o CMakeFiles/cmTryCompileExec2300573743.dir/CheckFunctionExists.c.o -c /usr/local/share/cmake-2.8/Modules/CheckFunctionExists.c Linking C executable cmTryCompileExec2300573743 /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2300573743.dir/link.txt --verbose=1 /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=execlp CMakeFiles/cmTryCompileExec2300573743.dir/CheckFunctionExists.c.o -o cmTryCompileExec2300573743 -rdynamic make[1]: Leaving directory/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp'

Determining if the function execle exists passed with the following output:
Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp

Run Build Command:/usr/bin/make "cmTryCompileExec3786624990/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3786624990.dir/build.make CMakeFiles/cmTryCompileExec3786624990.dir/build
make[1]: Entering directory /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp' /usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec3786624990.dir/CheckFunctionExists.c.o /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=execle -o CMakeFiles/cmTryCompileExec3786624990.dir/CheckFunctionExists.c.o -c /usr/local/share/cmake-2.8/Modules/CheckFunctionExists.c Linking C executable cmTryCompileExec3786624990 /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3786624990.dir/link.txt --verbose=1 /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=execle CMakeFiles/cmTryCompileExec3786624990.dir/CheckFunctionExists.c.o -o cmTryCompileExec3786624990 -rdynamic make[1]: Leaving directory/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp'

Determining if the function posix_spawn exists passed with the following output:
Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp

Run Build Command:/usr/bin/make "cmTryCompileExec3053370790/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3053370790.dir/build.make CMakeFiles/cmTryCompileExec3053370790.dir/build
make[1]: Entering directory /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp' /usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec3053370790.dir/CheckFunctionExists.c.o /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=posix_spawn -o CMakeFiles/cmTryCompileExec3053370790.dir/CheckFunctionExists.c.o -c /usr/local/share/cmake-2.8/Modules/CheckFunctionExists.c Linking C executable cmTryCompileExec3053370790 /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3053370790.dir/link.txt --verbose=1 /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=posix_spawn CMakeFiles/cmTryCompileExec3053370790.dir/CheckFunctionExists.c.o -o cmTryCompileExec3053370790 -rdynamic make[1]: Leaving directory/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp'

Determining if the function posix_spawnp exists passed with the following output:
Change Dir: /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp

Run Build Command:/usr/bin/make "cmTryCompileExec3084343941/fast"
/usr/bin/make -f CMakeFiles/cmTryCompileExec3084343941.dir/build.make CMakeFiles/cmTryCompileExec3084343941.dir/build
make[1]: Entering directory /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp' /usr/local/bin/cmake -E cmake_progress_report /home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp/CMakeFiles 1 Building C object CMakeFiles/cmTryCompileExec3084343941.dir/CheckFunctionExists.c.o /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=posix_spawnp -o CMakeFiles/cmTryCompileExec3084343941.dir/CheckFunctionExists.c.o -c /usr/local/share/cmake-2.8/Modules/CheckFunctionExists.c Linking C executable cmTryCompileExec3084343941 /usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3084343941.dir/link.txt --verbose=1 /usr/bin/cc -std=c99 -DCHECK_FUNCTION_EXISTS=posix_spawnp CMakeFiles/cmTryCompileExec3084343941.dir/CheckFunctionExists.c.o -o cmTryCompileExec3084343941 -rdynamic make[1]: Leaving directory/home/oj/clang-tools/Bear-1.3/CMakeFiles/CMakeTmp'

@rizsotto
Copy link
Owner

-- package 'libconfig>=1.4' not found
CMake Error at /usr/local/share/cmake-2.8/Modules/FindPkgConfig.cmake:279 (message):
A required package was not found

please install dependencies before you try to build it.

@OlegJakushkin
Copy link
Author

Yes. Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants