ports/174618: graphics/blender: /usr/local/lib/libboost_locale.so: undefined reference to `icu_50::UnicodeString::doReplace(int, int, unsigned short const*, int, int)' c++: error: linker command failed with exit code 1 (use -v to see invocation)

O. Hartmann ohartman at zedat.fu-berlin.de
Mon Dec 24 09:36:05 UTC 2012


Am 12/21/12 22:43, schrieb Marcus von Appen:
> Hi,
> 
> I am unable to recreate this issue. Although the error of yours does not
> sound like it, I would like you to recompile devel/boost-libs, too,
> since libboost_locale.so belongs to that port:
> 
> # pkg_info -W /usr/local/lib/libboost_locale.so
> /usr/local/lib/libboost_locale.so was installed by package boost-libs-1.48.0_2
> 
> If this still does not resolve the issue, please send me the
> CMakeError.log and CMakeOutput.log files from blender's
> work/.build/CMakeFiles directory for further inspection along with your
> configuration options of devel/boost-libs and graphics/blender (output
> of make showconfig).
> 
> Cheers
> Marcus
> 
As requested,

find the log files attached.

make showconfig in port graphics/blender:

===> The following configuration options are available for blender-2.65:
     BOOLEAN=on: Boolean library support
     BULLET=on: Bullet physics engine
     CAMERATRACK=on: Camera tracking support
     CINEON=on: CINEON and DPX graphics format support
     CYCLES=on: Cycles render engine support
     DDS=on: DDS graphics format support
     FFMPEG=on: FFmpeg (WMA, AIFF, AC3, APE...)
     FFTW3=on: Floating point support using fftw
     GAMEENGINE=on: Enable the game engine
     HDR=on: Generic high dynamic-range (HDR) support
     HEADLESS=off: Disable user interface (for render-farms)
     JACK=off: JACK audio server
     MENU=on: Install desktop menu
     NLS=on: Native Language Support
     OCEANSIM=on: Ocean simulation support
     OPENAL=on: OpenAL support
     OPENCOLORIO=on: OpenColorIO-based color management support
     OPENEXR=on: HDR via OpenEXR
     OPENJPEG=on: Enhanced JPEG graphics
     OPENMP=on: Parallel processing via OpenMP
     PLAYER=on: Enable blender player
     REDCODE=off: RedCode graphics format support
     SAMPLERATE=on: Sample rate conversion
     SDL=on: Audio and Joystick support using SDL
     SNDFILE=off: libsndfile support
     TIFF=on: TIFF image format
     XF86VMODE=on: X11 video mode switching support
     XINPUT=on: X11 Xinput (tablet) support

-------------- next part --------------
Determining if the system is big endian passed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec3998984719/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3998984719.dir/build.make CMakeFiles/cmTryCompileExec3998984719.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3998984719.dir/TestEndianess.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native     -o CMakeFiles/cmTryCompileExec3998984719.dir/TestEndianess.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/TestEndianess.c
Linking C executable cmTryCompileExec3998984719
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3998984719.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native      CMakeFiles/cmTryCompileExec3998984719.dir/TestEndianess.c.o  -o cmTryCompileExec3998984719  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

TestEndianess.c:
/* A 16 bit integer is required. */
typedef unsigned short cmakeint16;

/* On a little endian machine, these 16bit ints will give "THIS IS LITTLE ENDIAN."
   On a big endian machine the characters will be exchanged pairwise. */
const cmakeint16 info_little[] =  {0x4854, 0x5349, 0x4920, 0x2053, 0x494c, 0x5454, 0x454c, 0x4520, 0x444e, 0x4149, 0x2e4e, 0x0000};

/* on a big endian machine, these 16bit ints will give "THIS IS BIG ENDIAN."
   On a little endian machine the characters will be exchanged pairwise. */
const cmakeint16 info_big[] =     {0x5448, 0x4953, 0x2049, 0x5320, 0x4249, 0x4720, 0x454e, 0x4449, 0x414e, 0x2e2e, 0x0000};

#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
  int require = 0;
  require += info_little[argc];
  require += info_big[argc];
  (void)argv;
  return require;
}


Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec2708167279/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2708167279.dir/build.make CMakeFiles/cmTryCompileExec2708167279.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2708167279.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DOpenMP_FLAG_DETECTED -fopenmp   -o CMakeFiles/cmTryCompileExec2708167279.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
cc: warning: argument unused during compilation: '-fopenmp'
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c:7:3: error: use of undeclared identifier 'breaks_on_purpose'
  breaks_on_purpose
  ^
1 error generated.
gmake[1]: *** [CMakeFiles/cmTryCompileExec2708167279.dir/src.c.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec2708167279/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec3525504089/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3525504089.dir/build.make CMakeFiles/cmTryCompileExec3525504089.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3525504089.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DOpenMP_FLAG_DETECTED /openmp   -o CMakeFiles/cmTryCompileExec3525504089.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
cc: error: no such file or directory: '/openmp'
gmake[1]: *** [CMakeFiles/cmTryCompileExec3525504089.dir/src.c.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec3525504089/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec2565079140/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2565079140.dir/build.make CMakeFiles/cmTryCompileExec2565079140.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2565079140.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DOpenMP_FLAG_DETECTED -Qopenmp   -o CMakeFiles/cmTryCompileExec2565079140.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
cc: warning: argument unused during compilation: '-Qopenmp'
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c:7:3: error: use of undeclared identifier 'breaks_on_purpose'
  breaks_on_purpose
  ^
1 error generated.
gmake[1]: *** [CMakeFiles/cmTryCompileExec2565079140.dir/src.c.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec2565079140/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec28666580/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec28666580.dir/build.make CMakeFiles/cmTryCompileExec28666580.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec28666580.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DOpenMP_FLAG_DETECTED -openmp   -o CMakeFiles/cmTryCompileExec28666580.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c:7:3: error: use of undeclared identifier 'breaks_on_purpose'
  breaks_on_purpose
  ^
1 error generated.
gmake[1]: *** [CMakeFiles/cmTryCompileExec28666580.dir/src.c.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec28666580/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec1889524225/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec1889524225.dir/build.make CMakeFiles/cmTryCompileExec1889524225.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1889524225.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DOpenMP_FLAG_DETECTED   -o CMakeFiles/cmTryCompileExec1889524225.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c:7:3: error: use of undeclared identifier 'breaks_on_purpose'
  breaks_on_purpose
  ^
1 error generated.
gmake[1]: *** [CMakeFiles/cmTryCompileExec1889524225.dir/src.c.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec1889524225/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec3040748566/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3040748566.dir/build.make CMakeFiles/cmTryCompileExec3040748566.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3040748566.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DOpenMP_FLAG_DETECTED -xopenmp   -o CMakeFiles/cmTryCompileExec3040748566.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
cc: error: language not recognized: 'openmp'
cc: warning: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c: 'linker' input unused
gmake[1]: *** [CMakeFiles/cmTryCompileExec3040748566.dir/src.c.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec3040748566/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec2734695111/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2734695111.dir/build.make CMakeFiles/cmTryCompileExec2734695111.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2734695111.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DOpenMP_FLAG_DETECTED +Oopenmp   -o CMakeFiles/cmTryCompileExec2734695111.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
cc: error: no such file or directory: '+Oopenmp'
gmake[1]: *** [CMakeFiles/cmTryCompileExec2734695111.dir/src.c.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec2734695111/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec972451833/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec972451833.dir/build.make CMakeFiles/cmTryCompileExec972451833.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec972451833.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DOpenMP_FLAG_DETECTED -qsmp   -o CMakeFiles/cmTryCompileExec972451833.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
cc: warning: argument unused during compilation: '-qsmp'
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c:7:3: error: use of undeclared identifier 'breaks_on_purpose'
  breaks_on_purpose
  ^
1 error generated.
gmake[1]: *** [CMakeFiles/cmTryCompileExec972451833.dir/src.c.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec972451833/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec3877552487/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3877552487.dir/build.make CMakeFiles/cmTryCompileExec3877552487.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3877552487.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DOpenMP_FLAG_DETECTED -mp   -o CMakeFiles/cmTryCompileExec3877552487.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
cc: warning: argument unused during compilation: '-mp'
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c:7:3: error: use of undeclared identifier 'breaks_on_purpose'
  breaks_on_purpose
  ^
1 error generated.
gmake[1]: *** [CMakeFiles/cmTryCompileExec3877552487.dir/src.c.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec3877552487/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec3966097236/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3966097236.dir/build.make CMakeFiles/cmTryCompileExec3966097236.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec3966097236.dir/src.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED -fopenmp   -o CMakeFiles/cmTryCompileExec3966097236.dir/src.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
c++: warning: argument unused during compilation: '-fopenmp'
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx:7:3: error: use of undeclared identifier 'breaks_on_purpose'
  breaks_on_purpose
  ^
1 error generated.
gmake[1]: *** [CMakeFiles/cmTryCompileExec3966097236.dir/src.cxx.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec3966097236/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec3704183562/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3704183562.dir/build.make CMakeFiles/cmTryCompileExec3704183562.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec3704183562.dir/src.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED /openmp   -o CMakeFiles/cmTryCompileExec3704183562.dir/src.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
c++: error: no such file or directory: '/openmp'
gmake[1]: *** [CMakeFiles/cmTryCompileExec3704183562.dir/src.cxx.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec3704183562/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec2000233003/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2000233003.dir/build.make CMakeFiles/cmTryCompileExec2000233003.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec2000233003.dir/src.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED -Qopenmp   -o CMakeFiles/cmTryCompileExec2000233003.dir/src.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
c++: warning: argument unused during compilation: '-Qopenmp'
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx:7:3: error: use of undeclared identifier 'breaks_on_purpose'
  breaks_on_purpose
  ^
1 error generated.
gmake[1]: *** [CMakeFiles/cmTryCompileExec2000233003.dir/src.cxx.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec2000233003/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec95407287/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec95407287.dir/build.make CMakeFiles/cmTryCompileExec95407287.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec95407287.dir/src.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED -openmp   -o CMakeFiles/cmTryCompileExec95407287.dir/src.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx:7:3: error: use of undeclared identifier 'breaks_on_purpose'
  breaks_on_purpose
  ^
1 error generated.
gmake[1]: *** [CMakeFiles/cmTryCompileExec95407287.dir/src.cxx.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec95407287/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec2075084195/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2075084195.dir/build.make CMakeFiles/cmTryCompileExec2075084195.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec2075084195.dir/src.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED   -o CMakeFiles/cmTryCompileExec2075084195.dir/src.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx:7:3: error: use of undeclared identifier 'breaks_on_purpose'
  breaks_on_purpose
  ^
1 error generated.
gmake[1]: *** [CMakeFiles/cmTryCompileExec2075084195.dir/src.cxx.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec2075084195/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec2182597137/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2182597137.dir/build.make CMakeFiles/cmTryCompileExec2182597137.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec2182597137.dir/src.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED -xopenmp   -o CMakeFiles/cmTryCompileExec2182597137.dir/src.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
c++: error: language not recognized: 'openmp'
c++: warning: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx: 'linker' input unused
gmake[1]: *** [CMakeFiles/cmTryCompileExec2182597137.dir/src.cxx.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec2182597137/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec568775400/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec568775400.dir/build.make CMakeFiles/cmTryCompileExec568775400.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec568775400.dir/src.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED +Oopenmp   -o CMakeFiles/cmTryCompileExec568775400.dir/src.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
c++: error: no such file or directory: '+Oopenmp'
gmake[1]: *** [CMakeFiles/cmTryCompileExec568775400.dir/src.cxx.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec568775400/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec1808882375/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec1808882375.dir/build.make CMakeFiles/cmTryCompileExec1808882375.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec1808882375.dir/src.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED -qsmp   -o CMakeFiles/cmTryCompileExec1808882375.dir/src.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
c++: warning: argument unused during compilation: '-qsmp'
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx:7:3: error: use of undeclared identifier 'breaks_on_purpose'
  breaks_on_purpose
  ^
1 error generated.
gmake[1]: *** [CMakeFiles/cmTryCompileExec1808882375.dir/src.cxx.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec1808882375/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec2923189221/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2923189221.dir/build.make CMakeFiles/cmTryCompileExec2923189221.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec2923189221.dir/src.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED -mp   -o CMakeFiles/cmTryCompileExec2923189221.dir/src.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
c++: warning: argument unused during compilation: '-mp'
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx:7:3: error: use of undeclared identifier 'breaks_on_purpose'
  breaks_on_purpose
  ^
1 error generated.
gmake[1]: *** [CMakeFiles/cmTryCompileExec2923189221.dir/src.cxx.o] Error 1
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
gmake: *** [cmTryCompileExec2923189221/fast] Error 2

Source file was:

#include <omp.h>
int main() { 
#ifdef _OPENMP
  return 0; 
#else
  breaks_on_purpose
#endif
}

-------------- next part --------------
The system is: FreeBSD - 10.0-CURRENT - amd64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /usr/bin/cc 
Build flags: -O3;-pipe;-fno-strict-aliasing;-march=native;-march=native
Id flags: 

The output was:
0


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

The C compiler identification is Clang, found in "/usr/ports/graphics/blender/work/.build/CMakeFiles/CompilerIdC/a.out"

Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /usr/bin/c++ 
Build flags: -O3;-pipe;-fno-strict-aliasing;-march=native;-march=native
Id flags: 

The output was:
0


Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"

The CXX compiler identification is Clang, found in "/usr/ports/graphics/blender/work/.build/CMakeFiles/CompilerIdCXX/a.out"

Determining if the C compiler works passed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec2324982482/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2324982482.dir/build.make CMakeFiles/cmTryCompileExec2324982482.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2324982482.dir/testCCompiler.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native     -o CMakeFiles/cmTryCompileExec2324982482.dir/testCCompiler.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTryCompileExec2324982482
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2324982482.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native      CMakeFiles/cmTryCompileExec2324982482.dir/testCCompiler.c.o  -o cmTryCompileExec2324982482  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'


Detecting C compiler ABI info compiled with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec1787935642/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec1787935642.dir/build.make CMakeFiles/cmTryCompileExec1787935642.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1787935642.dir/CMakeCCompilerABI.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native     -o CMakeFiles/cmTryCompileExec1787935642.dir/CMakeCCompilerABI.c.o   -c /usr/local/share/cmake/Modules/CMakeCCompilerABI.c
Linking C executable cmTryCompileExec1787935642
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1787935642.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native    -v CMakeFiles/cmTryCompileExec1787935642.dir/CMakeCCompilerABI.c.o  -o cmTryCompileExec1787935642   
FreeBSD clang version 3.2 (branches/release_32 168974) 20121130
Target: x86_64-unknown-freebsd10.0
Thread model: posix
 "/usr/bin/ld" --eh-frame-hdr -dynamic-linker /libexec/ld-elf.so.1 --hash-style=both --enable-new-dtags -o cmTryCompileExec1787935642 /usr/lib/crt1.o /usr/lib/crti.o /usr/lib/crtbegin.o -L/usr/lib CMakeFiles/cmTryCompileExec1787935642.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/crtend.o /usr/lib/crtn.o
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'


Parsed C implicit link information from above output:
  link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)]
  ignore line: [Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp]
  ignore line: []
  ignore line: [Run Build Command:/usr/local/bin/gmake "cmTryCompileExec1787935642/fast"]
  ignore line: [/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec1787935642.dir/build.make CMakeFiles/cmTryCompileExec1787935642.dir/build]
  ignore line: [gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp']
  ignore line: [/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1]
  ignore line: [Building C object CMakeFiles/cmTryCompileExec1787935642.dir/CMakeCCompilerABI.c.o]
  ignore line: [/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native     -o CMakeFiles/cmTryCompileExec1787935642.dir/CMakeCCompilerABI.c.o   -c /usr/local/share/cmake/Modules/CMakeCCompilerABI.c]
  ignore line: [Linking C executable cmTryCompileExec1787935642]
  ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1787935642.dir/link.txt --verbose=1]
  ignore line: [/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native    -v CMakeFiles/cmTryCompileExec1787935642.dir/CMakeCCompilerABI.c.o  -o cmTryCompileExec1787935642   ]
  ignore line: [FreeBSD clang version 3.2 (branches/release_32 168974) 20121130]
  ignore line: [Target: x86_64-unknown-freebsd10.0]
  ignore line: [Thread model: posix]
  link line: [ "/usr/bin/ld" --eh-frame-hdr -dynamic-linker /libexec/ld-elf.so.1 --hash-style=both --enable-new-dtags -o cmTryCompileExec1787935642 /usr/lib/crt1.o /usr/lib/crti.o /usr/lib/crtbegin.o -L/usr/lib CMakeFiles/cmTryCompileExec1787935642.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/crtend.o /usr/lib/crtn.o]
    arg [/usr/bin/ld] ==> ignore
    arg [--eh-frame-hdr] ==> ignore
    arg [-dynamic-linker] ==> ignore
    arg [/libexec/ld-elf.so.1] ==> ignore
    arg [--hash-style=both] ==> ignore
    arg [--enable-new-dtags] ==> ignore
    arg [-o] ==> ignore
    arg [cmTryCompileExec1787935642] ==> ignore
    arg [/usr/lib/crt1.o] ==> ignore
    arg [/usr/lib/crti.o] ==> ignore
    arg [/usr/lib/crtbegin.o] ==> ignore
    arg [-L/usr/lib] ==> dir [/usr/lib]
    arg [CMakeFiles/cmTryCompileExec1787935642.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/crtend.o] ==> ignore
    arg [/usr/lib/crtn.o] ==> ignore
  remove lib [gcc]
  remove lib [gcc_s]
  remove lib [gcc]
  remove lib [gcc_s]
  collapse dir [/usr/lib] ==> [/usr/lib]
  implicit libs: [c]
  implicit dirs: [/usr/lib]


Determining if the CXX compiler works passed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec719224677/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec719224677.dir/build.make CMakeFiles/cmTryCompileExec719224677.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec719224677.dir/testCXXCompiler.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native     -o CMakeFiles/cmTryCompileExec719224677.dir/testCXXCompiler.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTryCompileExec719224677
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec719224677.dir/link.txt --verbose=1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native      CMakeFiles/cmTryCompileExec719224677.dir/testCXXCompiler.cxx.o  -o cmTryCompileExec719224677  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'


Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec1600617005/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec1600617005.dir/build.make CMakeFiles/cmTryCompileExec1600617005.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec1600617005.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native     -o CMakeFiles/cmTryCompileExec1600617005.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTryCompileExec1600617005
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1600617005.dir/link.txt --verbose=1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native    -v CMakeFiles/cmTryCompileExec1600617005.dir/CMakeCXXCompilerABI.cpp.o  -o cmTryCompileExec1600617005   
FreeBSD clang version 3.2 (branches/release_32 168974) 20121130
Target: x86_64-unknown-freebsd10.0
Thread model: posix
 "/usr/bin/ld" --eh-frame-hdr -dynamic-linker /libexec/ld-elf.so.1 --hash-style=both --enable-new-dtags -o cmTryCompileExec1600617005 /usr/lib/crt1.o /usr/lib/crti.o /usr/lib/crtbegin.o -L/usr/lib CMakeFiles/cmTryCompileExec1600617005.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/crtend.o /usr/lib/crtn.o
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'


Parsed CXX implicit link information from above output:
  link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)]
  ignore line: [Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp]
  ignore line: []
  ignore line: [Run Build Command:/usr/local/bin/gmake "cmTryCompileExec1600617005/fast"]
  ignore line: [/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec1600617005.dir/build.make CMakeFiles/cmTryCompileExec1600617005.dir/build]
  ignore line: [gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp']
  ignore line: [/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1]
  ignore line: [Building CXX object CMakeFiles/cmTryCompileExec1600617005.dir/CMakeCXXCompilerABI.cpp.o]
  ignore line: [/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native     -o CMakeFiles/cmTryCompileExec1600617005.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
  ignore line: [Linking CXX executable cmTryCompileExec1600617005]
  ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1600617005.dir/link.txt --verbose=1]
  ignore line: [/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native    -v CMakeFiles/cmTryCompileExec1600617005.dir/CMakeCXXCompilerABI.cpp.o  -o cmTryCompileExec1600617005   ]
  ignore line: [FreeBSD clang version 3.2 (branches/release_32 168974) 20121130]
  ignore line: [Target: x86_64-unknown-freebsd10.0]
  ignore line: [Thread model: posix]
  link line: [ "/usr/bin/ld" --eh-frame-hdr -dynamic-linker /libexec/ld-elf.so.1 --hash-style=both --enable-new-dtags -o cmTryCompileExec1600617005 /usr/lib/crt1.o /usr/lib/crti.o /usr/lib/crtbegin.o -L/usr/lib CMakeFiles/cmTryCompileExec1600617005.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/crtend.o /usr/lib/crtn.o]
    arg [/usr/bin/ld] ==> ignore
    arg [--eh-frame-hdr] ==> ignore
    arg [-dynamic-linker] ==> ignore
    arg [/libexec/ld-elf.so.1] ==> ignore
    arg [--hash-style=both] ==> ignore
    arg [--enable-new-dtags] ==> ignore
    arg [-o] ==> ignore
    arg [cmTryCompileExec1600617005] ==> ignore
    arg [/usr/lib/crt1.o] ==> ignore
    arg [/usr/lib/crti.o] ==> ignore
    arg [/usr/lib/crtbegin.o] ==> ignore
    arg [-L/usr/lib] ==> dir [/usr/lib]
    arg [CMakeFiles/cmTryCompileExec1600617005.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
    arg [-lstdc++] ==> lib [stdc++]
    arg [-lm] ==> lib [m]
    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/crtend.o] ==> ignore
    arg [/usr/lib/crtn.o] ==> ignore
  remove lib [gcc]
  remove lib [gcc_s]
  remove lib [gcc]
  remove lib [gcc_s]
  collapse dir [/usr/lib] ==> [/usr/lib]
  implicit libs: [stdc++;m;c]
  implicit dirs: [/usr/lib]


Performing C SOURCE FILE Test SUPPORT_SSE_BUILD succeded with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec1067254378/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec1067254378.dir/build.make CMakeFiles/cmTryCompileExec1067254378.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1067254378.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DSUPPORT_SSE_BUILD -msse -msse2   -o CMakeFiles/cmTryCompileExec1067254378.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTryCompileExec1067254378
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1067254378.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DSUPPORT_SSE_BUILD -msse -msse2    CMakeFiles/cmTryCompileExec1067254378.dir/src.c.o  -o cmTryCompileExec1067254378  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

Return value: 1
Source file was:

			#include <xmmintrin.h>
			int main(void) { __m128 v = _mm_setzero_ps(); return 0; }
Performing C SOURCE FILE Test SUPPORT_SSE2_BUILD succeded with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec948698210/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec948698210.dir/build.make CMakeFiles/cmTryCompileExec948698210.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec948698210.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DSUPPORT_SSE2_BUILD -msse -msse2   -o CMakeFiles/cmTryCompileExec948698210.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTryCompileExec948698210
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec948698210.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DSUPPORT_SSE2_BUILD -msse -msse2    CMakeFiles/cmTryCompileExec948698210.dir/src.c.o  -o cmTryCompileExec948698210  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

Return value: 1
Source file was:

			#include <emmintrin.h>
			int main(void) { __m128d v = _mm_setzero_pd(); return 0; }
Determining if files pthread.h exist passed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec2299847495/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2299847495.dir/build.make CMakeFiles/cmTryCompileExec2299847495.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2299847495.dir/CheckIncludeFiles.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native     -o CMakeFiles/cmTryCompileExec2299847495.dir/CheckIncludeFiles.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CheckIncludeFiles.c
Linking C executable cmTryCompileExec2299847495
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2299847495.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native      CMakeFiles/cmTryCompileExec2299847495.dir/CheckIncludeFiles.c.o  -o cmTryCompileExec2299847495  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'


Determining if the function XOpenDisplay exists in the /usr/local/lib/libX11.so;/usr/local/lib/libXext.so passed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec3805214091/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3805214091.dir/build.make CMakeFiles/cmTryCompileExec3805214091.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3805214091.dir/CheckFunctionExists.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DCHECK_FUNCTION_EXISTS=XOpenDisplay   -o CMakeFiles/cmTryCompileExec3805214091.dir/CheckFunctionExists.c.o   -c /usr/local/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec3805214091
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3805214091.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DCHECK_FUNCTION_EXISTS=XOpenDisplay    CMakeFiles/cmTryCompileExec3805214091.dir/CheckFunctionExists.c.o  -o cmTryCompileExec3805214091  -L/usr/local/lib /usr/local/lib/libX11.so /usr/local/lib/libXext.so -Wl,-rpath,/usr/local/lib 
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'


Determining if the function gethostbyname exists passed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec1173781859/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec1173781859.dir/build.make CMakeFiles/cmTryCompileExec1173781859.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1173781859.dir/CheckFunctionExists.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DCHECK_FUNCTION_EXISTS=gethostbyname   -o CMakeFiles/cmTryCompileExec1173781859.dir/CheckFunctionExists.c.o   -c /usr/local/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec1173781859
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1173781859.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DCHECK_FUNCTION_EXISTS=gethostbyname    CMakeFiles/cmTryCompileExec1173781859.dir/CheckFunctionExists.c.o  -o cmTryCompileExec1173781859  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'


Determining if the function connect exists passed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec881968260/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec881968260.dir/build.make CMakeFiles/cmTryCompileExec881968260.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec881968260.dir/CheckFunctionExists.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DCHECK_FUNCTION_EXISTS=connect   -o CMakeFiles/cmTryCompileExec881968260.dir/CheckFunctionExists.c.o   -c /usr/local/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec881968260
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec881968260.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DCHECK_FUNCTION_EXISTS=connect    CMakeFiles/cmTryCompileExec881968260.dir/CheckFunctionExists.c.o  -o cmTryCompileExec881968260  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'


Determining if the function remove exists passed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec2306239317/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2306239317.dir/build.make CMakeFiles/cmTryCompileExec2306239317.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2306239317.dir/CheckFunctionExists.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DCHECK_FUNCTION_EXISTS=remove   -o CMakeFiles/cmTryCompileExec2306239317.dir/CheckFunctionExists.c.o   -c /usr/local/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec2306239317
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2306239317.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DCHECK_FUNCTION_EXISTS=remove    CMakeFiles/cmTryCompileExec2306239317.dir/CheckFunctionExists.c.o  -o cmTryCompileExec2306239317  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'


Determining if the function shmat exists passed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec2730746862/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2730746862.dir/build.make CMakeFiles/cmTryCompileExec2730746862.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2730746862.dir/CheckFunctionExists.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DCHECK_FUNCTION_EXISTS=shmat   -o CMakeFiles/cmTryCompileExec2730746862.dir/CheckFunctionExists.c.o   -c /usr/local/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec2730746862
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2730746862.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DCHECK_FUNCTION_EXISTS=shmat    CMakeFiles/cmTryCompileExec2730746862.dir/CheckFunctionExists.c.o  -o cmTryCompileExec2730746862  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'


Determining if the function IceConnectionNumber exists in the ICE passed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec4275559712/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec4275559712.dir/build.make CMakeFiles/cmTryCompileExec4275559712.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec4275559712.dir/CheckFunctionExists.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DCHECK_FUNCTION_EXISTS=IceConnectionNumber   -o CMakeFiles/cmTryCompileExec4275559712.dir/CheckFunctionExists.c.o   -c /usr/local/share/cmake/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec4275559712
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec4275559712.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DCHECK_FUNCTION_EXISTS=IceConnectionNumber    CMakeFiles/cmTryCompileExec4275559712.dir/CheckFunctionExists.c.o  -o cmTryCompileExec4275559712  -L/usr/local/lib -lICE -Wl,-rpath,/usr/local/lib 
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'


Determining if the include file sys/types.h exists passed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec67377444/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec67377444.dir/build.make CMakeFiles/cmTryCompileExec67377444.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec67377444.dir/CheckIncludeFile.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native     -o CMakeFiles/cmTryCompileExec67377444.dir/CheckIncludeFile.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTryCompileExec67377444
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec67377444.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native      CMakeFiles/cmTryCompileExec67377444.dir/CheckIncludeFile.c.o  -o cmTryCompileExec67377444  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'


Determining if the include file stdint.h exists passed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec3726621764/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3726621764.dir/build.make CMakeFiles/cmTryCompileExec3726621764.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3726621764.dir/CheckIncludeFile.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native     -o CMakeFiles/cmTryCompileExec3726621764.dir/CheckIncludeFile.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTryCompileExec3726621764
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3726621764.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native      CMakeFiles/cmTryCompileExec3726621764.dir/CheckIncludeFile.c.o  -o cmTryCompileExec3726621764  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'


Determining if the include file stddef.h exists passed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec1656891570/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec1656891570.dir/build.make CMakeFiles/cmTryCompileExec1656891570.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec1656891570.dir/CheckIncludeFile.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native     -o CMakeFiles/cmTryCompileExec1656891570.dir/CheckIncludeFile.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTryCompileExec1656891570
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1656891570.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native      CMakeFiles/cmTryCompileExec1656891570.dir/CheckIncludeFile.c.o  -o cmTryCompileExec1656891570  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'


Determining size of unsigned short passed with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec3195047487/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3195047487.dir/build.make CMakeFiles/cmTryCompileExec3195047487.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3195047487.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native     -o CMakeFiles/cmTryCompileExec3195047487.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CheckTypeSize/CMAKE_SIZEOF_UNSIGNED_SHORT.c
Linking C executable cmTryCompileExec3195047487
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3195047487.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native      CMakeFiles/cmTryCompileExec3195047487.dir/CMAKE_SIZEOF_UNSIGNED_SHORT.c.o  -o cmTryCompileExec3195047487  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'


Performing C SOURCE FILE Test C_WARN_ALL succeded with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec2032058606/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2032058606.dir/build.make CMakeFiles/cmTryCompileExec2032058606.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2032058606.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DC_WARN_ALL   -Wall -o CMakeFiles/cmTryCompileExec2032058606.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTryCompileExec2032058606
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2032058606.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DC_WARN_ALL    CMakeFiles/cmTryCompileExec2032058606.dir/src.c.o  -o cmTryCompileExec2032058606  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C SOURCE FILE Test C_WARN_NO_AUTOLOGICAL_COMPARE succeded with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec2172354541/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2172354541.dir/build.make CMakeFiles/cmTryCompileExec2172354541.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2172354541.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DC_WARN_NO_AUTOLOGICAL_COMPARE   -Wno-tautological-compare -o CMakeFiles/cmTryCompileExec2172354541.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTryCompileExec2172354541
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2172354541.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DC_WARN_NO_AUTOLOGICAL_COMPARE    CMakeFiles/cmTryCompileExec2172354541.dir/src.c.o  -o cmTryCompileExec2172354541  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C SOURCE FILE Test C_WARN_NO_UNKNOWN_PRAGMAS succeded with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec2181000270/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2181000270.dir/build.make CMakeFiles/cmTryCompileExec2181000270.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2181000270.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DC_WARN_NO_UNKNOWN_PRAGMAS   -Wno-unknown-pragmas -o CMakeFiles/cmTryCompileExec2181000270.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTryCompileExec2181000270
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2181000270.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DC_WARN_NO_UNKNOWN_PRAGMAS    CMakeFiles/cmTryCompileExec2181000270.dir/src.c.o  -o cmTryCompileExec2181000270  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C SOURCE FILE Test C_WARN_NO_CHAR_SUBSCRIPTS succeded with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec2573343978/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec2573343978.dir/build.make CMakeFiles/cmTryCompileExec2573343978.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec2573343978.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DC_WARN_NO_CHAR_SUBSCRIPTS   -Wno-char-subscripts -o CMakeFiles/cmTryCompileExec2573343978.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTryCompileExec2573343978
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2573343978.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DC_WARN_NO_CHAR_SUBSCRIPTS    CMakeFiles/cmTryCompileExec2573343978.dir/src.c.o  -o cmTryCompileExec2573343978  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C SOURCE FILE Test C_WARN_STRICT_PROTOTYPES succeded with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec3301042751/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3301042751.dir/build.make CMakeFiles/cmTryCompileExec3301042751.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3301042751.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DC_WARN_STRICT_PROTOTYPES   -Wstrict-prototypes -o CMakeFiles/cmTryCompileExec3301042751.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTryCompileExec3301042751
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3301042751.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DC_WARN_STRICT_PROTOTYPES    CMakeFiles/cmTryCompileExec3301042751.dir/src.c.o  -o cmTryCompileExec3301042751  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C SOURCE FILE Test C_WARN_MISSING_PROTOTYPES succeded with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec3052008202/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3052008202.dir/build.make CMakeFiles/cmTryCompileExec3052008202.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec3052008202.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DC_WARN_MISSING_PROTOTYPES   -Wmissing-prototypes -o CMakeFiles/cmTryCompileExec3052008202.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTryCompileExec3052008202
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3052008202.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DC_WARN_MISSING_PROTOTYPES    CMakeFiles/cmTryCompileExec3052008202.dir/src.c.o  -o cmTryCompileExec3052008202  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C SOURCE FILE Test C_WARN_UNUSED_MACROS succeded with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec4037535301/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec4037535301.dir/build.make CMakeFiles/cmTryCompileExec4037535301.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building C object CMakeFiles/cmTryCompileExec4037535301.dir/src.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DC_WARN_UNUSED_MACROS   -Wunused-macros -o CMakeFiles/cmTryCompileExec4037535301.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTryCompileExec4037535301
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec4037535301.dir/link.txt --verbose=1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=native -march=native  -DC_WARN_UNUSED_MACROS    CMakeFiles/cmTryCompileExec4037535301.dir/src.c.o  -o cmTryCompileExec4037535301  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C++ SOURCE FILE Test CXX_WARN_ALL succeded with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec548671566/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec548671566.dir/build.make CMakeFiles/cmTryCompileExec548671566.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec548671566.dir/src.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DCXX_WARN_ALL   -Wall -o CMakeFiles/cmTryCompileExec548671566.dir/src.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec548671566
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec548671566.dir/link.txt --verbose=1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DCXX_WARN_ALL    CMakeFiles/cmTryCompileExec548671566.dir/src.cxx.o  -o cmTryCompileExec548671566  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0;}
Performing C++ SOURCE FILE Test CXX_WARN_NO_AUTOLOGICAL_COMPARE succeded with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec934528198/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec934528198.dir/build.make CMakeFiles/cmTryCompileExec934528198.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec934528198.dir/src.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_AUTOLOGICAL_COMPARE   -Wno-tautological-compare -o CMakeFiles/cmTryCompileExec934528198.dir/src.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec934528198
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec934528198.dir/link.txt --verbose=1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_AUTOLOGICAL_COMPARE    CMakeFiles/cmTryCompileExec934528198.dir/src.cxx.o  -o cmTryCompileExec934528198  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0;}
Performing C++ SOURCE FILE Test CXX_WARN_NO_UNKNOWN_PRAGMAS succeded with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec3512544868/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3512544868.dir/build.make CMakeFiles/cmTryCompileExec3512544868.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec3512544868.dir/src.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_UNKNOWN_PRAGMAS   -Wno-unknown-pragmas -o CMakeFiles/cmTryCompileExec3512544868.dir/src.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec3512544868
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3512544868.dir/link.txt --verbose=1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_UNKNOWN_PRAGMAS    CMakeFiles/cmTryCompileExec3512544868.dir/src.cxx.o  -o cmTryCompileExec3512544868  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0;}
Performing C++ SOURCE FILE Test CXX_WARN_NO_CHAR_SUBSCRIPTS succeded with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec736743704/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec736743704.dir/build.make CMakeFiles/cmTryCompileExec736743704.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec736743704.dir/src.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_CHAR_SUBSCRIPTS   -Wno-char-subscripts -o CMakeFiles/cmTryCompileExec736743704.dir/src.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec736743704
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec736743704.dir/link.txt --verbose=1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_CHAR_SUBSCRIPTS    CMakeFiles/cmTryCompileExec736743704.dir/src.cxx.o  -o cmTryCompileExec736743704  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0;}
Performing C++ SOURCE FILE Test CXX_WARN_NO_OVERLOADED_VIRTUAL succeded with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec1054581441/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec1054581441.dir/build.make CMakeFiles/cmTryCompileExec1054581441.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec1054581441.dir/src.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_OVERLOADED_VIRTUAL   -Wno-overloaded-virtual -o CMakeFiles/cmTryCompileExec1054581441.dir/src.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec1054581441
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1054581441.dir/link.txt --verbose=1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_OVERLOADED_VIRTUAL    CMakeFiles/cmTryCompileExec1054581441.dir/src.cxx.o  -o cmTryCompileExec1054581441  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0;}
Performing C++ SOURCE FILE Test CXX_WARN_NO_INVALID_OFFSETOF succeded with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec4031444927/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec4031444927.dir/build.make CMakeFiles/cmTryCompileExec4031444927.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec4031444927.dir/src.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_INVALID_OFFSETOF   -Wno-invalid-offsetof -o CMakeFiles/cmTryCompileExec4031444927.dir/src.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec4031444927
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec4031444927.dir/link.txt --verbose=1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_INVALID_OFFSETOF    CMakeFiles/cmTryCompileExec4031444927.dir/src.cxx.o  -o cmTryCompileExec4031444927  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0;}
Performing C++ SOURCE FILE Test CXX_WARN_UNUSED_MACROS succeded with the following output:
Change Dir: /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp

Run Build Command:/usr/local/bin/gmake "cmTryCompileExec3983521808/fast"
/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec3983521808.dir/build.make CMakeFiles/cmTryCompileExec3983521808.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'
/usr/local/bin/cmake -E cmake_progress_report /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CMakeFiles 1
Building CXX object CMakeFiles/cmTryCompileExec3983521808.dir/src.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DCXX_WARN_UNUSED_MACROS   -Wunused-macros -o CMakeFiles/cmTryCompileExec3983521808.dir/src.cxx.o -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec3983521808
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3983521808.dir/link.txt --verbose=1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=native -march=native -D__STDC_CONSTANT_MACROS  -DCXX_WARN_UNUSED_MACROS    CMakeFiles/cmTryCompileExec3983521808.dir/src.cxx.o  -o cmTryCompileExec3983521808  
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp'

Source file was:
int main() { return 0;}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 488 bytes
Desc: OpenPGP digital signature
URL: <http://lists.freebsd.org/pipermail/freebsd-ports-bugs/attachments/20121224/b97b93b1/attachment.sig>


More information about the freebsd-ports-bugs mailing list