Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Installed XCODE 4.5.1 in my Mac machine(mac osx lion 10.7 version). Installed python 3.2.2 and pyqt4. When i tried to install cx_Freeze 4.2.3, installation error occurred with gcc4.2 failure.

If anyone hav installed cx_freeze successfully in mac osx lion with xcode 4.5.x, pls let me know how it can be done.

Following is the details of installation error.

myMacLion:cx_Freeze-4.2.3 test$ env ARCHFLAGS="-arch i386" python3.2 setup.py build
adding base module named ......
...........
adding base module named warnings
adding base module named weakref
running build
running build_py
running build_ext
building 'cx_Freeze.util' extension
Compiling with an SDK that doesn't seem to exist: /Developer/SDKs/MacOSX10.6.sdk
Please check your Xcode installation
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -DNDEBUG -g -O3 -isysroot /Developer/SDKs/MacOSX10.6.sdk -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -I/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m -c source/util.c -o build/temp.macosx-10.6-i386-3.2/source/util.o
In file included from source/util.c:6:    /Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m/Python.h:34:20: error: stdlib.h: No such file or directory
/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m/unicodeobject.h:1437: error: ‘PyUnicodeUCS2_Count’ declared as function returning a function
/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m/unicodeobject.h:1526: error: ‘_PyUnicode_InsertThousandsGroupingLocale’ declared as function returning a function
/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m/unicodeobject.h:1539: error: ‘_PyUnicode_InsertThousandsGrouping’ declared as function returning a function
/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m/unicodeobject.h:1627: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘Py_UNICODE_strlen’
/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m/unicodeobject.h:1641: error: expected declaration specifiers or ‘...’ before ‘size_t’
/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m/unicodeobject.h:1651: error: expected declaration specifiers or ‘...’ before ‘size_t’
In file included from /Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m/Python.h:76,
                 from source/util.c:6:
/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m/longobject.h:20: warning: parameter names (without types) in function declaration
/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m/longobject.h:25: error: ‘PyLong_AsSsize_t’ declared as function returning a function
....
....
....
/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m/fileutils.h:32: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m/fileutils.h:38: error: expected ‘;’, ‘,’ or ‘)’ before ‘*’ token
/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m/fileutils.h:44: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m/fileutils.h:50: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token
source/util.c: In function ‘ExtSetOptimizeFlag’:
source/util.c:410: error: ‘NULL’ undeclared (first use in this function)
source/util.c:410: error: (Each undeclared identifier is reported only once
source/util.c:410: error: for each function it appears in.)
source/util.c:411: error: ‘PyObject’ has no member named ‘ob_refcnt’
source/util.c: At top level:
source/util.c:430: error: ‘NULL’ undeclared here (not in a function)
source/util.c:439: warning: excess elements in struct initializer
source/util.c:439: warning: (near initialization for ‘g_ModuleDef.m_base.ob_base’)
source/util.c:439: warning: excess elements in struct initializer
source/util.c:439: warning: (near initialization for ‘g_ModuleDef.m_base.ob_base’)
source/util.c:439: error: initializer element is not constant
source/util.c:439: error: (near initialization for ‘g_ModuleDef.m_base.m_init’)
source/util.c:439: error: initializer element is not constant
source/util.c:439: error: (near initialization for ‘g_ModuleDef.m_base.m_copy’)
source/util.c:441: error: initializer element is not constant
source/util.c:441: error: (near initialization for ‘g_ModuleDef.m_doc’)
source/util.c:442: warning: initialization makes pointer from integer without a cast
source/util.c:444: error: initializer element is not constant
source/util.c:444: error: (near initialization for ‘g_ModuleDef.m_reload’)
source/util.c:445: error: initializer element is not constant
source/util.c:445: error: (near initialization for ‘g_ModuleDef.m_traverse’)
source/util.c:446: error: initializer element is not constant
source/util.c:446: error: (near initialization for ‘g_ModuleDef.m_clear’)
source/util.c:448: error: initializer element is not constant
source/util.c:448: error: (near initialization for ‘g_ModuleDef.m_free’)
source/util.c: In function ‘Module_Initialize’:
source/util.c:466: warning: return from incompatible pointer type
error: command 'gcc-4.2' failed with exit status 1

Found some lines from above details. Confused why it searches some 10.6 SDK in /Developer location where i have not installed my xcode developer tools.

Compiling with an SDK that doesn't seem to exist: /Developer/SDKs/MacOSX10.6.sdk
Please check your Xcode installation
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -DNDEBUG -g -O3 -isysroot /Developer/SDKs/MacOSX10.6.sdk -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -I/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m -c source/util.c -o build/temp.macosx-10.6-i386-3.2/source/util.o

Thanks

share|improve this question
The latest version of cx_Freeze is 4.3.1 - can you try with that? – Thomas K Dec 7 '12 at 12:54

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.