Compiled errors when executing minimal build
Moderators: Martin, Developers
Compiled errors when executing minimal build
Hi, every one.
I get some troubles when executing minimal build with source code in Visual Studio 2010 x64. Before executing minimal build, I configuring the build sysyem with CMake 2.8.12 successfully by setting the cache values only "BUILD_SHARED=ON". After open "TexGen.sln" in Visual Studio 2010, right click on "ALL_BUILD" and choose "Build" from the context menu that appears. Then I get 11 errors in "GeometrySolver.cpp" and "Mesher.cpp".
Error list:
1. error C2065:"iiYarnIndices": undeclared identifier, Line 316, GeometrySolver.cpp(Line 302, Mesher.cpp);
2.error C2065:"insert_iterator": undeclared identifier, Line 300, GeometrySolver.cpp(Line 286, Mesher.cpp)
3. Error C2275: "std::set<_Kty>": illegal use of this type as an expression ,Line 300, GeometrySolver.cpp(Line 286, Mesher.cpp)
4. error C3861:"iiYarnIndices": identifier not found, Line 300, GeometrySolver.cpp(Line 286, Mesher.cpp)
And other 3 errors are about the two above identifiers.
Perhaps anybody can help me solving these problems.
Regards,
Hao wang.
I get some troubles when executing minimal build with source code in Visual Studio 2010 x64. Before executing minimal build, I configuring the build sysyem with CMake 2.8.12 successfully by setting the cache values only "BUILD_SHARED=ON". After open "TexGen.sln" in Visual Studio 2010, right click on "ALL_BUILD" and choose "Build" from the context menu that appears. Then I get 11 errors in "GeometrySolver.cpp" and "Mesher.cpp".
Error list:
1. error C2065:"iiYarnIndices": undeclared identifier, Line 316, GeometrySolver.cpp(Line 302, Mesher.cpp);
2.error C2065:"insert_iterator": undeclared identifier, Line 300, GeometrySolver.cpp(Line 286, Mesher.cpp)
3. Error C2275: "std::set<_Kty>": illegal use of this type as an expression ,Line 300, GeometrySolver.cpp(Line 286, Mesher.cpp)
4. error C3861:"iiYarnIndices": identifier not found, Line 300, GeometrySolver.cpp(Line 286, Mesher.cpp)
And other 3 errors are about the two above identifiers.
Perhaps anybody can help me solving these problems.
Regards,
Hao wang.
Re: Compiled errors when executing minimal build
Hi, everyone.
Today, I tried again to open the "TexGen.sln" in the build directory. I found 4 new errors in "CSparse", which are all in the cs_lu.c file. Such as, a value of type "void *" cannot be assigned to an entity of type "csn *", "double *", "int *", "int *", respectively, and corresponding to Line 14, 12, 13, 18.
Can anybody help me to deal with these troubles?
Regards,
Hao wang.
Today, I tried again to open the "TexGen.sln" in the build directory. I found 4 new errors in "CSparse", which are all in the cs_lu.c file. Such as, a value of type "void *" cannot be assigned to an entity of type "csn *", "double *", "int *", "int *", respectively, and corresponding to Line 14, 12, 13, 18.
Can anybody help me to deal with these troubles?
Regards,
Hao wang.
Re: Compiled errors when executing minimal build
Hi Hao wang,
Sorry not to have replied sooner - I've been out of the office for a few days.
I'm afraid that I haven't yet tried to build TexGen with Visual Studio 2010 (and don't currently have it installed on my computer). The problems must stem from the differences between VS 2008 (which I use) and 2010. A quick search shows that there have been some changes to the way the stl is included. Try adding #include <iterator> to the top of GeometrySolver.cpp (obviously I can't test if this works in 2010 but it is what was suggested in the post I read and still builds in my version).
CSparse is an open source sparse matrix package ( http://people.sc.fsu.edu/~jburkardt/c_s ... parse.html ) so I'm not sure what the issues with this might be. Everything builds in my Linux version which I assume has up-to-date C and C++ compilers so I'm not sure what the problem would be with this. Not sure if Microsoft have made changes to their C compiler...
Sorry not to be more help. Getting VS 2010 installed on my machine has been on my to-do list for ages. I think you probably just bumped it up the list
Best regards,
Louise
Sorry not to have replied sooner - I've been out of the office for a few days.
I'm afraid that I haven't yet tried to build TexGen with Visual Studio 2010 (and don't currently have it installed on my computer). The problems must stem from the differences between VS 2008 (which I use) and 2010. A quick search shows that there have been some changes to the way the stl is included. Try adding #include <iterator> to the top of GeometrySolver.cpp (obviously I can't test if this works in 2010 but it is what was suggested in the post I read and still builds in my version).
CSparse is an open source sparse matrix package ( http://people.sc.fsu.edu/~jburkardt/c_s ... parse.html ) so I'm not sure what the issues with this might be. Everything builds in my Linux version which I assume has up-to-date C and C++ compilers so I'm not sure what the problem would be with this. Not sure if Microsoft have made changes to their C compiler...
Sorry not to be more help. Getting VS 2010 installed on my machine has been on my to-do list for ages. I think you probably just bumped it up the list
Best regards,
Louise
Re: Compiled errors when executing minimal build
Hi, louise.
Indeed, adding "#include <iterator>" in the front of "GeometrySolver.cpp" and "Mesher.cpp" can solve the problems. But the errors of the open-source code "CSparse" are still exists. I guess these errors are related to C compiler in VS2010.
I am trying to attack these errors.
Best regards.
Hao wang.
Indeed, adding "#include <iterator>" in the front of "GeometrySolver.cpp" and "Mesher.cpp" can solve the problems. But the errors of the open-source code "CSparse" are still exists. I guess these errors are related to C compiler in VS2010.
I am trying to attack these errors.
Best regards.
Hao wang.
Re: Compiled errors when executing minimal build
Hi Hao wang,
Glad that worked.
Let me know how you get on with the CSparse errors. If you manage to correct them could you let me know and I'll get them incorporated into the code. In the meantime I will contact our IT department and see if I can get VS2010 installed.
Best regards,
Louise
Glad that worked.
Let me know how you get on with the CSparse errors. If you manage to correct them could you let me know and I'll get them incorporated into the code. In the meantime I will contact our IT department and see if I can get VS2010 installed.
Best regards,
Louise
Re: Compiled errors when executing minimal build
Hi, louise.
The errors in CSparse are all about the "malloc". I googled the problems in VS2010 and founded these "errors" are legal in C, while are illegal in C++.
In C, malloc returns a void* that can implicitly be converted to any other pointer type. So, I believe that VS2010 can compiled CSparse exactly as long as the compiler is C when compiling CSparse (insure the option: properties of CSparse->configuration properties->C/C++->advanced: Compile As: "Compile as C Code(/TC)").
In addition, right click on "ALL_BUILD" in Solution Explorer, then choose the menu "build" and waiting for finishing compiling. If the result of "Build: 9 succeeded, 0 failed, 0 up-to-date, 0 skipped." is got, does it means the minimal build is executed successfully?
Best regards,
Hao wang.
The errors in CSparse are all about the "malloc". I googled the problems in VS2010 and founded these "errors" are legal in C, while are illegal in C++.
In C, malloc returns a void* that can implicitly be converted to any other pointer type. So, I believe that VS2010 can compiled CSparse exactly as long as the compiler is C when compiling CSparse (insure the option: properties of CSparse->configuration properties->C/C++->advanced: Compile As: "Compile as C Code(/TC)").
In addition, right click on "ALL_BUILD" in Solution Explorer, then choose the menu "build" and waiting for finishing compiling. If the result of "Build: 9 succeeded, 0 failed, 0 up-to-date, 0 skipped." is got, does it means the minimal build is executed successfully?
Best regards,
Hao wang.
Re: Compiled errors when executing minimal build
Hi Hao wang,
Thanks for that. I'm waiting to our IS department to come and install VS2010 for me.
Yes, it looks like your build has worked. You should be able to see the library files generated.
Best regards,
Louise
Thanks for that. I'm waiting to our IS department to come and install VS2010 for me.
Yes, it looks like your build has worked. You should be able to see the library files generated.
Best regards,
Louise
Re: Compiled errors when executing minimal build
Hi, louise.
When I generate "BUILD_PYTHON_INTERFACE", I encounter some warnings about python's libraries. But I have already set up the options
"PYTHON_INCLUDE_DIR"="C:/Python25/include",
"PYTHON_LIBRARY"="C:/Python25/Lib",
"PYTHON_SITEPACKAGES_DIR"="C:/Python25/Lib/site-packages".
CMake gives a lot of warnings, likes that
WARNING: Target "_Core" requests linking to directory "C:/Python25/Lib". Targets may link only to libraries. CMake is dropping the item.
But I can generate it with these warnings. When I build the "TexGen.sln", VS gives some errors such as
"Error LNK1104: cannot open the file "python25_d.lib"".
I don't know where is the problem. Can you give me some tips?
Best regards,
Hao wang.
When I generate "BUILD_PYTHON_INTERFACE", I encounter some warnings about python's libraries. But I have already set up the options
"PYTHON_INCLUDE_DIR"="C:/Python25/include",
"PYTHON_LIBRARY"="C:/Python25/Lib",
"PYTHON_SITEPACKAGES_DIR"="C:/Python25/Lib/site-packages".
CMake gives a lot of warnings, likes that
WARNING: Target "_Core" requests linking to directory "C:/Python25/Lib". Targets may link only to libraries. CMake is dropping the item.
But I can generate it with these warnings. When I build the "TexGen.sln", VS gives some errors such as
"Error LNK1104: cannot open the file "python25_d.lib"".
I don't know where is the problem. Can you give me some tips?
Best regards,
Hao wang.
Re: Compiled errors when executing minimal build
Hi Hao wang,
Are you doing a debug build? In this case the build will try to access python25_d.lib. To do this you need to do a debug build of the python source which will create python_25_d.lib. You then need to set "PYTHON_DEBUG_LIBRARY path/python25_d.lib"
For my release build I have PYTHON_LIBRARY set to path/python25.lib. I guess this is why you get the warnings about targets linking only to libraries - I think it requires the actual library name rather than just the path.
If you continue and build the GUI with wxWidgets you will also need to do a debug build as well as a release one if you want to do a debug build of TexGen. Then the wxWidgets_CONFIGURATION parameter is set to msw or mswd as appropriate.
Hope that helps,
Best regards,
Louise
Are you doing a debug build? In this case the build will try to access python25_d.lib. To do this you need to do a debug build of the python source which will create python_25_d.lib. You then need to set "PYTHON_DEBUG_LIBRARY path/python25_d.lib"
For my release build I have PYTHON_LIBRARY set to path/python25.lib. I guess this is why you get the warnings about targets linking only to libraries - I think it requires the actual library name rather than just the path.
If you continue and build the GUI with wxWidgets you will also need to do a debug build as well as a release one if you want to do a debug build of TexGen. Then the wxWidgets_CONFIGURATION parameter is set to msw or mswd as appropriate.
Hope that helps,
Best regards,
Louise
Re: Compiled errors when executing minimal build
Hi, louise.
Recently, I am busy to deal with some other works. I continued to compile TexGen yesterday and solved the problem "cannot open file "python27.lib"". But I got some other errors about "Core_wrap.obj", "_Core.pyd", "vtkDataArrayTemplate.h", "vtkArrayIteratorTemplate.txx", "vtkDataArrayTemplate.txx" when building the project. The output of building the project is listed below.
Recently, I am busy to deal with some other works. I continued to compile TexGen yesterday and solved the problem "cannot open file "python27.lib"". But I got some other errors about "Core_wrap.obj", "_Core.pyd", "vtkDataArrayTemplate.h", "vtkArrayIteratorTemplate.txx", "vtkDataArrayTemplate.txx" when building the project. The output of building the project is listed below.
- 1>------ Build started: Project: ZERO_CHECK, Configuration: Release x64 ------
1>Build started 2014/5/16 12:35:46.
1>InitializeBuildStatus:
1> Creating "x64\Release\ZERO_CHECK\ZERO_CHECK.unsuccessfulbuild" because "AlwaysCreate" was specified.
1>FinalizeBuildStatus:
1> Deleting file "x64\Release\ZERO_CHECK\ZERO_CHECK.unsuccessfulbuild".
1> Touching "x64\Release\ZERO_CHECK\ZERO_CHECK.lastbuildstate".
1>
1>Build succeeded.
1>
1>Time Elapsed 00:00:00.11
2>------ Build started: Project: TexGenRenderer, Configuration: Release x64 ------
3>------ Build started: Project: _Core, Configuration: Release x64 ------
3>Build started 2014/5/16 12:35:46.
2>Build started 2014/5/16 12:35:47.
3>InitializeBuildStatus:
3> Touching "_Core.dir\Release\_Core.unsuccessfulbuild".
2>InitializeBuildStatus:
2> Touching "TexGenRenderer.dir\Release\TexGenRenderer.unsuccessfulbuild".
3>CustomBuild:
3> All outputs are up-to-date.
2>CustomBuild:
2> All outputs are up-to-date.
3>ClCompile:
3> All outputs are up-to-date.
2>ClCompile:
2> PrecompiledHeaders.cpp
3>Link:
3> Creating library E:/TexGen Development/Work/TexGen sln/Release/_Core.lib and object E:/TexGen Development/Work/TexGen sln/Release/_Core.exp
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyString_AsString referenced in function "char * __cdecl SWIG_Python_str_AsChar(struct _object *)" (?SWIG_Python_str_AsChar@@YAPEADPEAU_object@@@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyString_FromString referenced in function "struct _object * __cdecl SWIG_Python_str_FromChar(char const *)" (?SWIG_Python_str_FromChar@@YAPEAU_object@@PEBD@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyExc_RuntimeError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyExc_AttributeError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyExc_SystemError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyExc_ValueError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyExc_SyntaxError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyExc_OverflowError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyExc_ZeroDivisionError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyExc_TypeError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyExc_IndexError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyExc_IOError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyExc_MemoryError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyErr_SetString referenced in function "void __cdecl SWIG_Python_AddErrorMsg(char const *)" (?SWIG_Python_AddErrorMsg@@YAXPEBD@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyErr_Format referenced in function "void __cdecl SWIG_Python_AddErrorMsg(char const *)" (?SWIG_Python_AddErrorMsg@@YAXPEBD@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyErr_Clear referenced in function "void __cdecl SWIG_Python_AddErrorMsg(char const *)" (?SWIG_Python_AddErrorMsg@@YAXPEBD@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyObject_Str referenced in function "void __cdecl SWIG_Python_AddErrorMsg(char const *)" (?SWIG_Python_AddErrorMsg@@YAXPEBD@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyErr_Fetch referenced in function "void __cdecl SWIG_Python_AddErrorMsg(char const *)" (?SWIG_Python_AddErrorMsg@@YAXPEBD@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyErr_Occurred referenced in function "void __cdecl SWIG_Python_AddErrorMsg(char const *)" (?SWIG_Python_AddErrorMsg@@YAXPEBD@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyErr_SetObject referenced in function "void __cdecl SWIG_Python_SetErrorObj(struct _object *,struct _object *)" (?SWIG_Python_SetErrorObj@@YAXPEAU_object@@0@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyDict_SetItemString referenced in function "void __cdecl SWIG_Python_SetConstant(struct _object *,char const *,struct _object *)" (?SWIG_Python_SetConstant@@YAXPEAU_object@@PEBD0@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_Py_BuildValue referenced in function _SWIG_Py_None
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyTuple_SetItem referenced in function SwigPyClientData_New
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyTuple_New referenced in function SwigPyClientData_New
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyObject_GetAttrString referenced in function SwigPyClientData_New
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyClass_Type referenced in function SwigPyClientData_New
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyLong_FromVoidPtr referenced in function SwigPyObject_long
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyString_Format referenced in function SwigPyObject_format
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyString_ConcatAndDel referenced in function SwigPyObject_repr
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyString_FromFormat referenced in function SwigPyObject_repr
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyBool_FromLong referenced in function SwigPyObject_richcompare
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp__Py_NotImplementedStruct referenced in function SwigPyObject_richcompare
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyObject_IsTrue referenced in function SwigPyObject_own
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyArg_UnpackTuple referenced in function SwigPyObject_own
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyObject_Init referenced in function SwigPyObject_New
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyObject_Malloc referenced in function SwigPyObject_New
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyObject_Free referenced in function SwigPyPacked_dealloc
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyType_Ready referenced in function SwigPyPacked_TypeOnce
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyObject_GenericGetAttr referenced in function SwigPyPacked_TypeOnce
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyInstance_NewRaw referenced in function SWIG_Python_NewShadowInstance
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyDict_SetItem referenced in function SWIG_Python_NewShadowInstance
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyDict_New referenced in function SWIG_Python_NewShadowInstance
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp__PyObject_GetDictPtr referenced in function SWIG_Python_NewShadowInstance
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyObject_Call referenced in function SWIG_Python_NewShadowInstance
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp__PyObject_New referenced in function SWIG_Python_NewPointerObj
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyCapsule_Import referenced in function SWIG_Python_GetModule
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyCapsule_GetPointer referenced in function SWIG_Python_DestroyModule
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyModule_AddObject referenced in function SWIG_Python_SetModule
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyCapsule_New referenced in function SWIG_Python_SetModule
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_Py_InitModule4_64 referenced in function SWIG_Python_SetModule
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyFloat_AsDouble referenced in function "int __cdecl SWIG_AsVal_double(struct _object *,double *)" (?SWIG_AsVal_double@@YAHPEAU_object@@PEAN@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyLong_AsDouble referenced in function "int __cdecl SWIG_AsVal_double(struct _object *,double *)" (?SWIG_AsVal_double@@YAHPEAU_object@@PEAN@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyInt_AsLong referenced in function "int __cdecl SWIG_AsVal_double(struct _object *,double *)" (?SWIG_AsVal_double@@YAHPEAU_object@@PEAN@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyType_IsSubtype referenced in function "int __cdecl SWIG_AsVal_double(struct _object *,double *)" (?SWIG_AsVal_double@@YAHPEAU_object@@PEAN@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyFloat_Type referenced in function "int __cdecl SWIG_AsVal_double(struct _object *,double *)" (?SWIG_AsVal_double@@YAHPEAU_object@@PEAN@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyLong_AsUnsignedLong referenced in function "int __cdecl SWIG_AsVal_unsigned_SS_long(struct _object *,unsigned long *)" (?SWIG_AsVal_unsigned_SS_long@@YAHPEAU_object@@PEAK@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyLong_FromLong referenced in function "struct _object * __cdecl SWIG_From_ptrdiff_t(__int64)" (?SWIG_From_ptrdiff_t@@YAPEAU_object@@_J@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyLong_AsLong referenced in function "int __cdecl SWIG_AsVal_long(struct _object *,long *)" (?SWIG_AsVal_long@@YAHPEAU_object@@PEAJ@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyInt_FromLong referenced in function "struct _object * __cdecl SWIG_From_int(int)" (?SWIG_From_int@@YAPEAU_object@@H@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyString_FromStringAndSize referenced in function "struct _object * __cdecl SWIG_FromCharPtrAndSize(char const *,unsigned __int64)" (?SWIG_FromCharPtrAndSize@@YAPEAU_object@@PEBD_K@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyLong_FromUnsignedLong referenced in function "struct _object * __cdecl SWIG_From_unsigned_SS_long(unsigned long)" (?SWIG_From_unsigned_SS_long@@YAPEAU_object@@K@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyFloat_FromDouble referenced in function "public: static struct _object * __cdecl swig::traits_from<double>::from(double const &)" (?from@?$traits_from@N@swig@@SAPEAU_object@@AEBN@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyArg_ParseTuple referenced in function SwigPyIterator_swigregister
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyExc_NotImplementedError referenced in function _wrap_RandomNormalDistribution
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyObject_Size referenced in function _wrap_RandomNormalDistribution
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PySequence_Check referenced in function "public: __cdecl swig::SwigPySequence_Cont<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >::SwigPySequence_Cont<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >(struct _object *)" (??0?$SwigPySequence_Cont@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@swig@@QEAA@PEAU_object@@@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PySequence_Size referenced in function "public: int __cdecl swig::SwigPySequence_Cont<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >::size(void)const " (?size@?$SwigPySequence_Cont@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@swig@@QEBAHXZ)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyObject_CallFunctionObjArgs referenced in function SwigPyObject_dealloc
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyModule_GetDict referenced in function init_Core
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyObject_GetAttr referenced in function SWIG_Python_GetSwigThis
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp__PyWeakref_CallableProxyType referenced in function SWIG_Python_GetSwigThis
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp__PyWeakref_ProxyType referenced in function SWIG_Python_GetSwigThis
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyDict_GetItem referenced in function SWIG_Python_GetSwigThis
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp__PyInstance_Lookup referenced in function SWIG_Python_GetSwigThis
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyInstance_Type referenced in function SWIG_Python_GetSwigThis
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyCFunction_Type referenced in function SWIG_Python_ConvertFunctionPtr
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyString_AsStringAndSize referenced in function "int __cdecl SWIG_AsCharPtrAndSize(struct _object *,char * *,unsigned __int64 *,int *)" (?SWIG_AsCharPtrAndSize@@YAHPEAU_object@@PEAPEADPEA_KPEAH@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyExc_StopIteration referenced in function _wrap_SwigPyIterator_value$catch$0
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PySequence_GetItem referenced in function "public: bool __cdecl swig::SwigPySequence_Cont<double>::check(bool)const " (?check@?$SwigPySequence_Cont@N@swig@@QEBA_N_N@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyList_New referenced in function "struct _object * __cdecl std_map_Sl_std_string_Sc_TexGen_CTextile_Sm__Sg__keys(class std::map<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class TexGen::CTextile *,struct std::less<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >,class std::allocator<struct std::pair<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const ,class TexGen::CTextile *> > > *)" (?std_map_Sl_std_string_Sc_TexGen_CTextile_Sm__Sg__keys@@YAPEAU_object@@PEAV?$map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAVCTextile@TexGen@@U?$less@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAVCTextile@TexGen@@@std@@@2@@std@@@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PySlice_GetIndices referenced in function "void __cdecl std_list_Sl_int_Sg____setitem____SWIG_1(class std::list<int,class std::allocator<int> > *,struct PySliceObject *)" (?std_list_Sl_int_Sg____setitem____SWIG_1@@YAXPEAV?$list@HV?$allocator@H@std@@@std@@PEAUPySliceObject@@@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PySlice_Type referenced in function "void __cdecl std_list_Sl_int_Sg____setitem____SWIG_1(class std::list<int,class std::allocator<int> > *,struct PySliceObject *)" (?std_list_Sl_int_Sg____setitem____SWIG_1@@YAXPEAV?$list@HV?$allocator@H@std@@@std@@PEAUPySliceObject@@@Z)
3>Core_wrap.obj : error LNK2019: unresolved external symbol __imp_PyObject_CallMethod referenced in function "public: virtual void __cdecl SwigDirector_CTextileDeformer::DeformTextile(class TexGen::CTextile &,bool)" (?DeformTextile@SwigDirector_CTextileDeformer@@UEAAXAEAVCTextile@TexGen@@_N@Z)
3>E:\TexGen Development\Work\TexGen sln\Release\_Core.pyd : fatal error LNK1120: 83 unresolved externals
3>
3>Build FAILED.
3>
3>Time Elapsed 00:00:01.45
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.h(331): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(32): error C2491: 'vtkArrayIteratorTemplate<T>::New' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(35): error C2491: 'vtkArrayIteratorTemplate<T>::SetArray' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(42): error C2491: 'vtkArrayIteratorTemplate<T>::vtkArrayIteratorTemplate' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(50): error C2491: 'vtkArrayIteratorTemplate<T>::~vtkArrayIteratorTemplate' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(62): error C2491: 'vtkArrayIteratorTemplate<T>::Initialize' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(73): error C2491: 'vtkArrayIteratorTemplate<T>::GetNumberOfTuples' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(84): error C2491: 'vtkArrayIteratorTemplate<T>::GetNumberOfValues' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(95): error C2491: 'vtkArrayIteratorTemplate<T>::GetNumberOfComponents' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(102): error C2491: 'vtkArrayIteratorTemplate<T>::GetTuple' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(109): error C2491: 'vtkArrayIteratorTemplate<T>::GetDataType' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(116): error C2491: 'vtkArrayIteratorTemplate<T>::GetDataTypeSize' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(133): error C2491: 'vtkArrayIteratorTemplate<T>::PrintSelf' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(82): error C2491: 'vtkDataArrayTemplate<T>::vtkDataArrayTemplate' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(97): error C2491: 'vtkDataArrayTemplate<T>::~vtkDataArrayTemplate' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(122): error C2491: 'vtkDataArrayTemplate<T>::SetArray' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(161): error C2491: 'vtkDataArrayTemplate<T>::Allocate' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(173): error C2491: 'vtkDataArrayTemplate<T>::Initialize' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(238): error C2491: 'vtkDataArrayTemplate<T>::DeepCopy' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(254): error C2491: 'vtkDataArrayTemplate<T>::PrintSelf' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(274): error C2491: 'vtkDataArrayTemplate<T>::DeleteArray' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(383): error C2491: 'vtkDataArrayTemplate<T>::ResizeAndExtend' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(399): error C2491: 'vtkDataArrayTemplate<T>::Resize' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(408): error C2491: 'vtkDataArrayTemplate<T>::SetNumberOfTuples' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(440): error C2491: 'vtkDataArrayTemplate<T>::SetTuple' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(485): error C2491: 'vtkDataArrayTemplate<T>::InsertTuple' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(525): error C2491: 'vtkDataArrayTemplate<T>::InsertNextTuple' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(604): error C2491: 'vtkDataArrayTemplate<T>::GetTuple' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(616): error C2491: 'vtkDataArrayTemplate<T>::GetTuple' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(627): error C2491: 'vtkDataArrayTemplate<T>::GetTupleValue' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(640): error C2491: 'vtkDataArrayTemplate<T>::SetTuple' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(651): error C2491: 'vtkDataArrayTemplate<T>::SetTuple' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(662): error C2491: 'vtkDataArrayTemplate<T>::SetTupleValue' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(682): error C2491: 'vtkDataArrayTemplate<T>::InsertTuple' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(699): error C2491: 'vtkDataArrayTemplate<T>::InsertTuple' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(716): error C2491: 'vtkDataArrayTemplate<T>::InsertTupleValue' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(736): error C2491: 'vtkDataArrayTemplate<T>::InsertNextTuple' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(754): error C2491: 'vtkDataArrayTemplate<T>::InsertNextTuple' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(772): error C2491: 'vtkDataArrayTemplate<T>::InsertNextTupleValue' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(799): error C2491: 'vtkDataArrayTemplate<T>::RemoveTuple' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(807): error C2491: 'vtkDataArrayTemplate<T>::RemoveFirstTuple' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(815): error C2491: 'vtkDataArrayTemplate<T>::RemoveLastTuple' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(824): error C2491: 'vtkDataArrayTemplate<T>::GetComponent' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(836): error C2491: 'vtkDataArrayTemplate<T>::SetComponent' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(844): error C2491: 'vtkDataArrayTemplate<T>::InsertComponent' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(855): error C2491: 'vtkDataArrayTemplate<T>::SetNumberOfValues' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(876): error C2491: 'vtkDataArrayTemplate<T>::WritePointer' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(895): error C2491: 'vtkDataArrayTemplate<T>::InsertValue' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(912): error C2491: 'vtkDataArrayTemplate<T>::SetVariantValue' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(920): error C2491: 'vtkDataArrayTemplate<T>::InsertNextValue' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(955): error C2491: 'vtkDataArrayTemplate<T>::ComputeScalarRange' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(995): error C2491: 'vtkDataArrayTemplate<T>::ComputeVectorRange' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1006): error C2491: 'vtkDataArrayTemplate<T>::ExportToVoidPointer' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1015): error C2491: 'vtkDataArrayTemplate<T>::NewIterator' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1042): error C2491: 'vtkDataArrayTemplate<T>::UpdateLookup' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1056): error C2491: 'vtkDataArrayTemplate<T>::LookupValue' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1070): error C2491: 'vtkDataArrayTemplate<T>::LookupValue' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1149): error C2491: 'vtkDataArrayTemplate<T>::LookupValue' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1208): error C2491: 'vtkDataArrayTemplate<T>::LookupValue' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1218): error C2491: 'vtkDataArrayTemplate<T>::DataChanged' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1246): error C2491: 'vtkDataArrayTemplate<T>::DataElementChanged' : definition of dllimport function not allowed
2>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1257): error C2491: 'vtkDataArrayTemplate<T>::ClearLookup' : definition of dllimport function not allowed
2>
2>Build FAILED.
2>
2>Time Elapsed 00:00:01.77
4>------ Build started: Project: _Renderer, Configuration: Release x64 ------
4>Build started 2014/5/16 12:35:48.
4>InitializeBuildStatus:
4> Touching "_Renderer.dir\Release\_Renderer.unsuccessfulbuild".
4>CustomBuild:
4> All outputs are up-to-date.
4>ClCompile:
4> Renderer_wrap.cxx
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.h(331): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(32): error C2491: 'vtkArrayIteratorTemplate<T>::New' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(35): error C2491: 'vtkArrayIteratorTemplate<T>::SetArray' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(42): error C2491: 'vtkArrayIteratorTemplate<T>::vtkArrayIteratorTemplate' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(50): error C2491: 'vtkArrayIteratorTemplate<T>::~vtkArrayIteratorTemplate' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(62): error C2491: 'vtkArrayIteratorTemplate<T>::Initialize' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(73): error C2491: 'vtkArrayIteratorTemplate<T>::GetNumberOfTuples' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(84): error C2491: 'vtkArrayIteratorTemplate<T>::GetNumberOfValues' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(95): error C2491: 'vtkArrayIteratorTemplate<T>::GetNumberOfComponents' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(102): error C2491: 'vtkArrayIteratorTemplate<T>::GetTuple' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(109): error C2491: 'vtkArrayIteratorTemplate<T>::GetDataType' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(116): error C2491: 'vtkArrayIteratorTemplate<T>::GetDataTypeSize' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx(133): error C2491: 'vtkArrayIteratorTemplate<T>::PrintSelf' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(82): error C2491: 'vtkDataArrayTemplate<T>::vtkDataArrayTemplate' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(97): error C2491: 'vtkDataArrayTemplate<T>::~vtkDataArrayTemplate' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(122): error C2491: 'vtkDataArrayTemplate<T>::SetArray' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(161): error C2491: 'vtkDataArrayTemplate<T>::Allocate' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(173): error C2491: 'vtkDataArrayTemplate<T>::Initialize' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(238): error C2491: 'vtkDataArrayTemplate<T>::DeepCopy' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(254): error C2491: 'vtkDataArrayTemplate<T>::PrintSelf' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(274): error C2491: 'vtkDataArrayTemplate<T>::DeleteArray' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(383): error C2491: 'vtkDataArrayTemplate<T>::ResizeAndExtend' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(399): error C2491: 'vtkDataArrayTemplate<T>::Resize' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(408): error C2491: 'vtkDataArrayTemplate<T>::SetNumberOfTuples' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(440): error C2491: 'vtkDataArrayTemplate<T>::SetTuple' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(485): error C2491: 'vtkDataArrayTemplate<T>::InsertTuple' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(525): error C2491: 'vtkDataArrayTemplate<T>::InsertNextTuple' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(604): error C2491: 'vtkDataArrayTemplate<T>::GetTuple' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(616): error C2491: 'vtkDataArrayTemplate<T>::GetTuple' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(627): error C2491: 'vtkDataArrayTemplate<T>::GetTupleValue' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(640): error C2491: 'vtkDataArrayTemplate<T>::SetTuple' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(651): error C2491: 'vtkDataArrayTemplate<T>::SetTuple' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(662): error C2491: 'vtkDataArrayTemplate<T>::SetTupleValue' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(682): error C2491: 'vtkDataArrayTemplate<T>::InsertTuple' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(699): error C2491: 'vtkDataArrayTemplate<T>::InsertTuple' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(716): error C2491: 'vtkDataArrayTemplate<T>::InsertTupleValue' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(736): error C2491: 'vtkDataArrayTemplate<T>::InsertNextTuple' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(754): error C2491: 'vtkDataArrayTemplate<T>::InsertNextTuple' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(772): error C2491: 'vtkDataArrayTemplate<T>::InsertNextTupleValue' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(799): error C2491: 'vtkDataArrayTemplate<T>::RemoveTuple' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(807): error C2491: 'vtkDataArrayTemplate<T>::RemoveFirstTuple' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(815): error C2491: 'vtkDataArrayTemplate<T>::RemoveLastTuple' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(824): error C2491: 'vtkDataArrayTemplate<T>::GetComponent' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(836): error C2491: 'vtkDataArrayTemplate<T>::SetComponent' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(844): error C2491: 'vtkDataArrayTemplate<T>::InsertComponent' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(855): error C2491: 'vtkDataArrayTemplate<T>::SetNumberOfValues' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(876): error C2491: 'vtkDataArrayTemplate<T>::WritePointer' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(895): error C2491: 'vtkDataArrayTemplate<T>::InsertValue' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(912): error C2491: 'vtkDataArrayTemplate<T>::SetVariantValue' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(920): error C2491: 'vtkDataArrayTemplate<T>::InsertNextValue' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(955): error C2491: 'vtkDataArrayTemplate<T>::ComputeScalarRange' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(995): error C2491: 'vtkDataArrayTemplate<T>::ComputeVectorRange' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1006): error C2491: 'vtkDataArrayTemplate<T>::ExportToVoidPointer' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1015): error C2491: 'vtkDataArrayTemplate<T>::NewIterator' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1042): error C2491: 'vtkDataArrayTemplate<T>::UpdateLookup' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1056): error C2491: 'vtkDataArrayTemplate<T>::LookupValue' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1070): error C2491: 'vtkDataArrayTemplate<T>::LookupValue' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1149): error C2491: 'vtkDataArrayTemplate<T>::LookupValue' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1208): error C2491: 'vtkDataArrayTemplate<T>::LookupValue' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1218): error C2491: 'vtkDataArrayTemplate<T>::DataChanged' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1246): error C2491: 'vtkDataArrayTemplate<T>::DataElementChanged' : definition of dllimport function not allowed
4>c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx(1257): error C2491: 'vtkDataArrayTemplate<T>::ClearLookup' : definition of dllimport function not allowed
4>e:\texgen development\work\texgen source code\core\SectionHybrid.h(55): warning C4267: 'return' : conversion from 'size_t' to 'int', possible loss of data
4>
4>Build FAILED.
4>
4>Time Elapsed 00:00:01.41
5>------ Build started: Project: ALL_BUILD, Configuration: Release x64 ------
5>Build started 2014/5/16 12:35:50.
5>InitializeBuildStatus:
5> Creating "x64\Release\ALL_BUILD\ALL_BUILD.unsuccessfulbuild" because "AlwaysCreate" was specified.
5>CustomBuild:
5> Build all projects
5>FinalizeBuildStatus:
5> Deleting file "x64\Release\ALL_BUILD\ALL_BUILD.unsuccessfulbuild".
5> Touching "x64\Release\ALL_BUILD\ALL_BUILD.lastbuildstate".
5>
5>Build succeeded.
5>
5>Time Elapsed 00:00:00.23
========== Build: 2 succeeded, 3 failed, 7 up-to-date, 0 skipped ==========
Re: Compiled errors when executing minimal build
[Continued]
The errors copied from the Error List are listed below.
The errors copied from the Error List are listed below.
- Error 1 error LNK2019: unresolved external symbol __imp_PyString_AsString referenced in function "char * __cdecl SWIG_Python_str_AsChar(struct _object *)" (?SWIG_Python_str_AsChar@@YAPEADPEAU_object@@@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 2 error LNK2019: unresolved external symbol __imp_PyString_FromString referenced in function "struct _object * __cdecl SWIG_Python_str_FromChar(char const *)" (?SWIG_Python_str_FromChar@@YAPEAU_object@@PEBD@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 3 error LNK2019: unresolved external symbol __imp_PyExc_RuntimeError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 4 error LNK2019: unresolved external symbol __imp_PyExc_AttributeError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 5 error LNK2019: unresolved external symbol __imp_PyExc_SystemError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 6 error LNK2019: unresolved external symbol __imp_PyExc_ValueError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 7 error LNK2019: unresolved external symbol __imp_PyExc_SyntaxError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 8 error LNK2019: unresolved external symbol __imp_PyExc_OverflowError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 9 error LNK2019: unresolved external symbol __imp_PyExc_ZeroDivisionError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 10 error LNK2019: unresolved external symbol __imp_PyExc_TypeError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 11 error LNK2019: unresolved external symbol __imp_PyExc_IndexError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 12 error LNK2019: unresolved external symbol __imp_PyExc_IOError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 13 error LNK2019: unresolved external symbol __imp_PyExc_MemoryError referenced in function "struct _object * __cdecl SWIG_Python_ErrorType(int)" (?SWIG_Python_ErrorType@@YAPEAU_object@@H@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 14 error LNK2019: unresolved external symbol __imp_PyErr_SetString referenced in function "void __cdecl SWIG_Python_AddErrorMsg(char const *)" (?SWIG_Python_AddErrorMsg@@YAXPEBD@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 15 error LNK2019: unresolved external symbol __imp_PyErr_Format referenced in function "void __cdecl SWIG_Python_AddErrorMsg(char const *)" (?SWIG_Python_AddErrorMsg@@YAXPEBD@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 16 error LNK2019: unresolved external symbol __imp_PyErr_Clear referenced in function "void __cdecl SWIG_Python_AddErrorMsg(char const *)" (?SWIG_Python_AddErrorMsg@@YAXPEBD@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 17 error LNK2019: unresolved external symbol __imp_PyObject_Str referenced in function "void __cdecl SWIG_Python_AddErrorMsg(char const *)" (?SWIG_Python_AddErrorMsg@@YAXPEBD@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 18 error LNK2019: unresolved external symbol __imp_PyErr_Fetch referenced in function "void __cdecl SWIG_Python_AddErrorMsg(char const *)" (?SWIG_Python_AddErrorMsg@@YAXPEBD@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 19 error LNK2019: unresolved external symbol __imp_PyErr_Occurred referenced in function "void __cdecl SWIG_Python_AddErrorMsg(char const *)" (?SWIG_Python_AddErrorMsg@@YAXPEBD@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 20 error LNK2019: unresolved external symbol __imp_PyErr_SetObject referenced in function "void __cdecl SWIG_Python_SetErrorObj(struct _object *,struct _object *)" (?SWIG_Python_SetErrorObj@@YAXPEAU_object@@0@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 21 error LNK2019: unresolved external symbol __imp_PyDict_SetItemString referenced in function "void __cdecl SWIG_Python_SetConstant(struct _object *,char const *,struct _object *)" (?SWIG_Python_SetConstant@@YAXPEAU_object@@PEBD0@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 22 error LNK2019: unresolved external symbol __imp_Py_BuildValue referenced in function _SWIG_Py_None E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 23 error LNK2019: unresolved external symbol __imp_PyTuple_SetItem referenced in function SwigPyClientData_New E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 24 error LNK2019: unresolved external symbol __imp_PyTuple_New referenced in function SwigPyClientData_New E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 25 error LNK2019: unresolved external symbol __imp_PyObject_GetAttrString referenced in function SwigPyClientData_New E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 26 error LNK2019: unresolved external symbol __imp_PyClass_Type referenced in function SwigPyClientData_New E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 27 error LNK2019: unresolved external symbol __imp_PyLong_FromVoidPtr referenced in function SwigPyObject_long E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 28 error LNK2019: unresolved external symbol __imp_PyString_Format referenced in function SwigPyObject_format E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 29 error LNK2019: unresolved external symbol __imp_PyString_ConcatAndDel referenced in function SwigPyObject_repr E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 30 error LNK2019: unresolved external symbol __imp_PyString_FromFormat referenced in function SwigPyObject_repr E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 31 error LNK2019: unresolved external symbol __imp_PyBool_FromLong referenced in function SwigPyObject_richcompare E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 32 error LNK2019: unresolved external symbol __imp__Py_NotImplementedStruct referenced in function SwigPyObject_richcompare E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 33 error LNK2019: unresolved external symbol __imp_PyObject_IsTrue referenced in function SwigPyObject_own E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 34 error LNK2019: unresolved external symbol __imp_PyArg_UnpackTuple referenced in function SwigPyObject_own E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 35 error LNK2019: unresolved external symbol __imp_PyObject_Init referenced in function SwigPyObject_New E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 36 error LNK2019: unresolved external symbol __imp_PyObject_Malloc referenced in function SwigPyObject_New E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 37 error LNK2019: unresolved external symbol __imp_PyObject_Free referenced in function SwigPyPacked_dealloc E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 38 error LNK2019: unresolved external symbol __imp_PyType_Ready referenced in function SwigPyPacked_TypeOnce E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 39 error LNK2019: unresolved external symbol __imp_PyObject_GenericGetAttr referenced in function SwigPyPacked_TypeOnce E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 40 error LNK2019: unresolved external symbol __imp_PyInstance_NewRaw referenced in function SWIG_Python_NewShadowInstance E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 41 error LNK2019: unresolved external symbol __imp_PyDict_SetItem referenced in function SWIG_Python_NewShadowInstance E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 42 error LNK2019: unresolved external symbol __imp_PyDict_New referenced in function SWIG_Python_NewShadowInstance E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 43 error LNK2019: unresolved external symbol __imp__PyObject_GetDictPtr referenced in function SWIG_Python_NewShadowInstance E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 44 error LNK2019: unresolved external symbol __imp_PyObject_Call referenced in function SWIG_Python_NewShadowInstance E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 45 error LNK2019: unresolved external symbol __imp__PyObject_New referenced in function SWIG_Python_NewPointerObj E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 46 error LNK2019: unresolved external symbol __imp_PyCapsule_Import referenced in function SWIG_Python_GetModule E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 47 error LNK2019: unresolved external symbol __imp_PyCapsule_GetPointer referenced in function SWIG_Python_DestroyModule E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 48 error LNK2019: unresolved external symbol __imp_PyModule_AddObject referenced in function SWIG_Python_SetModule E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 49 error LNK2019: unresolved external symbol __imp_PyCapsule_New referenced in function SWIG_Python_SetModule E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 50 error LNK2019: unresolved external symbol __imp_Py_InitModule4_64 referenced in function SWIG_Python_SetModule E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 51 error LNK2019: unresolved external symbol __imp_PyFloat_AsDouble referenced in function "int __cdecl SWIG_AsVal_double(struct _object *,double *)" (?SWIG_AsVal_double@@YAHPEAU_object@@PEAN@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 52 error LNK2019: unresolved external symbol __imp_PyLong_AsDouble referenced in function "int __cdecl SWIG_AsVal_double(struct _object *,double *)" (?SWIG_AsVal_double@@YAHPEAU_object@@PEAN@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 53 error LNK2019: unresolved external symbol __imp_PyInt_AsLong referenced in function "int __cdecl SWIG_AsVal_double(struct _object *,double *)" (?SWIG_AsVal_double@@YAHPEAU_object@@PEAN@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 54 error LNK2019: unresolved external symbol __imp_PyType_IsSubtype referenced in function "int __cdecl SWIG_AsVal_double(struct _object *,double *)" (?SWIG_AsVal_double@@YAHPEAU_object@@PEAN@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 55 error LNK2019: unresolved external symbol __imp_PyFloat_Type referenced in function "int __cdecl SWIG_AsVal_double(struct _object *,double *)" (?SWIG_AsVal_double@@YAHPEAU_object@@PEAN@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 56 error LNK2019: unresolved external symbol __imp_PyLong_AsUnsignedLong referenced in function "int __cdecl SWIG_AsVal_unsigned_SS_long(struct _object *,unsigned long *)" (?SWIG_AsVal_unsigned_SS_long@@YAHPEAU_object@@PEAK@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 57 error LNK2019: unresolved external symbol __imp_PyLong_FromLong referenced in function "struct _object * __cdecl SWIG_From_ptrdiff_t(__int64)" (?SWIG_From_ptrdiff_t@@YAPEAU_object@@_J@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 58 error LNK2019: unresolved external symbol __imp_PyLong_AsLong referenced in function "int __cdecl SWIG_AsVal_long(struct _object *,long *)" (?SWIG_AsVal_long@@YAHPEAU_object@@PEAJ@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 59 error LNK2019: unresolved external symbol __imp_PyInt_FromLong referenced in function "struct _object * __cdecl SWIG_From_int(int)" (?SWIG_From_int@@YAPEAU_object@@H@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 60 error LNK2019: unresolved external symbol __imp_PyString_FromStringAndSize referenced in function "struct _object * __cdecl SWIG_FromCharPtrAndSize(char const *,unsigned __int64)" (?SWIG_FromCharPtrAndSize@@YAPEAU_object@@PEBD_K@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 61 error LNK2019: unresolved external symbol __imp_PyLong_FromUnsignedLong referenced in function "struct _object * __cdecl SWIG_From_unsigned_SS_long(unsigned long)" (?SWIG_From_unsigned_SS_long@@YAPEAU_object@@K@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 62 error LNK2019: unresolved external symbol __imp_PyFloat_FromDouble referenced in function "public: static struct _object * __cdecl swig::traits_from<double>::from(double const &)" (?from@?$traits_from@N@swig@@SAPEAU_object@@AEBN@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 63 error LNK2019: unresolved external symbol __imp_PyArg_ParseTuple referenced in function SwigPyIterator_swigregister E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 64 error LNK2019: unresolved external symbol __imp_PyExc_NotImplementedError referenced in function _wrap_RandomNormalDistribution E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 65 error LNK2019: unresolved external symbol __imp_PyObject_Size referenced in function _wrap_RandomNormalDistribution E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 66 error LNK2019: unresolved external symbol __imp_PySequence_Check referenced in function "public: __cdecl swig::SwigPySequence_Cont<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >::SwigPySequence_Cont<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >(struct _object *)" (??0?$SwigPySequence_Cont@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@swig@@QEAA@PEAU_object@@@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 67 error LNK2019: unresolved external symbol __imp_PySequence_Size referenced in function "public: int __cdecl swig::SwigPySequence_Cont<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >::size(void)const " (?size@?$SwigPySequence_Cont@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@swig@@QEBAHXZ) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 68 error LNK2019: unresolved external symbol __imp_PyObject_CallFunctionObjArgs referenced in function SwigPyObject_dealloc E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 69 error LNK2019: unresolved external symbol __imp_PyModule_GetDict referenced in function init_Core E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 70 error LNK2019: unresolved external symbol __imp_PyObject_GetAttr referenced in function SWIG_Python_GetSwigThis E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 71 error LNK2019: unresolved external symbol __imp__PyWeakref_CallableProxyType referenced in function SWIG_Python_GetSwigThis E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 72 error LNK2019: unresolved external symbol __imp__PyWeakref_ProxyType referenced in function SWIG_Python_GetSwigThis E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 73 error LNK2019: unresolved external symbol __imp_PyDict_GetItem referenced in function SWIG_Python_GetSwigThis E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 74 error LNK2019: unresolved external symbol __imp__PyInstance_Lookup referenced in function SWIG_Python_GetSwigThis E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 75 error LNK2019: unresolved external symbol __imp_PyInstance_Type referenced in function SWIG_Python_GetSwigThis E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 76 error LNK2019: unresolved external symbol __imp_PyCFunction_Type referenced in function SWIG_Python_ConvertFunctionPtr E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 77 error LNK2019: unresolved external symbol __imp_PyString_AsStringAndSize referenced in function "int __cdecl SWIG_AsCharPtrAndSize(struct _object *,char * *,unsigned __int64 *,int *)" (?SWIG_AsCharPtrAndSize@@YAHPEAU_object@@PEAPEADPEA_KPEAH@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 78 error LNK2019: unresolved external symbol __imp_PyExc_StopIteration referenced in function _wrap_SwigPyIterator_value$catch$0 E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 79 error LNK2019: unresolved external symbol __imp_PySequence_GetItem referenced in function "public: bool __cdecl swig::SwigPySequence_Cont<double>::check(bool)const " (?check@?$SwigPySequence_Cont@N@swig@@QEBA_N_N@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 80 error LNK2019: unresolved external symbol __imp_PyList_New referenced in function "struct _object * __cdecl std_map_Sl_std_string_Sc_TexGen_CTextile_Sm__Sg__keys(class std::map<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class TexGen::CTextile *,struct std::less<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >,class std::allocator<struct std::pair<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const ,class TexGen::CTextile *> > > *)" (?std_map_Sl_std_string_Sc_TexGen_CTextile_Sm__Sg__keys@@YAPEAU_object@@PEAV?$map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAVCTextile@TexGen@@U?$less@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@U?$pair@$$CBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAVCTextile@TexGen@@@std@@@2@@std@@@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 81 error LNK2019: unresolved external symbol __imp_PySlice_GetIndices referenced in function "void __cdecl std_list_Sl_int_Sg____setitem____SWIG_1(class std::list<int,class std::allocator<int> > *,struct PySliceObject *)" (?std_list_Sl_int_Sg____setitem____SWIG_1@@YAXPEAV?$list@HV?$allocator@H@std@@@std@@PEAUPySliceObject@@@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 82 error LNK2019: unresolved external symbol __imp_PySlice_Type referenced in function "void __cdecl std_list_Sl_int_Sg____setitem____SWIG_1(class std::list<int,class std::allocator<int> > *,struct PySliceObject *)" (?std_list_Sl_int_Sg____setitem____SWIG_1@@YAXPEAV?$list@HV?$allocator@H@std@@@std@@PEAUPySliceObject@@@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 83 error LNK2019: unresolved external symbol __imp_PyObject_CallMethod referenced in function "public: virtual void __cdecl SwigDirector_CTextileDeformer::DeformTextile(class TexGen::CTextile &,bool)" (?DeformTextile@SwigDirector_CTextileDeformer@@UEAAXAEAVCTextile@TexGen@@_N@Z) E:\TexGen Development\Work\TexGen sln\Python\Core_wrap.obj
Error 84 error LNK1120: 83 unresolved externals E:\TexGen Development\Work\TexGen sln\Release\_Core.pyd
Error 85 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.h 331
Error 86 error C2491: 'vtkArrayIteratorTemplate<T>::New' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 32
Error 87 error C2491: 'vtkArrayIteratorTemplate<T>::SetArray' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 35
Error 88 error C2491: 'vtkArrayIteratorTemplate<T>::vtkArrayIteratorTemplate' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 42
Error 89 error C2491: 'vtkArrayIteratorTemplate<T>::~vtkArrayIteratorTemplate' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 50
Error 90 error C2491: 'vtkArrayIteratorTemplate<T>::Initialize' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 62
Error 91 error C2491: 'vtkArrayIteratorTemplate<T>::GetNumberOfTuples' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 73
Error 92 error C2491: 'vtkArrayIteratorTemplate<T>::GetNumberOfValues' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 84
Error 93 error C2491: 'vtkArrayIteratorTemplate<T>::GetNumberOfComponents' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 95
Error 94 error C2491: 'vtkArrayIteratorTemplate<T>::GetTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 102
Error 95 error C2491: 'vtkArrayIteratorTemplate<T>::GetDataType' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 109
Error 96 error C2491: 'vtkArrayIteratorTemplate<T>::GetDataTypeSize' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 116
Error 97 error C2491: 'vtkArrayIteratorTemplate<T>::PrintSelf' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 133
Error 98 error C2491: 'vtkDataArrayTemplate<T>::vtkDataArrayTemplate' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 82
Error 99 error C2491: 'vtkDataArrayTemplate<T>::~vtkDataArrayTemplate' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 97
Error 100 error C2491: 'vtkDataArrayTemplate<T>::SetArray' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 122
Error 101 error C2491: 'vtkDataArrayTemplate<T>::Allocate' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 161
Error 102 error C2491: 'vtkDataArrayTemplate<T>::Initialize' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 173
Error 103 error C2491: 'vtkDataArrayTemplate<T>::DeepCopy' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 238
Error 104 error C2491: 'vtkDataArrayTemplate<T>::PrintSelf' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 254
Error 105 error C2491: 'vtkDataArrayTemplate<T>::DeleteArray' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 274
Error 106 error C2491: 'vtkDataArrayTemplate<T>::ResizeAndExtend' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 383
Error 107 error C2491: 'vtkDataArrayTemplate<T>::Resize' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 399
Error 108 error C2491: 'vtkDataArrayTemplate<T>::SetNumberOfTuples' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 408
Error 109 error C2491: 'vtkDataArrayTemplate<T>::SetTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 440
Error 110 error C2491: 'vtkDataArrayTemplate<T>::InsertTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 485
Error 111 error C2491: 'vtkDataArrayTemplate<T>::InsertNextTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 525
Error 112 error C2491: 'vtkDataArrayTemplate<T>::GetTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 604
Error 113 error C2491: 'vtkDataArrayTemplate<T>::GetTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 616
Error 114 error C2491: 'vtkDataArrayTemplate<T>::GetTupleValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 627
Error 115 error C2491: 'vtkDataArrayTemplate<T>::SetTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 640
Error 116 error C2491: 'vtkDataArrayTemplate<T>::SetTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 651
Error 117 error C2491: 'vtkDataArrayTemplate<T>::SetTupleValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 662
Error 118 error C2491: 'vtkDataArrayTemplate<T>::InsertTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 682
Error 119 error C2491: 'vtkDataArrayTemplate<T>::InsertTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 699
Error 120 error C2491: 'vtkDataArrayTemplate<T>::InsertTupleValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 716
Error 121 error C2491: 'vtkDataArrayTemplate<T>::InsertNextTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 736
Error 122 error C2491: 'vtkDataArrayTemplate<T>::InsertNextTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 754
Error 123 error C2491: 'vtkDataArrayTemplate<T>::InsertNextTupleValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 772
Error 124 error C2491: 'vtkDataArrayTemplate<T>::RemoveTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 799
Error 125 error C2491: 'vtkDataArrayTemplate<T>::RemoveFirstTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 807
Error 126 error C2491: 'vtkDataArrayTemplate<T>::RemoveLastTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 815
Error 127 error C2491: 'vtkDataArrayTemplate<T>::GetComponent' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 824
Error 128 error C2491: 'vtkDataArrayTemplate<T>::SetComponent' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 836
Error 129 error C2491: 'vtkDataArrayTemplate<T>::InsertComponent' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 844
Error 130 error C2491: 'vtkDataArrayTemplate<T>::SetNumberOfValues' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 855
Error 131 error C2491: 'vtkDataArrayTemplate<T>::WritePointer' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 876
Error 132 error C2491: 'vtkDataArrayTemplate<T>::InsertValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 895
Error 133 error C2491: 'vtkDataArrayTemplate<T>::SetVariantValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 912
Error 134 error C2491: 'vtkDataArrayTemplate<T>::InsertNextValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 920
Error 135 error C2491: 'vtkDataArrayTemplate<T>::ComputeScalarRange' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 955
Error 136 error C2491: 'vtkDataArrayTemplate<T>::ComputeVectorRange' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 995
Error 137 error C2491: 'vtkDataArrayTemplate<T>::ExportToVoidPointer' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1006
Error 138 error C2491: 'vtkDataArrayTemplate<T>::NewIterator' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1015
Error 139 error C2491: 'vtkDataArrayTemplate<T>::UpdateLookup' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1042
Error 140 error C2491: 'vtkDataArrayTemplate<T>::LookupValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1056
Error 141 error C2491: 'vtkDataArrayTemplate<T>::LookupValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1070
Error 142 error C2491: 'vtkDataArrayTemplate<T>::LookupValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1149
Error 143 error C2491: 'vtkDataArrayTemplate<T>::LookupValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1208
Error 144 error C2491: 'vtkDataArrayTemplate<T>::DataChanged' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1218
Error 145 error C2491: 'vtkDataArrayTemplate<T>::DataElementChanged' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1246
Error 146 error C2491: 'vtkDataArrayTemplate<T>::ClearLookup' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1257
Error 147 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.h 331
Error 148 error C2491: 'vtkArrayIteratorTemplate<T>::New' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 32
Error 149 error C2491: 'vtkArrayIteratorTemplate<T>::SetArray' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 35
Error 150 error C2491: 'vtkArrayIteratorTemplate<T>::vtkArrayIteratorTemplate' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 42
Error 151 error C2491: 'vtkArrayIteratorTemplate<T>::~vtkArrayIteratorTemplate' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 50
Error 152 error C2491: 'vtkArrayIteratorTemplate<T>::Initialize' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 62
Error 153 error C2491: 'vtkArrayIteratorTemplate<T>::GetNumberOfTuples' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 73
Error 154 error C2491: 'vtkArrayIteratorTemplate<T>::GetNumberOfValues' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 84
Error 155 error C2491: 'vtkArrayIteratorTemplate<T>::GetNumberOfComponents' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 95
Error 156 error C2491: 'vtkArrayIteratorTemplate<T>::GetTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 102
Error 157 error C2491: 'vtkArrayIteratorTemplate<T>::GetDataType' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 109
Error 158 error C2491: 'vtkArrayIteratorTemplate<T>::GetDataTypeSize' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 116
Error 159 error C2491: 'vtkArrayIteratorTemplate<T>::PrintSelf' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkArrayIteratorTemplate.txx 133
Error 160 error C2491: 'vtkDataArrayTemplate<T>::vtkDataArrayTemplate' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 82
Error 161 error C2491: 'vtkDataArrayTemplate<T>::~vtkDataArrayTemplate' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 97
Error 162 error C2491: 'vtkDataArrayTemplate<T>::SetArray' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 122
Error 163 error C2491: 'vtkDataArrayTemplate<T>::Allocate' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 161
Error 164 error C2491: 'vtkDataArrayTemplate<T>::Initialize' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 173
Error 165 error C2491: 'vtkDataArrayTemplate<T>::DeepCopy' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 238
Error 166 error C2491: 'vtkDataArrayTemplate<T>::PrintSelf' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 254
Error 167 error C2491: 'vtkDataArrayTemplate<T>::DeleteArray' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 274
Error 168 error C2491: 'vtkDataArrayTemplate<T>::ResizeAndExtend' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 383
Error 169 error C2491: 'vtkDataArrayTemplate<T>::Resize' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 399
Error 170 error C2491: 'vtkDataArrayTemplate<T>::SetNumberOfTuples' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 408
Error 171 error C2491: 'vtkDataArrayTemplate<T>::SetTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 440
Error 172 error C2491: 'vtkDataArrayTemplate<T>::InsertTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 485
Error 173 error C2491: 'vtkDataArrayTemplate<T>::InsertNextTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 525
Error 174 error C2491: 'vtkDataArrayTemplate<T>::GetTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 604
Error 175 error C2491: 'vtkDataArrayTemplate<T>::GetTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 616
Error 176 error C2491: 'vtkDataArrayTemplate<T>::GetTupleValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 627
Error 177 error C2491: 'vtkDataArrayTemplate<T>::SetTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 640
Error 178 error C2491: 'vtkDataArrayTemplate<T>::SetTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 651
Error 179 error C2491: 'vtkDataArrayTemplate<T>::SetTupleValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 662
Error 180 error C2491: 'vtkDataArrayTemplate<T>::InsertTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 682
Error 181 error C2491: 'vtkDataArrayTemplate<T>::InsertTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 699
Error 182 error C2491: 'vtkDataArrayTemplate<T>::InsertTupleValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 716
Error 183 error C2491: 'vtkDataArrayTemplate<T>::InsertNextTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 736
Error 184 error C2491: 'vtkDataArrayTemplate<T>::InsertNextTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 754
Error 185 error C2491: 'vtkDataArrayTemplate<T>::InsertNextTupleValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 772
Error 186 error C2491: 'vtkDataArrayTemplate<T>::RemoveTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 799
Error 187 error C2491: 'vtkDataArrayTemplate<T>::RemoveFirstTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 807
Error 188 error C2491: 'vtkDataArrayTemplate<T>::RemoveLastTuple' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 815
Error 189 error C2491: 'vtkDataArrayTemplate<T>::GetComponent' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 824
Error 190 error C2491: 'vtkDataArrayTemplate<T>::SetComponent' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 836
Error 191 error C2491: 'vtkDataArrayTemplate<T>::InsertComponent' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 844
Error 192 error C2491: 'vtkDataArrayTemplate<T>::SetNumberOfValues' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 855
Error 193 error C2491: 'vtkDataArrayTemplate<T>::WritePointer' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 876
Error 194 error C2491: 'vtkDataArrayTemplate<T>::InsertValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 895
Error 195 error C2491: 'vtkDataArrayTemplate<T>::SetVariantValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 912
Error 196 error C2491: 'vtkDataArrayTemplate<T>::InsertNextValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 920
Error 197 error C2491: 'vtkDataArrayTemplate<T>::ComputeScalarRange' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 955
Error 198 error C2491: 'vtkDataArrayTemplate<T>::ComputeVectorRange' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 995
Error 199 error C2491: 'vtkDataArrayTemplate<T>::ExportToVoidPointer' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1006
Error 200 error C2491: 'vtkDataArrayTemplate<T>::NewIterator' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1015
Error 201 error C2491: 'vtkDataArrayTemplate<T>::UpdateLookup' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1042
Error 202 error C2491: 'vtkDataArrayTemplate<T>::LookupValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1056
Error 203 error C2491: 'vtkDataArrayTemplate<T>::LookupValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1070
Error 204 error C2491: 'vtkDataArrayTemplate<T>::LookupValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1149
Error 205 error C2491: 'vtkDataArrayTemplate<T>::LookupValue' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1208
Error 206 error C2491: 'vtkDataArrayTemplate<T>::DataChanged' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1218
Error 207 error C2491: 'vtkDataArrayTemplate<T>::DataElementChanged' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1246
Error 208 error C2491: 'vtkDataArrayTemplate<T>::ClearLookup' : definition of dllimport function not allowed c:\vtk-5.10.1\vtk5.10.1\common\vtkDataArrayTemplate.txx 1257
Re: Compiled errors when executing minimal build
Hi, louise.
I have already fixed some of the above errors. Part of the errors is caused by the Python "64 bit", while the others are induced by the vtk libraries' dependence. Now, a new problem has just cropped up. After generating the "BUILD_PYTHON_INTERFACE" in CMake successfully, I got some errors when building "TexGen.sln" in VS 2010.
Any help would be greatly appreciated.
Best wishes,
Wanghao.
I have already fixed some of the above errors. Part of the errors is caused by the Python "64 bit", while the others are induced by the vtk libraries' dependence. Now, a new problem has just cropped up. After generating the "BUILD_PYTHON_INTERFACE" in CMake successfully, I got some errors when building "TexGen.sln" in VS 2010.
Any help would be greatly appreciated.
Best wishes,
Wanghao.
Re: Compiled errors when executing minimal build
Hi Hao wang,
I'm afraid that I haven't had a chance to try to build TexGen with VS2010 yet. From the error messages it looks like there is a change in how the standard library works with the new version. Maybe searching in the Microsoft documentation to see what changes have been made between VS2008 and 2010 might help.
Given that the menu option for the geometry solver is currently removed from TexGen (and assuming that you weren't planning on using it) you may find it easiest to to a search for 'GeometrySolve' and just remove the geometry solver from the project.
Sorry not to be more help,
Louise
I'm afraid that I haven't had a chance to try to build TexGen with VS2010 yet. From the error messages it looks like there is a change in how the standard library works with the new version. Maybe searching in the Microsoft documentation to see what changes have been made between VS2008 and 2010 might help.
Given that the menu option for the geometry solver is currently removed from TexGen (and assuming that you weren't planning on using it) you may find it easiest to to a search for 'GeometrySolve' and just remove the geometry solver from the project.
Sorry not to be more help,
Louise
Re: Compiled errors when executing minimal build
Hi, louise.
I recompiled TexGen in VS2008 x64. But the above errors are still exists. I cannot find what's wrong with it. It is strange there is no research related to the errors in google.
I remember I have changed the file "CMakeList.txt" in the directory of "Renderer\" before building the "BUILD_PYTHON_IMTERFACE". If not, some warnings will throw out, like "CMP0008:Libraries linked by full-path must have a valid library file name". The changes in "CMakeList.txt" (i.e. add file extension ".lib" to the libraries' name) are all in the program fragment "IF (WIN32) … ENDIF (WIN32)", and can solve the "CMP0008" warnings. Example: "${VTK_LIBRARY_DIRS}/vtkGraphics.lib". Is this the reason causes the errors?
BTW, the module "geometry solver" could be very important to my work if the role of this module is adjusting the interferences between yarns.(I'm not quite sure for this.) So, this module cannot removed from the project.
Best wishes,
wanghao.
I recompiled TexGen in VS2008 x64. But the above errors are still exists. I cannot find what's wrong with it. It is strange there is no research related to the errors in google.
I remember I have changed the file "CMakeList.txt" in the directory of "Renderer\" before building the "BUILD_PYTHON_IMTERFACE". If not, some warnings will throw out, like "CMP0008:Libraries linked by full-path must have a valid library file name". The changes in "CMakeList.txt" (i.e. add file extension ".lib" to the libraries' name) are all in the program fragment "IF (WIN32) … ENDIF (WIN32)", and can solve the "CMP0008" warnings. Example: "${VTK_LIBRARY_DIRS}/vtkGraphics.lib". Is this the reason causes the errors?
BTW, the module "geometry solver" could be very important to my work if the role of this module is adjusting the interferences between yarns.(I'm not quite sure for this.) So, this module cannot removed from the project.
Best wishes,
wanghao.
Re: Compiled errors when executing minimal build
Hi Mansin,
I think that your problems may be caused by trying to build with Python 2.7. TexGen is currently built with Python 2.6.
Try changing to Python 2.6 and see how you get on. Also make sure that you have used the versions of software specified in the documentation.
Best regards,
Louise
I think that your problems may be caused by trying to build with Python 2.7. TexGen is currently built with Python 2.6.
Try changing to Python 2.6 and see how you get on. Also make sure that you have used the versions of software specified in the documentation.
Best regards,
Louise