Re: Noob question about .a files

2011-08-19 Thread Eric E. Dolecki
Okay - I'll do that. Checking the debug and release architectures for the Project I see $(ARCHS_STANDARD_32_BIT) listed with Standard (armv7). Thanks for pointing this out to me. - Eric On Fri, Aug 19, 2011 at 10:47 AM, Kyle Sluder wrote: > On Aug 19, 2011, at 5:46 AM, "Eric E. Dolecki" wrot

Re: Noob question about .a files

2011-08-19 Thread Kyle Sluder
On Aug 19, 2011, at 5:46 AM, "Eric E. Dolecki" wrote: > Okay - most of the warnings are for .o files & some for .a files: > > *Apple Mach-O Linker Warning* > CPU_SUBTYPE_ARM_ALL subtype is deprecated > > I also see a bunch of > *Uncategorized* (doesn't contain architecture information for armv6

Re: Noob question about .a files

2011-08-19 Thread Eric E. Dolecki
Okay - most of the warnings are for .o files & some for .a files: *Apple Mach-O Linker Warning* CPU_SUBTYPE_ARM_ALL subtype is deprecated I also see a bunch of *Uncategorized* (doesn't contain architecture information for armv6) Since this thing compiles are runs alright, I won't worry too much.

Re: Noob question about .a files

2011-08-18 Thread Eric E. Dolecki
I'll be able to do that tomorrow when I get back in the office. I actually *think* they might have been linker warnings (wrong about the depreciated stuff) - not sure until I see them again. I might have had depreciation on the brain as I was fixed tons of those in inits, etc. Thanks, Eric On Th

Re: Noob question about .a files

2011-08-18 Thread Jens Alfke
On Aug 18, 2011, at 1:50 PM, Eric E. Dolecki wrote: > I have a project that compiles fine, but I get a slew of warnings about > depreciated stuff in a few .a files in the project. That’s weird; usually it’s the C/ObjC compiler that warns about deprecation, not the linker. Are you using any 3rd

Re: Noob question about .a files

2011-08-18 Thread Sean McBride
On Thu, 18 Aug 2011 16:50:35 -0400, Eric E. Dolecki said: >I have a project that compiles fine, but I get a slew of warnings about >depreciated stuff in a few .a files in the project. I don't know what .a >files are (assembly?) See: Probably a static lib. Wh

Noob question about .a files

2011-08-18 Thread Eric E. Dolecki
I have a project that compiles fine, but I get a slew of warnings about depreciated stuff in a few .a files in the project. I don't know what .a files are (assembly?) - how can i edit such files with Xcode? It shows as a binary file (I think)? Thanks, Eric _