Displaying 7 results from an estimated 7 matches for "pbxproj".
Did you mean:
pbproj
2010 Apr 29
0
liboggz release 1.0.2 (1.0-stable series)
...| 1 +
README | 12 +
TODO | 195 +++++++++++
configure.ac | 6 +-
macosx/English.lproj/InfoPlist.strings | 2 +
macosx/Info.plist | 28 ++
macosx/oggz.xcodeproj/project.pbxproj | 549 ++++++++++++++++++++++++++++++++
macosx/oggz_Prefix.pch | 7 +
macosx/version.plist | 16 +
src/liboggz/oggz.c | 2 +-
src/liboggz/oggz_auto.c | 6 +-
src/liboggz/oggz_comments.c | 47 ++-
src/libo...
2010 Apr 29
0
liboggz release 1.1.1
...| 1 +
README | 12 +
TODO | 175 ++++++++++
configure.ac | 4 +-
macosx/English.lproj/InfoPlist.strings | 2 +
macosx/Info.plist | 28 ++
macosx/oggz.xcodeproj/project.pbxproj | 549 ++++++++++++++++++++++++++++++++
macosx/oggz_Prefix.pch | 7 +
macosx/version.plist | 16 +
src/liboggz/oggz.c | 2 +-
src/liboggz/oggz_auto.c | 6 +-
src/liboggz/oggz_comments.c | 47 ++-
src/libo...
2008 Apr 11
4
[LLVMdev] LLVMBuilder vs LLVMFoldingBuilder
...in());
Here the arguments no longer line up properly.
- LLVMBuilder TmpB(&TheFunction->getEntryBlock(),
+ IRBuilder TmpB(&TheFunction->getEntryBlock(),
TheFunction->getEntryBlock().begin());
Likewise.
Index: Xcode/LLVM.xcodeproj/project.pbxproj
I don't know what this Xcode stuff is, so I've no idea if it is correct
or whether you should be committing it.
Thanks for doing this!
Best wishes,
Duncan.
2006 Jul 27
0
[PATCH] XCode Projectfile does not contain window.c
Hey,
the xcode Projectfile from current speex svn which can be found at
macosx/Speex.xcodeproj/project.pbxproj
is missing the file window.c (which leads to linker errors). Attached you can
find the output of svn diff after fixing this.
Peter
--
The best things in life are for a fee.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: speex_xcodeprojectfile.patch
Type: text...
2008 Apr 12
0
[LLVMdev] LLVMBuilder vs LLVMFoldingBuilder
...have a different interface when taking a
list of indices. The first takes the start and end pointers to the list,
while the second takes the first pointer and the length of the list. I
feel like these interfaces should be consistent. Maybe my next patch.
> Index: Xcode/LLVM.xcodeproj/project.pbxproj
>
> I don't know what this Xcode stuff is, so I've no idea if it is correct
> or whether you should be committing it.
>
I've added some missing files, removed LLVMBuilder.h and added
IRBuilder.h and added the BrainF example (as I had to make changes to it
for the patch)...
2008 Apr 10
0
[LLVMdev] LLVMBuilder vs LLVMFoldingBuilder
Dominic Hamon wrote:
> Duncan Sands wrote:
>>> Another option that was discussed in #llvm is to nuke LLVMBuilder
>>> and rename LLVMFoldingBuilder to LLVMBuilder. If this was the case,
>>> I'd argue for a flag in the Builder that could retain the old
>>> non-folding functionality for debugging purposes.
>>>
>>
>> this plan
2008 Apr 10
3
[LLVMdev] LLVMBuilder vs LLVMFoldingBuilder
Duncan Sands wrote:
>> Another option that was discussed in #llvm is to nuke LLVMBuilder and
>> rename LLVMFoldingBuilder to LLVMBuilder. If this was the case, I'd
>> argue for a flag in the Builder that could retain the old non-folding
>> functionality for debugging purposes.
>>
>
> this plan sounds good to me. However it's not clear to me how