mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 09:52:27 -04:00
oops, left in a parameter
This commit is contained in:
parent
2cdd26901e
commit
4274626c67
@ -57,11 +57,8 @@ elif sys.platform == 'darwin':
|
||||
# OSX
|
||||
compileObj = "gcc -fPIC -c -o %(basename)s.o -O2 -I%(pythonIPath)s %(filename)s"
|
||||
linkExe = "gcc -o %(basename)s %(basename)s.o -framework Python"
|
||||
linkDll = "gcc -undefined dynamic_lookup -bundle -o %(basename)s.so %(basename)s.o -framework Python"
|
||||
#PythonLPath = '/Users/drose/player/osxtools/built/lib'
|
||||
#PythonVersion = '2.4_panda'
|
||||
#linkExe = "gcc -o %(basename)s %(basename)s.o -lpython%(pythonVersion)s -L%(pythonLPath)s"
|
||||
#linkDll = "gcc -undefined dynamic_lookup -bundle -o %(basename)s.so %(basename)s.o -lpython%(pythonVersion)s -L%(pythonLPath)s"
|
||||
linkDll = "gcc -undefined dynamic_lookup -bundle -o %(basename)s.so %(basename)s.o"
|
||||
|
||||
else:
|
||||
# Linux
|
||||
|
@ -461,7 +461,7 @@ class AppRunner(DirectObject):
|
||||
return (osFilename, tokens)
|
||||
|
||||
if __name__ == '__main__':
|
||||
runner = AppRunner(0)
|
||||
runner = AppRunner()
|
||||
runner.gotWindow = True
|
||||
try:
|
||||
runner.setP3DFilename(*runner.parseSysArgs())
|
||||
|
Loading…
x
Reference in New Issue
Block a user