OS X Project Builder
Moderators: jesterKing, stiv
OS X Project Builder
Is there any progress being made with Project Builder ?
Is compiling OS X version better off being done with pbxbuild / Project Builder or plain Ol' command line GCC? How was the original OS X port compiled? Code Warrior, Project Builder or gcc?
Those that are working on the OS X build please drop me a line.
brojohnson@comcast.net I can also be reached at brojohnson on AIM and I'm usually in #blenderchat as powermacg4
Is compiling OS X version better off being done with pbxbuild / Project Builder or plain Ol' command line GCC? How was the original OS X port compiled? Code Warrior, Project Builder or gcc?
Those that are working on the OS X build please drop me a line.
brojohnson@comcast.net I can also be reached at brojohnson on AIM and I'm usually in #blenderchat as powermacg4
On the committers list there is progress being made every so often, with new versions being comitted to the CVS server. I've yet to compile the whole thing yet, but the closest I've gotten thus far has been with the command line. So far, the project builder files don't work on my system.
- Charles
http://www.sugarandcyanide.com/
http://www.sugarandcyanide.com/
OS X
Are there the beginnings of Project Builder files in the CVS for downloading? I'd also like to get rolling with being able to compile Blender without using the commandline...
Thanks!
Thanks!
-
- Posts: 442
- Joined: Wed Oct 23, 2002 2:47 pm
Trying to compile OSX version of Blender using autoconfigure I got the same error reported by Velik in
http://www.blender.org/modules.php?op=m ... opic&t=889
I cant solve the problem but I hope the next release will fix it.
F1
http://www.blender.org/modules.php?op=m ... opic&t=889

I cant solve the problem but I hope the next release will fix it.
F1
-
- Posts: 0
- Joined: Thu Feb 06, 2003 11:01 pm
- Location: Richmond, VA
- Contact:
Some Help
Hello:
Using a bash script given to me by one of the more experienced Blender coders, I have had no problem successfully compiling using the command line. The script is simple:
Naturally, you'll need to change the paths listed here... but if you do so you won't have to edit paths anywhere else. Then just CD into the blender directory and type "bash ../makeblenderscript" and it'll do its thing.
I also have a working ProjectBuilder with Maarten's help, but at the moment the binary it builds is NOT the same as from the command line by a LONG shot, and there are a lot of problems with it that I haven't yet ironed out. It works... but the code isn't as stable (or as small...) as the command line script above generates.
Hope it helps: if Maarten agrees that my PB file is usable he'll commit it to the CVS soon.
-Bischofftep
Using a bash script given to me by one of the more experienced Blender coders, I have had no problem successfully compiling using the command line. The script is simple:
Code: Select all
#!/bin/bash
rm -f /tmp/.nanguess
export MAKE=make
export NANBLENDERHOME="/Users/developer/Projects/blender"
export OS="darwin"
export NAN_NSPR="/Users/developer/Projects/nspr422-Darwin6.4"
export MAKEFLAGS="-w -I $NANBLENDERHOME/source --no-print-directory"
export HMAKE="$NANBLENDERHOME/source/tools/hmake/hmake"
echo
echo NANBLENDERHOME : ${NANBLENDERHOME}
echo OS : ${OS}
export NAN_PYTHON="/Library/Frameworks/Python.framework/Versions/2.2"
$HMAKE -C extern/
if [ $? -eq 0 ]; then
$HMAKE -C intern/
if [ $? -eq 0 ]; then
$HMAKE -C source/
fi
fi
I also have a working ProjectBuilder with Maarten's help, but at the moment the binary it builds is NOT the same as from the command line by a LONG shot, and there are a lot of problems with it that I haven't yet ironed out. It works... but the code isn't as stable (or as small...) as the command line script above generates.
Hope it helps: if Maarten agrees that my PB file is usable he'll commit it to the CVS soon.
-Bischofftep
Re: Some Help
I look forward to that - thanks!Bischofftep wrote: I also have a working ProjectBuilder with Maarten's help, but at the moment the binary it builds is NOT the same as from the command line by a LONG shot, and there are a lot of problems with it that I haven't yet ironed out. It works... but the code isn't as stable (or as small...) as the command line script above generates.
Hope it helps: if Maarten agrees that my PB file is usable he'll commit it to the CVS soon.
-Bischofftep
OS X Project Builder
Has there been any progress with the PB compile for OS X?
If yes, where can I get it.. if no - can I have what you have so I can attempt to work on it as well?
Thanks!
If yes, where can I get it.. if no - can I have what you have so I can attempt to work on it as well?
Thanks!