Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Dec 2012 10:35:54 +0100
From:      "O. Hartmann" <ohartman@zedat.fu-berlin.de>
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: 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)
Message-ID:  <50D821FA.9040902@zedat.fu-berlin.de>
In-Reply-To: <20121221214340.GB1998@medusa.sysfault.org>
References:  <201212212050.qBLKo9Wf066502@freefall.freebsd.org> <20121221214340.GB1998@medusa.sysfault.org>

next in thread | previous in thread | raw e-mail | index | archive | help
This is an OpenPGP/MIME signed message (RFC 2440 and 3156)
--------------enig189EFA79D5213425D840B81D
Content-Type: multipart/mixed;
 boundary="------------090205020300070103000901"

This is a multi-part message in MIME format.
--------------090205020300070103000901
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

Am 12/21/12 22:43, schrieb Marcus von Appen:
> Hi,
>=20
> I am unable to recreate this issue. Although the error of yours does no=
t
> sound like it, I would like you to recompile devel/boost-libs, too,
> since libboost_locale.so belongs to that port:
>=20
> # pkg_info -W /usr/local/lib/libboost_locale.so
> /usr/local/lib/libboost_locale.so was installed by package boost-libs-1=
=2E48.0_2
>=20
> 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).
>=20
> Cheers
> Marcus
>=20
As requested,

find the log files attached.

make showconfig in port graphics/blender:

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


--------------090205020300070103000901
Content-Type: text/plain; charset=us-ascii;
 name="CMakeError.log"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
 filename="CMakeError.log"

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.m=
ake CMakeFiles/cmTryCompileExec3998984719.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=
=2Ec.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive     -o CMakeFiles/cmTryCompileExec3998984719.dir/TestEndianess.c.o   =
-c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/TestEndian=
ess.c
Linking C executable cmTryCompileExec3998984719
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3998=
984719.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive      CMakeFiles/cmTryCompileExec3998984719.dir/TestEndianess.c.o  -o =
cmTryCompileExec3998984719 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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[] =3D  {0x4854, 0x5349, 0x4920, 0x2053, 0x49=
4c, 0x5454, 0x454c, 0x4520, 0x444e, 0x4149, 0x2e4e, 0x0000};

/* on a big endian machine, these 16bit ints will give "THIS IS BIG ENDIA=
N."
   On a little endian machine the characters will be exchanged pairwise. =
*/
const cmakeint16 info_big[] =3D     {0x5448, 0x4953, 0x2049, 0x5320, 0x42=
49, 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 =3D 0;
  require +=3D info_little[argc];
  require +=3D info_big[argc];
  (void)argv;
  return require;
}


Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the follow=
ing 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.m=
ake CMakeFiles/cmTryCompileExec2708167279.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DOpenMP_FLAG_DETECTED -fopenmp   -o CMakeFiles/cmTryCompileExec2708=
167279.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFile=
s/CMakeTmp/src.c
cc: warning: argument unused during compilation: '-fopenmp'
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c:7:3: er=
ror: 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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec2708167279/fast] Error 2

Source file was:

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

Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the follow=
ing 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.m=
ake CMakeFiles/cmTryCompileExec3525504089.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DOpenMP_FLAG_DETECTED /openmp   -o CMakeFiles/cmTryCompileExec35255=
04089.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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec3525504089/fast] Error 2

Source file was:

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

Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the follow=
ing 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.m=
ake CMakeFiles/cmTryCompileExec2565079140.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DOpenMP_FLAG_DETECTED -Qopenmp   -o CMakeFiles/cmTryCompileExec2565=
079140.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFile=
s/CMakeTmp/src.c
cc: warning: argument unused during compilation: '-Qopenmp'
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c:7:3: er=
ror: 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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec2565079140/fast] Error 2

Source file was:

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

Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the follow=
ing 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.mak=
e CMakeFiles/cmTryCompileExec28666580.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DOpenMP_FLAG_DETECTED -openmp   -o CMakeFiles/cmTryCompileExec28666=
580.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/C=
MakeTmp/src.c
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c:7:3: er=
ror: 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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec28666580/fast] Error 2

Source file was:

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

Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the follow=
ing 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.m=
ake CMakeFiles/cmTryCompileExec1889524225.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DOpenMP_FLAG_DETECTED   -o CMakeFiles/cmTryCompileExec1889524225.di=
r/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTm=
p/src.c
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c:7:3: er=
ror: 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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec1889524225/fast] Error 2

Source file was:

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

Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the follow=
ing 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.m=
ake CMakeFiles/cmTryCompileExec3040748566.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DOpenMP_FLAG_DETECTED -xopenmp   -o CMakeFiles/cmTryCompileExec3040=
748566.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFile=
s/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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec3040748566/fast] Error 2

Source file was:

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

Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the follow=
ing 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.m=
ake CMakeFiles/cmTryCompileExec2734695111.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DOpenMP_FLAG_DETECTED +Oopenmp   -o CMakeFiles/cmTryCompileExec2734=
695111.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFile=
s/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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec2734695111/fast] Error 2

Source file was:

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

Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the follow=
ing 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.ma=
ke CMakeFiles/cmTryCompileExec972451833.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DOpenMP_FLAG_DETECTED -qsmp   -o CMakeFiles/cmTryCompileExec9724518=
33.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CM=
akeTmp/src.c
cc: warning: argument unused during compilation: '-qsmp'
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c:7:3: er=
ror: 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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec972451833/fast] Error 2

Source file was:

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

Performing C SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the follow=
ing 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.m=
ake CMakeFiles/cmTryCompileExec3877552487.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DOpenMP_FLAG_DETECTED -mp   -o CMakeFiles/cmTryCompileExec387755248=
7.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMa=
keTmp/src.c
cc: warning: argument unused during compilation: '-mp'
/usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.c:7:3: er=
ror: 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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec3877552487/fast] Error 2

Source file was:

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

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the foll=
owing 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.m=
ake CMakeFiles/cmTryCompileExec3966097236.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED -fopenmp   -o CMak=
eFiles/cmTryCompileExec3966097236.dir/src.cxx.o -c /usr/ports/graphics/bl=
ender/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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec3966097236/fast] Error 2

Source file was:

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

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the foll=
owing 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.m=
ake CMakeFiles/cmTryCompileExec3704183562.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED /openmp   -o CMake=
Files/cmTryCompileExec3704183562.dir/src.cxx.o -c /usr/ports/graphics/ble=
nder/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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec3704183562/fast] Error 2

Source file was:

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

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the foll=
owing 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.m=
ake CMakeFiles/cmTryCompileExec2000233003.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED -Qopenmp   -o CMak=
eFiles/cmTryCompileExec2000233003.dir/src.cxx.o -c /usr/ports/graphics/bl=
ender/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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec2000233003/fast] Error 2

Source file was:

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

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the foll=
owing 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.mak=
e CMakeFiles/cmTryCompileExec95407287.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED -openmp   -o CMake=
Files/cmTryCompileExec95407287.dir/src.cxx.o -c /usr/ports/graphics/blend=
er/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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec95407287/fast] Error 2

Source file was:

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

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the foll=
owing 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.m=
ake CMakeFiles/cmTryCompileExec2075084195.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED   -o CMakeFiles/cm=
TryCompileExec2075084195.dir/src.cxx.o -c /usr/ports/graphics/blender/wor=
k/.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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec2075084195/fast] Error 2

Source file was:

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

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the foll=
owing 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.m=
ake CMakeFiles/cmTryCompileExec2182597137.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED -xopenmp   -o CMak=
eFiles/cmTryCompileExec2182597137.dir/src.cxx.o -c /usr/ports/graphics/bl=
ender/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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec2182597137/fast] Error 2

Source file was:

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

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the foll=
owing 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.ma=
ke CMakeFiles/cmTryCompileExec568775400.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED +Oopenmp   -o CMak=
eFiles/cmTryCompileExec568775400.dir/src.cxx.o -c /usr/ports/graphics/ble=
nder/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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec568775400/fast] Error 2

Source file was:

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

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the foll=
owing 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.m=
ake CMakeFiles/cmTryCompileExec1808882375.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED -qsmp   -o CMakeFi=
les/cmTryCompileExec1808882375.dir/src.cxx.o -c /usr/ports/graphics/blend=
er/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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec1808882375/fast] Error 2

Source file was:

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

Performing C++ SOURCE FILE Test OpenMP_FLAG_DETECTED failed with the foll=
owing 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.m=
ake CMakeFiles/cmTryCompileExec2923189221.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DOpenMP_FLAG_DETECTED -mp   -o CMakeFile=
s/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/CMak=
eFiles/CMakeTmp'
gmake: *** [cmTryCompileExec2923189221/fast] Error 2

Source file was:

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


--------------090205020300070103000901
Content-Type: text/plain; charset=us-ascii;
 name="CMakeOutput.log"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
 filename="CMakeOutput.log"

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

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/ble=
nder/work/.build/CMakeFiles/CompilerIdC/a.out"

Compiling the CXX compiler identification source file "CMakeCXXCompilerId=
=2Ecpp" succeeded.
Compiler: /usr/bin/c++=20
Build flags: -O3;-pipe;-fno-strict-aliasing;-march=3Dnative;-march=3Dnati=
ve
Id flags:=20

The output was:
0


Compilation of the CXX compiler identification source "CMakeCXXCompilerId=
=2Ecpp" produced "a.out"

The CXX compiler identification is Clang, found in "/usr/ports/graphics/b=
lender/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.m=
ake CMakeFiles/cmTryCompileExec2324982482.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=
=2Ec.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive     -o CMakeFiles/cmTryCompileExec2324982482.dir/testCCompiler.c.o   =
-c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/testCCompi=
ler.c
Linking C executable cmTryCompileExec2324982482
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2324=
982482.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive      CMakeFiles/cmTryCompileExec2324982482.dir/testCCompiler.c.o  -o =
cmTryCompileExec2324982482 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.m=
ake CMakeFiles/cmTryCompileExec1787935642.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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/CMakeCCompile=
rABI.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive     -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/cmTryCompileExec1787=
935642.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive    -v CMakeFiles/cmTryCompileExec1787935642.dir/CMakeCCompilerABI.c.o=
  -o cmTryCompileExec1787935642  =20
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=3Dboth --enable-new-dtags -o cmTryCompileExec1787935642 /usr/lib/c=
rt1.o /usr/lib/crti.o /usr/lib/crtbegin.o -L/usr/lib CMakeFiles/cmTryComp=
ileExec1787935642.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --n=
o-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/CMak=
eFiles/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/CMake=
Files/CMakeTmp]
  ignore line: []
  ignore line: [Run Build Command:/usr/local/bin/gmake "cmTryCompileExec1=
787935642/fast"]
  ignore line: [/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec178793=
5642.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.d=
ir/CMakeCCompilerABI.c.o]
  ignore line: [/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnat=
ive -march=3Dnative     -o CMakeFiles/cmTryCompileExec1787935642.dir/CMak=
eCCompilerABI.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/cmTr=
yCompileExec1787935642.dir/link.txt --verbose=3D1]
  ignore line: [/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnat=
ive -march=3Dnative    -v CMakeFiles/cmTryCompileExec1787935642.dir/CMake=
CCompilerABI.c.o  -o cmTryCompileExec1787935642   ]
  ignore line: [FreeBSD clang version 3.2 (branches/release_32 168974) 20=
121130]
  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-e=
lf.so.1 --hash-style=3Dboth --enable-new-dtags -o cmTryCompileExec1787935=
642 /usr/lib/crt1.o /usr/lib/crti.o /usr/lib/crtbegin.o -L/usr/lib CMakeF=
iles/cmTryCompileExec1787935642.dir/CMakeCCompilerABI.c.o -lgcc --as-need=
ed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /u=
sr/lib/crtend.o /usr/lib/crtn.o]
    arg [/usr/bin/ld] =3D=3D> ignore
    arg [--eh-frame-hdr] =3D=3D> ignore
    arg [-dynamic-linker] =3D=3D> ignore
    arg [/libexec/ld-elf.so.1] =3D=3D> ignore
    arg [--hash-style=3Dboth] =3D=3D> ignore
    arg [--enable-new-dtags] =3D=3D> ignore
    arg [-o] =3D=3D> ignore
    arg [cmTryCompileExec1787935642] =3D=3D> ignore
    arg [/usr/lib/crt1.o] =3D=3D> ignore
    arg [/usr/lib/crti.o] =3D=3D> ignore
    arg [/usr/lib/crtbegin.o] =3D=3D> ignore
    arg [-L/usr/lib] =3D=3D> dir [/usr/lib]
    arg [CMakeFiles/cmTryCompileExec1787935642.dir/CMakeCCompilerABI.c.o]=
 =3D=3D> ignore
    arg [-lgcc] =3D=3D> lib [gcc]
    arg [--as-needed] =3D=3D> ignore
    arg [-lgcc_s] =3D=3D> lib [gcc_s]
    arg [--no-as-needed] =3D=3D> ignore
    arg [-lc] =3D=3D> lib [c]
    arg [-lgcc] =3D=3D> lib [gcc]
    arg [--as-needed] =3D=3D> ignore
    arg [-lgcc_s] =3D=3D> lib [gcc_s]
    arg [--no-as-needed] =3D=3D> ignore
    arg [/usr/lib/crtend.o] =3D=3D> ignore
    arg [/usr/lib/crtn.o] =3D=3D> ignore
  remove lib [gcc]
  remove lib [gcc_s]
  remove lib [gcc]
  remove lib [gcc_s]
  collapse dir [/usr/lib] =3D=3D> [/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.ma=
ke CMakeFiles/cmTryCompileExec719224677.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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/testCXXCompi=
ler.cxx.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dn=
ative     -o CMakeFiles/cmTryCompileExec719224677.dir/testCXXCompiler.cxx=
=2Eo -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/testC=
XXCompiler.cxx
Linking CXX executable cmTryCompileExec719224677
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec7192=
24677.dir/link.txt --verbose=3D1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dn=
ative      CMakeFiles/cmTryCompileExec719224677.dir/testCXXCompiler.cxx.o=
  -o cmTryCompileExec719224677 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.m=
ake CMakeFiles/cmTryCompileExec1600617005.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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/CMakeCXXCom=
pilerABI.cpp.o
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dn=
ative     -o CMakeFiles/cmTryCompileExec1600617005.dir/CMakeCXXCompilerAB=
I.cpp.o -c /usr/local/share/cmake/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTryCompileExec1600617005
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1600=
617005.dir/link.txt --verbose=3D1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dn=
ative    -v CMakeFiles/cmTryCompileExec1600617005.dir/CMakeCXXCompilerABI=
=2Ecpp.o  -o cmTryCompileExec1600617005  =20
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=3Dboth --enable-new-dtags -o cmTryCompileExec1600617005 /usr/lib/c=
rt1.o /usr/lib/crti.o /usr/lib/crtbegin.o -L/usr/lib CMakeFiles/cmTryComp=
ileExec1600617005.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc --as-n=
eeded -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/CMak=
eFiles/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/CMake=
Files/CMakeTmp]
  ignore line: []
  ignore line: [Run Build Command:/usr/local/bin/gmake "cmTryCompileExec1=
600617005/fast"]
  ignore line: [/usr/local/bin/gmake -f CMakeFiles/cmTryCompileExec160061=
7005.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=
=2Edir/CMakeCXXCompilerABI.cpp.o]
  ignore line: [/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=3Dn=
ative -march=3Dnative     -o CMakeFiles/cmTryCompileExec1600617005.dir/CM=
akeCXXCompilerABI.cpp.o -c /usr/local/share/cmake/Modules/CMakeCXXCompile=
rABI.cpp]
  ignore line: [Linking CXX executable cmTryCompileExec1600617005]
  ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTr=
yCompileExec1600617005.dir/link.txt --verbose=3D1]
  ignore line: [/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=3Dn=
ative -march=3Dnative    -v CMakeFiles/cmTryCompileExec1600617005.dir/CMa=
keCXXCompilerABI.cpp.o  -o cmTryCompileExec1600617005   ]
  ignore line: [FreeBSD clang version 3.2 (branches/release_32 168974) 20=
121130]
  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-e=
lf.so.1 --hash-style=3Dboth --enable-new-dtags -o cmTryCompileExec1600617=
005 /usr/lib/crt1.o /usr/lib/crti.o /usr/lib/crtbegin.o -L/usr/lib CMakeF=
iles/cmTryCompileExec1600617005.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -l=
m -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] =3D=3D> ignore
    arg [--eh-frame-hdr] =3D=3D> ignore
    arg [-dynamic-linker] =3D=3D> ignore
    arg [/libexec/ld-elf.so.1] =3D=3D> ignore
    arg [--hash-style=3Dboth] =3D=3D> ignore
    arg [--enable-new-dtags] =3D=3D> ignore
    arg [-o] =3D=3D> ignore
    arg [cmTryCompileExec1600617005] =3D=3D> ignore
    arg [/usr/lib/crt1.o] =3D=3D> ignore
    arg [/usr/lib/crti.o] =3D=3D> ignore
    arg [/usr/lib/crtbegin.o] =3D=3D> ignore
    arg [-L/usr/lib] =3D=3D> dir [/usr/lib]
    arg [CMakeFiles/cmTryCompileExec1600617005.dir/CMakeCXXCompilerABI.cp=
p.o] =3D=3D> ignore
    arg [-lstdc++] =3D=3D> lib [stdc++]
    arg [-lm] =3D=3D> lib [m]
    arg [-lgcc] =3D=3D> lib [gcc]
    arg [--as-needed] =3D=3D> ignore
    arg [-lgcc_s] =3D=3D> lib [gcc_s]
    arg [--no-as-needed] =3D=3D> ignore
    arg [-lc] =3D=3D> lib [c]
    arg [-lgcc] =3D=3D> lib [gcc]
    arg [--as-needed] =3D=3D> ignore
    arg [-lgcc_s] =3D=3D> lib [gcc_s]
    arg [--no-as-needed] =3D=3D> ignore
    arg [/usr/lib/crtend.o] =3D=3D> ignore
    arg [/usr/lib/crtn.o] =3D=3D> ignore
  remove lib [gcc]
  remove lib [gcc_s]
  remove lib [gcc]
  remove lib [gcc_s]
  collapse dir [/usr/lib] =3D=3D> [/usr/lib]
  implicit libs: [stdc++;m;c]
  implicit dirs: [/usr/lib]


Performing C SOURCE FILE Test SUPPORT_SSE_BUILD succeded with the followi=
ng 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.m=
ake CMakeFiles/cmTryCompileExec1067254378.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DSUPPORT_SSE_BUILD -msse -msse2   -o CMakeFiles/cmTryCompileExec106=
7254378.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFil=
es/CMakeTmp/src.c
Linking C executable cmTryCompileExec1067254378
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1067=
254378.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DSUPPORT_SSE_BUILD -msse -msse2    CMakeFiles/cmTryCompileExec10672=
54378.dir/src.c.o  -o cmTryCompileExec1067254378 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/CMakeTmp'

Return value: 1
Source file was:

			#include <xmmintrin.h>
			int main(void) { __m128 v =3D _mm_setzero_ps(); return 0; }
Performing C SOURCE FILE Test SUPPORT_SSE2_BUILD succeded with the follow=
ing 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.ma=
ke CMakeFiles/cmTryCompileExec948698210.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DSUPPORT_SSE2_BUILD -msse -msse2   -o CMakeFiles/cmTryCompileExec94=
8698210.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFil=
es/CMakeTmp/src.c
Linking C executable cmTryCompileExec948698210
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec9486=
98210.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DSUPPORT_SSE2_BUILD -msse -msse2    CMakeFiles/cmTryCompileExec9486=
98210.dir/src.c.o  -o cmTryCompileExec948698210 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/CMakeTmp'

Return value: 1
Source file was:

			#include <emmintrin.h>
			int main(void) { __m128d v =3D _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.m=
ake CMakeFiles/cmTryCompileExec2299847495.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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/CheckIncludeF=
iles.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive     -o CMakeFiles/cmTryCompileExec2299847495.dir/CheckIncludeFiles.c.=
o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CheckI=
ncludeFiles.c
Linking C executable cmTryCompileExec2299847495
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2299=
847495.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive      CMakeFiles/cmTryCompileExec2299847495.dir/CheckIncludeFiles.c.o =
 -o cmTryCompileExec2299847495 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/CMakeTmp'


Determining if the function XOpenDisplay exists in the /usr/local/lib/lib=
X11.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.m=
ake CMakeFiles/cmTryCompileExec3805214091.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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/CheckFunction=
Exists.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DCHECK_FUNCTION_EXISTS=3DXOpenDisplay   -o CMakeFiles/cmTryCompileE=
xec3805214091.dir/CheckFunctionExists.c.o   -c /usr/local/share/cmake/Mod=
ules/CheckFunctionExists.c
Linking C executable cmTryCompileExec3805214091
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3805=
214091.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DCHECK_FUNCTION_EXISTS=3DXOpenDisplay    CMakeFiles/cmTryCompileExe=
c3805214091.dir/CheckFunctionExists.c.o  -o cmTryCompileExec3805214091  -=
L/usr/local/lib /usr/local/lib/libX11.so /usr/local/lib/libXext.so -Wl,-r=
path,/usr/local/lib=20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/CMakeTmp'


Determining if the function gethostbyname exists passed with the followin=
g 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.m=
ake CMakeFiles/cmTryCompileExec1173781859.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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/CheckFunction=
Exists.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DCHECK_FUNCTION_EXISTS=3Dgethostbyname   -o CMakeFiles/cmTryCompile=
Exec1173781859.dir/CheckFunctionExists.c.o   -c /usr/local/share/cmake/Mo=
dules/CheckFunctionExists.c
Linking C executable cmTryCompileExec1173781859
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1173=
781859.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DCHECK_FUNCTION_EXISTS=3Dgethostbyname    CMakeFiles/cmTryCompileEx=
ec1173781859.dir/CheckFunctionExists.c.o  -o cmTryCompileExec1173781859  =

gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/CMakeTmp'


Determining if the function connect exists passed with the following outp=
ut:
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.ma=
ke CMakeFiles/cmTryCompileExec881968260.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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/CheckFunctionE=
xists.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DCHECK_FUNCTION_EXISTS=3Dconnect   -o CMakeFiles/cmTryCompileExec88=
1968260.dir/CheckFunctionExists.c.o   -c /usr/local/share/cmake/Modules/C=
heckFunctionExists.c
Linking C executable cmTryCompileExec881968260
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec8819=
68260.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DCHECK_FUNCTION_EXISTS=3Dconnect    CMakeFiles/cmTryCompileExec8819=
68260.dir/CheckFunctionExists.c.o  -o cmTryCompileExec881968260 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/CMakeTmp'


Determining if the function remove exists passed with the following outpu=
t:
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.m=
ake CMakeFiles/cmTryCompileExec2306239317.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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/CheckFunction=
Exists.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DCHECK_FUNCTION_EXISTS=3Dremove   -o CMakeFiles/cmTryCompileExec230=
6239317.dir/CheckFunctionExists.c.o   -c /usr/local/share/cmake/Modules/C=
heckFunctionExists.c
Linking C executable cmTryCompileExec2306239317
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2306=
239317.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DCHECK_FUNCTION_EXISTS=3Dremove    CMakeFiles/cmTryCompileExec23062=
39317.dir/CheckFunctionExists.c.o  -o cmTryCompileExec2306239317 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.m=
ake CMakeFiles/cmTryCompileExec2730746862.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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/CheckFunction=
Exists.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DCHECK_FUNCTION_EXISTS=3Dshmat   -o CMakeFiles/cmTryCompileExec2730=
746862.dir/CheckFunctionExists.c.o   -c /usr/local/share/cmake/Modules/Ch=
eckFunctionExists.c
Linking C executable cmTryCompileExec2730746862
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2730=
746862.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DCHECK_FUNCTION_EXISTS=3Dshmat    CMakeFiles/cmTryCompileExec273074=
6862.dir/CheckFunctionExists.c.o  -o cmTryCompileExec2730746862 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.m=
ake CMakeFiles/cmTryCompileExec4275559712.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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/CheckFunction=
Exists.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DCHECK_FUNCTION_EXISTS=3DIceConnectionNumber   -o CMakeFiles/cmTryC=
ompileExec4275559712.dir/CheckFunctionExists.c.o   -c /usr/local/share/cm=
ake/Modules/CheckFunctionExists.c
Linking C executable cmTryCompileExec4275559712
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec4275=
559712.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DCHECK_FUNCTION_EXISTS=3DIceConnectionNumber    CMakeFiles/cmTryCom=
pileExec4275559712.dir/CheckFunctionExists.c.o  -o cmTryCompileExec427555=
9712  -L/usr/local/lib -lICE -Wl,-rpath,/usr/local/lib=20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/CMakeTmp'


Determining if the include file sys/types.h exists passed with the follow=
ing 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.mak=
e CMakeFiles/cmTryCompileExec67377444.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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/CheckIncludeFil=
e.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive     -o CMakeFiles/cmTryCompileExec67377444.dir/CheckIncludeFile.c.o  =
 -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CheckIncl=
udeFile.c
Linking C executable cmTryCompileExec67377444
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec6737=
7444.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive      CMakeFiles/cmTryCompileExec67377444.dir/CheckIncludeFile.c.o  -o=
 cmTryCompileExec67377444 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.m=
ake CMakeFiles/cmTryCompileExec3726621764.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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/CheckIncludeF=
ile.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive     -o CMakeFiles/cmTryCompileExec3726621764.dir/CheckIncludeFile.c.o=
   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CheckIn=
cludeFile.c
Linking C executable cmTryCompileExec3726621764
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3726=
621764.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive      CMakeFiles/cmTryCompileExec3726621764.dir/CheckIncludeFile.c.o  =
-o cmTryCompileExec3726621764 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.m=
ake CMakeFiles/cmTryCompileExec1656891570.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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/CheckIncludeF=
ile.c.o
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive     -o CMakeFiles/cmTryCompileExec1656891570.dir/CheckIncludeFile.c.o=
   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/CheckIn=
cludeFile.c
Linking C executable cmTryCompileExec1656891570
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1656=
891570.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive      CMakeFiles/cmTryCompileExec1656891570.dir/CheckIncludeFile.c.o  =
-o cmTryCompileExec1656891570 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.m=
ake CMakeFiles/cmTryCompileExec3195047487.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive     -o CMakeFiles/cmTryCompileExec3195047487.dir/CMAKE_SIZEOF_UNSIGNE=
D_SHORT.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/Check=
TypeSize/CMAKE_SIZEOF_UNSIGNED_SHORT.c
Linking C executable cmTryCompileExec3195047487
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3195=
047487.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive      CMakeFiles/cmTryCompileExec3195047487.dir/CMAKE_SIZEOF_UNSIGNED_=
SHORT.c.o  -o cmTryCompileExec3195047487 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/CMakeTmp'


Performing C SOURCE FILE Test C_WARN_ALL succeded with the following outp=
ut:
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.m=
ake CMakeFiles/cmTryCompileExec2032058606.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DC_WARN_ALL   -Wall -o CMakeFiles/cmTryCompileExec2032058606.dir/sr=
c.c.o   -c /usr/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/sr=
c.c
Linking C executable cmTryCompileExec2032058606
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2032=
058606.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DC_WARN_ALL    CMakeFiles/cmTryCompileExec2032058606.dir/src.c.o  -=
o cmTryCompileExec2032058606 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.m=
ake CMakeFiles/cmTryCompileExec2172354541.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DC_WARN_NO_AUTOLOGICAL_COMPARE   -Wno-tautological-compare -o CMake=
Files/cmTryCompileExec2172354541.dir/src.c.o   -c /usr/ports/graphics/ble=
nder/work/.build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTryCompileExec2172354541
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2172=
354541.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DC_WARN_NO_AUTOLOGICAL_COMPARE    CMakeFiles/cmTryCompileExec217235=
4541.dir/src.c.o  -o cmTryCompileExec2172354541 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.m=
ake CMakeFiles/cmTryCompileExec2181000270.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DC_WARN_NO_UNKNOWN_PRAGMAS   -Wno-unknown-pragmas -o CMakeFiles/cmT=
ryCompileExec2181000270.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/cmTryCompileExec2181=
000270.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DC_WARN_NO_UNKNOWN_PRAGMAS    CMakeFiles/cmTryCompileExec2181000270=
=2Edir/src.c.o  -o cmTryCompileExec2181000270 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.m=
ake CMakeFiles/cmTryCompileExec2573343978.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DC_WARN_NO_CHAR_SUBSCRIPTS   -Wno-char-subscripts -o CMakeFiles/cmT=
ryCompileExec2573343978.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/cmTryCompileExec2573=
343978.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DC_WARN_NO_CHAR_SUBSCRIPTS    CMakeFiles/cmTryCompileExec2573343978=
=2Edir/src.c.o  -o cmTryCompileExec2573343978 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.m=
ake CMakeFiles/cmTryCompileExec3301042751.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DC_WARN_STRICT_PROTOTYPES   -Wstrict-prototypes -o CMakeFiles/cmTry=
CompileExec3301042751.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/cmTryCompileExec3301=
042751.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DC_WARN_STRICT_PROTOTYPES    CMakeFiles/cmTryCompileExec3301042751.=
dir/src.c.o  -o cmTryCompileExec3301042751 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.m=
ake CMakeFiles/cmTryCompileExec3052008202.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DC_WARN_MISSING_PROTOTYPES   -Wmissing-prototypes -o CMakeFiles/cmT=
ryCompileExec3052008202.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/cmTryCompileExec3052=
008202.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DC_WARN_MISSING_PROTOTYPES    CMakeFiles/cmTryCompileExec3052008202=
=2Edir/src.c.o  -o cmTryCompileExec3052008202 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/CMakeTmp'

Source file was:
int main(void) { return 0; }
Performing C SOURCE FILE Test C_WARN_UNUSED_MACROS succeded with the foll=
owing 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.m=
ake CMakeFiles/cmTryCompileExec4037535301.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dnat=
ive  -DC_WARN_UNUSED_MACROS   -Wunused-macros -o CMakeFiles/cmTryCompileE=
xec4037535301.dir/src.c.o   -c /usr/ports/graphics/blender/work/.build/CM=
akeFiles/CMakeTmp/src.c
Linking C executable cmTryCompileExec4037535301
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec4037=
535301.dir/link.txt --verbose=3D1
/usr/bin/cc   -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dnat=
ive  -DC_WARN_UNUSED_MACROS    CMakeFiles/cmTryCompileExec4037535301.dir/=
src.c.o  -o cmTryCompileExec4037535301 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.ma=
ke CMakeFiles/cmTryCompileExec548671566.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DCXX_WARN_ALL   -Wall -o CMakeFiles/cmTr=
yCompileExec548671566.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/cmTryCompileExec5486=
71566.dir/link.txt --verbose=3D1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DCXX_WARN_ALL    CMakeFiles/cmTryCompile=
Exec548671566.dir/src.cxx.o  -o cmTryCompileExec548671566 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.ma=
ke CMakeFiles/cmTryCompileExec934528198.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dn=
ative -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/cmTryCompileExec9345=
28198.dir/link.txt --verbose=3D1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_AUTOLOGICAL_COMPARE    CMak=
eFiles/cmTryCompileExec934528198.dir/src.cxx.o  -o cmTryCompileExec934528=
198 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.m=
ake CMakeFiles/cmTryCompileExec3512544868.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_UNKNOWN_PRAGMAS   -Wno-unkn=
own-pragmas -o CMakeFiles/cmTryCompileExec3512544868.dir/src.cxx.o -c /us=
r/ports/graphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec3512544868
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3512=
544868.dir/link.txt --verbose=3D1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_UNKNOWN_PRAGMAS    CMakeFil=
es/cmTryCompileExec3512544868.dir/src.cxx.o  -o cmTryCompileExec351254486=
8 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.ma=
ke CMakeFiles/cmTryCompileExec736743704.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dn=
ative -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/cmTryCompileExec7367=
43704.dir/link.txt --verbose=3D1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_CHAR_SUBSCRIPTS    CMakeFil=
es/cmTryCompileExec736743704.dir/src.cxx.o  -o cmTryCompileExec736743704 =
=20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/CMakeTmp'

Source file was:
int main() { return 0;}
Performing C++ SOURCE FILE Test CXX_WARN_NO_OVERLOADED_VIRTUAL succeded w=
ith 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.m=
ake CMakeFiles/cmTryCompileExec1054581441.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_OVERLOADED_VIRTUAL   -Wno-o=
verloaded-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/cmTryCompileExec1054=
581441.dir/link.txt --verbose=3D1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_OVERLOADED_VIRTUAL    CMake=
Files/cmTryCompileExec1054581441.dir/src.cxx.o  -o cmTryCompileExec105458=
1441 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/CMakeTmp'

Source file was:
int main() { return 0;}
Performing C++ SOURCE FILE Test CXX_WARN_NO_INVALID_OFFSETOF succeded wit=
h 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.m=
ake CMakeFiles/cmTryCompileExec4031444927.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_INVALID_OFFSETOF   -Wno-inv=
alid-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/cmTryCompileExec4031=
444927.dir/link.txt --verbose=3D1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DCXX_WARN_NO_INVALID_OFFSETOF    CMakeFi=
les/cmTryCompileExec4031444927.dir/src.cxx.o  -o cmTryCompileExec40314449=
27 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/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.m=
ake CMakeFiles/cmTryCompileExec3983521808.dir/build
gmake[1]: Entering directory `/usr/ports/graphics/blender/work/.build/CMa=
keFiles/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=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DCXX_WARN_UNUSED_MACROS   -Wunused-macro=
s -o CMakeFiles/cmTryCompileExec3983521808.dir/src.cxx.o -c /usr/ports/gr=
aphics/blender/work/.build/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTryCompileExec3983521808
/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3983=
521808.dir/link.txt --verbose=3D1
/usr/bin/c++    -O3 -pipe -fno-strict-aliasing -march=3Dnative -march=3Dn=
ative -D__STDC_CONSTANT_MACROS  -DCXX_WARN_UNUSED_MACROS    CMakeFiles/cm=
TryCompileExec3983521808.dir/src.cxx.o  -o cmTryCompileExec3983521808 =20
gmake[1]: Leaving directory `/usr/ports/graphics/blender/work/.build/CMak=
eFiles/CMakeTmp'

Source file was:
int main() { return 0;}

--------------090205020300070103000901--

--------------enig189EFA79D5213425D840B81D
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: OpenPGP digital signature
Content-Disposition: attachment; filename="signature.asc"

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.19 (FreeBSD)

iQEcBAEBAgAGBQJQ2CH7AAoJEOgBcD7A/5N8QeMH/igEOCg2HNt957r/jtin9l5c
J+FW6DJiwVpEY040q0tEEq0YhRZz62QyVvp8gB7FWob4tjXkX2Z238XJWPwEUU/4
KcMGDxFBiBw8a1taj/kuX8SFhwfFUNtvFD+Htgboy5OO+lKGgZYgm+2S2752ee3N
7vSO7fnQNINKrsY/yoSHQk7ylxymZTPTgsCUqdTv8Poa9UVNBUT/TdvaKApk5PbR
EhWXycyXc+aGcKE55tT/qyFY7NQzpMjJtVRrTbGUYECtwjLEWR+KQK8ziHTcaxnb
j0GIgMWbeIjCvGHI4VMF9ArbJ7isSHkp4TfmAqf0vJk7JrK9oSO48iSISJz1vFM=
=lTVh
-----END PGP SIGNATURE-----

--------------enig189EFA79D5213425D840B81D--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?50D821FA.9040902>