Thanks for your answers,
Regards,
Jean-Luc
- Original Message -
From: Ronald Oussoren
To: k...@codebykevin.com
Cc: pythonmac-sig@python.org
Sent: Thursday, December 13, 2012 4:06 PM
Subject: Re: [Pythonmac-SIG] KeyError: 'CFLAGS'
On Dec 13, 2012, at 02:36
On Dec 13, 2012, at 02:36 PM, Kevin Walzer wrote:On 12/13/12 4:24 AM, Jean-Luc Régnier wrote: > and the keyword "CFLAGS" indeed does not exist... > Should I add something in my path directory ? (I am using windows XP) > Best regards, I think the basic problem is that you can't build a Mac app on
On 12/13/12 4:24 AM, Jean-Luc Régnier wrote:
and the keyword "CFLAGS" indeed does not exist...
Should I add something in my path directory ? (I am using windows XP)
Best regards,
I think the basic problem is that you can't build a Mac app on
Windows...py2app is a Mac-specific tool. You should
Hello All,
I am trying to compile a Python27 application for mac using a simple script:
from setuptools import setup
setup(
app=["GF-soft.pyw"],
setup_requires=["py2app"],
)
and ended up with this:
setup.py, line 68, in main
BASE_CFLAGS = cfg['CFLAGS']
KeyError: 'CFLAGS'
In "setup.py"