お世話になります

podsのライブラリでコンパイルエラーになり、どうにも解決できず、抜け出せなくなってしまいました。

fmdb
smcalloutview

という二つのライブラリを(他にもありますが)使っているのですが、
以下のエラーで止まっております

ld: warning: directory not found for option '-L/Users/shiratsu/Documents/NeoCafesagashi/Pods/build/Release-iphoneos'
ld: warning: ignoring file /Users/shiratsu/Library/Developer/Xcode/DerivedData/Build/Products/Debug-iphoneos/libPods-FMDB.a, file was built for archive which is not the architecture being linked (armv7): /Users/shiratsu/Library/Developer/Xcode/DerivedData/Build/Products/Debug-iphoneos/libPods-FMDB.a
ld: warning: ignoring file /Users/shiratsu/Library/Developer/Xcode/DerivedData/Build/Products/Debug-iphoneos/libPods-SMCalloutView.a, file was built for archive which is not the architecture being linked (armv7): /Users/shiratsu/Library/Developer/Xcode/DerivedData/Build/Products/Debug-iphoneos/libPods-SMCalloutView.a
ld: warning: ignoring file /Users/shiratsu/Library/Developer/Xcode/DerivedData/Build/Products/Debug-iphoneos/libPods.a, file was built for archive which is not the architecture being linked (armv7): /Users/shiratsu/Library/Developer/Xcode/DerivedData/Build/Products/Debug-iphoneos/libPods.a
Undefined symbols for architecture armv7:
  "_OBJC_CLASS_$_FMDatabase", referenced from:
      objc-class-ref in SqliteBaseService.o
  "_OBJC_CLASS_$_SMCalloutView", referenced from:
      objc-class-ref in ViewController.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)

ビルドアーキテクチャまわりかなと思って調べてるのですが、どうも違うようで、はまって抜け出せなくなってしまいました。
podファイルは以下です

platform :ios, '7.0'

pod 'KINWebBrowser'
pod 'SMCalloutView'
pod 'PonyDebugger' 
pod 'FMDB'

どなたかご教授願います

PodsのBuildSetting
cafeのbuildsetting

podのバージョンは

pod --version

   0.35.0
でした

実はpodは今日アップデートしまして、そこからエラーが出ています
それまでは、問題なかったのですが、FMDBをcocoapodsで管理したく、元のプロジェクトにあるものを消して、cocoapodsから落としたところ、こういった状態になりました

cocoapodsのバージョンを下げました
そうするとエラーが変わって(多分前には進んだ)

 /Users/shiratsu/Documents/NeoCafesagashi/NeoCafesagashi/SqliteBaseService.h:10:9: 'FMDatabase.h' file not found

FMDBはcocoapodsで入れたファイルです。見つからない理由ってなんでしょうか
Header Search Pathも正しくセットしたと思うのですが。。。
$(inherited)
/Applications/Xcode-Beta\ 2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include

よろしくお願いします。