ios - Should I care about Compiler when I have created Library/Framework of my Project and running on Different Compiler? -


i have created ios library/framework (static) of project using llvm gcc compiler non-arc build. want use library in newer projects apple llvm compiler arc compliance.

should worry converting library project in apple llvm compiler arc? what/where impact areas should concern?

my primary analysis says able use llvm gcc library in apple llvm compiler. not satisfied result.

please suggest analysis , conclusions. thanks

edit:

note class_copypropertylist method's behavior got changed apple llvm compiler. prior in llvm gcc compiler method returns list of variables in reverse order declared in interface. apple llvm compiler method returns in same sequence declared in interface.

important: though behavior changed apple llvm compiler, behavior not affected in library. when use run sample project including library project (not library project) method gives me wrong result.

to answer question, don't need upgrade...yet. if have time go ahead , make library arc compliant.

here's happen: code not compile or code receive bunch of warnings. can put exceptions in build settings mark library non arc compliant. should cause build/run time issues go away.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -