If you select that warning, open the right most tab in Xcode 4, and select the second icon at the top (the wavy lines), you will see the Apple Help for that item, which says:
Objective-C++ Automatic Reference Counting ABI incompatibilities
CLANG_WARN_OBJCPP_ARC_ABI
When compiling Objective-C++ code that uses Automatic Reference Counting, report code that may cause ABI issues when linking ARC code with traditional manual reference counting code.
Also, I do NOT believe in using the "fno-objc-arc" flag to just avoid having to deal with ARC. People who do this believe they have perfect leak free code that adheres in all aspects to the ARC naming heuristics. I wish I could be that confident in my old retain/release/autorelease code! Also, ARC code is often smaller and faster.