Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ld: framework not found Realm for architecture x86_64 in react-native iOS project with Realmjs installed #5233

Closed
hellomaya opened this issue Aug 15, 2017 · 11 comments
Labels

Comments

@hellomaya
Copy link

hellomaya commented Aug 15, 2017

Goals

To use Realm.framework at Cocoa Touch Static Library

Expected Results

Compile and run successfully

Actual Results

I have got:

ld: framework not found Realm for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

Steps to Reproduce

  • By using react-native to initialize a new project
react-native init example
  • Open Xcode to create a new project, select Cocoa Touch Static Library
  • Add Realm.framework to this project by following this docs in Static Framework (iOS only) section
  • Add the library to the iOS project created by react-native
  • Run it in iPhone simulator 6

Code Sample

#import "Realm/Realm.h"
#import "Realm/RLMRealm_Dynamic.h"

...

RLMRealm *realm = [RLMRealm defaultRealm];
    RLMResults *result = [realm allObjects:@"Client"];
    
    RCTLogInfo(@"Pretending to create an event %lu", [result count]);

Version of Realm and Tooling

Realm framework version: ?

0.29.1

Realm Object Server version: ?

None

Xcode version: ?

8.3.2

iOS/OSX version: ?

10.3/10.12.6

Dependency manager + version: ?

@hellomaya
Copy link
Author

hellomaya commented Aug 15, 2017

Is it because in react-native, I have installed realm-js.

npm install realm -S

But after I have react-native unlink realm, it still same error.

Sorry, I have forget something else, when I add libc++.tbd, and libz.tbd at Build Phases -> Link Binary With Libraries in the library, Realm.framework as docs said, it gave me this error:

error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.3.sdk/usr/lib/libz.tbd (No such file or directory)
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.3.sdk/usr/lib/libc++.tbd (No such file or directory)

And if I only use libc++.tbd, and libz.tbd without Realm.framework. no such errors. Those files both located in iPhoneOS.platform indeed.

And then I removed both of them, it gave me the error above.

@bdash
Copy link
Contributor

bdash commented Aug 15, 2017

Can you pleas share the actual linker error that you're seeing? It is available via the Report navigator (View -> Navigators -> Show Report Navigator) then clicking on the failing build. It will provide details that will help understand what's going wrong.

My initial suspicion is that the Realm framework isn't in a directory that is on the framework search path.

@hellomaya
Copy link
Author

I hope that is the case, there are some pics to show my steps:

  1. The error message detail is here

2017-08-16 11 18 36

  1. The framework search path is here

2017-08-16 11 19 26

And I did use 'show Finder' to check:

2017-08-16 11 34 44

So it's right in that folder.

2017-08-16 11 35 06

What I did, was to unzip the realm-objc-2.9.1.zip, and then find the Realm.framework at ios/static folder:

2017-08-16 11 33 57

Then I will drag it to the library project here:

2017-08-16 11 34 20

Then Realm.framework seems added correctly:

2017-08-16 11 36 31

The code is simple, just try to show if it worked:

2017-08-16 11 35 47

And then when I run it, got a link error.

Could it be some kind conflict with Realm-js in this react-native project? Or I didn't see any error in a new iOS project I created.

@hellomaya
Copy link
Author

More specific:

  1. If I create a new project from Xcode without react-native, and template is Single View.

  2. Then I will drag the Realm.framework to it, then libc++.tbd and libz.tbd

  3. Then I will use RLMRealm at the code

Then I run it, very good!!

In react native based iOS project, it already include the libc++.tbd and libz.tbd at app scope, so it won't able to add libc++.tbd and libz.tbd to the library without error.

2017-08-16 12 17 58

If I added libc++.tbd and libz.tbd in library scope, and it will tell me:

error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.3.sdk/usr/lib/libz.tbd (No such file or directory)
error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool: can't open file: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.3.sdk/usr/lib/libc++.tbd (No such file or directory)

So in the static library sample, only added Realm.framework, it won't show any error to compile it though, only link error above.

@bdash
Copy link
Contributor

bdash commented Aug 16, 2017

Rather than taking a screenshot of a subset of the error message, can you please click on the heading above it (the Link /Users/…/… line), hit Cmd-C to copy it, and then paste it here? It'll include the complete output of the command, rather than just the line that says "something went wrong".

@hellomaya
Copy link
Author

hellomaya commented Aug 16, 2017

Certainly, here it is:

Build log
Showing Recent Issues
Ld /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/weishangjizhang.app/weishangjizhang normal x86_64
    cd /Volumes/DOS/work.current/wjz/ios
    export IPHONEOS_DEPLOYMENT_TARGET=8.0
    export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.3.sdk -L/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator -F/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator -filelist /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Intermediates/weishangjizhang.build/Debug-iphonesimulator/weishangjizhang.build/Objects-normal/x86_64/weishangjizhang.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -Xlinker -object_path_lto -Xlinker /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Intermediates/weishangjizhang.build/Debug-iphonesimulator/weishangjizhang.build/Objects-normal/x86_64/weishangjizhang_lto.o -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -ObjC -lc++ -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Intermediates/weishangjizhang.build/Debug-iphonesimulator/weishangjizhang.build/weishangjizhang.app.xcent /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libReact.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTAnimation.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTActionSheet.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTGeolocation.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTImage.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTLinking.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTNetwork.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTSettings.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTText.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTVibration.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTWebSocket.a -lRNVectorIcons -lRealmReact -lHanziToPinyin -lRNFS -lRCTCamera -lRCTToast -Xlinker -dependency_info -Xlinker /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Intermediates/weishangjizhang.build/Debug-iphonesimulator/weishangjizhang.build/Objects-normal/x86_64/weishangjizhang_dependency_info.dat -o /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/weishangjizhang.app/weishangjizhang

ld: framework not found Realm for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

@bdash
Copy link
Contributor

bdash commented Aug 16, 2017

I'm a little confused by that output for a few reasons:

  1. It doesn't reference Realm.framework.
  2. It doesn't reference the framework search path that you said is set on the target. The framework search path you showed starts with /Volumes/DOS, but the only reference to that path in the output you shared is in reference the working directory.
  3. The error is occurring when building and linking an application target, which isn't visible in the Xcode screenshots you shared above (the "Choose options for adding these files" sheet only lists a static library target with a different name, as does your screenshot of the project navigator sidebar).

My guess is that your project is structured so that you have a static library target that is using Realm, and then an application target that links in the static library target. The static library target is configured with the appropriate search path and linker settings to link against the Realm framework, but the application target isn't. Due to the way that static libraries work, there's no link phase and so attempting to link your static library against the static Realm framework doesn't achieve anything. What you'd need to do instead is configure your final application target to link against Realm.

@hellomaya
Copy link
Author

hellomaya commented Aug 16, 2017

Thank you. You probably right, I am going to figure out how.

@hellomaya
Copy link
Author

hellomaya commented Aug 16, 2017

Sorry, another problem, this time I linked the Realm.framework at application target as well, and it show conflict with libRealmReact:

Build log
Showing Recent Issues
Ld /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/weishangjizhang.app/weishangjizhang normal x86_64
    cd /Volumes/DOS/work.current/wjz/ios
    export IPHONEOS_DEPLOYMENT_TARGET=8.0
    export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.3.sdk -L/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator -F/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator -F/Volumes/DOS -filelist /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Intermediates/weishangjizhang.build/Debug-iphonesimulator/weishangjizhang.build/Objects-normal/x86_64/weishangjizhang.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -Xlinker -object_path_lto -Xlinker /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Intermediates/weishangjizhang.build/Debug-iphonesimulator/weishangjizhang.build/Objects-normal/x86_64/weishangjizhang_lto.o -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -ObjC -lc++ -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Intermediates/weishangjizhang.build/Debug-iphonesimulator/weishangjizhang.build/weishangjizhang.app.xcent /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libReact.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTAnimation.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTActionSheet.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTGeolocation.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTImage.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTLinking.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTNetwork.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTSettings.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTText.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTVibration.a /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRCTWebSocket.a -lRNVectorIcons -lRealmReact -lc++ -lz -lHanziToPinyin -lRNFS -lRCTCamera -lRCTToast -framework Realm -Xlinker -dependency_info -Xlinker /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Intermediates/weishangjizhang.build/Debug-iphonesimulator/weishangjizhang.build/Objects-normal/x86_64/weishangjizhang_dependency_info.dat -o /Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/weishangjizhang.app/weishangjizhang

duplicate symbol __ZNK5realm4List9get_queryEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZNK5realm4List20get_origin_row_indexEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZNK5realm4List8snapshotEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZNK5realm4List10as_resultsEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZNK5realm4List21verify_in_transactionEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List10remove_allEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List10delete_allEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZNK5realm4List4sizeEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZNK5realm4List8is_validEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZNK5realm4List15verify_attachedEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZNK5realm4List17get_object_schemaEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4ListD2Ev in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4ListC2Ev in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4ListD1Ev in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4ListC1Ev in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List6insertEmm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List3setEmm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List4swapEmm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List4moveEmm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List25OutOfBoundsIndexExceptionC2Emm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List25OutOfBoundsIndexExceptionC1Emm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List3maxEm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZNK5realm4List3getEm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List3minEm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List3sumEm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List6removeEm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List7averageEm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZNK5realm4List13get_uncheckedEm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List3addEm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZNK5realm4List16verify_valid_rowEmb in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol _ZNKSt3__14hashIN5realm4ListEEclERKS2 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol _ZN5realm4ListaSEOS0 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol _ZN5realm4ListC2EOS0 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol _ZN5realm4ListC1EOS0 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol _ZNK5realm4ListeqERKS0 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol _ZN5realm4ListaSERKS0 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol _ZN5realm4ListC2ERKS0 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol _ZN5realm4ListC1ERKS0 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZNK5realm4List6filterENS_5QueryE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZNK5realm4List4sortENS_14SortDescriptorE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZNR5realm4List25add_notification_callbackENS_24CollectionChangeCallbackE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4ListC2ENSt3__110shared_ptrINS_5RealmEEENS2_INS_8LinkViewEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4ListC1ENSt3__110shared_ptrINS_5RealmEEENS2_INS_8LinkViewEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZNK5realm4List4findERKNS_8BasicRowIKNS_5TableEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List6insertEmNS_12BasicRowExprINS_5TableEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List3setEmNS_12BasicRowExprINS_5TableEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZNK5realm4List8validateENS_12BasicRowExprINS_5TableEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm4List3addENS_12BasicRowExprINS_5TableEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(list.o)
/Volumes/DOS/Realm.framework/Realm(list.o)
duplicate symbol __ZN5realm12ObjectSchema24set_primary_key_propertyEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(object_schema.o)
/Volumes/DOS/Realm.framework/Realm(object_schema.o)
duplicate symbol __ZN5realm12ObjectSchemaD2Ev in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(object_schema.o)
/Volumes/DOS/Realm.framework/Realm(object_schema.o)
duplicate symbol __ZN5realm12ObjectSchemaC2Ev in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(object_schema.o)
/Volumes/DOS/Realm.framework/Realm(object_schema.o)
duplicate symbol __ZN5realm12ObjectSchemaD1Ev in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(object_schema.o)
/Volumes/DOS/Realm.framework/Realm(object_schema.o)
duplicate symbol __ZN5realm12ObjectSchemaC1Ev in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(object_schema.o)
/Volumes/DOS/Realm.framework/Realm(object_schema.o)
duplicate symbol __ZN5realm12ObjectSchemaC2ERKNS_5GroupENS_10StringDataEm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(object_schema.o)
/Volumes/DOS/Realm.framework/Realm(object_schema.o)
duplicate symbol __ZN5realm12ObjectSchemaC1ERKNS_5GroupENS_10StringDataEm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(object_schema.o)
/Volumes/DOS/Realm.framework/Realm(object_schema.o)
duplicate symbol _ZN5realm12ObjectSchemaC2ENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEESt16initializer_listINS_8PropertyEESA in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(object_schema.o)
/Volumes/DOS/Realm.framework/Realm(object_schema.o)
duplicate symbol _ZN5realm12ObjectSchemaC1ENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEESt16initializer_listINS_8PropertyEESA in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(object_schema.o)
/Volumes/DOS/Realm.framework/Realm(object_schema.o)
duplicate symbol _ZN5realmeqERKNS_12ObjectSchemaES2 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(object_schema.o)
/Volumes/DOS/Realm.framework/Realm(object_schema.o)
duplicate symbol __ZNK5realm12ObjectSchema20property_is_computedERKNS_8PropertyE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(object_schema.o)
/Volumes/DOS/Realm.framework/Realm(object_schema.o)
duplicate symbol __ZN5realm12ObjectSchema17property_for_nameENS_10StringDataE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(object_schema.o)
/Volumes/DOS/Realm.framework/Realm(object_schema.o)
duplicate symbol __ZNK5realm12ObjectSchema17property_for_nameENS_10StringDataE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(object_schema.o)
/Volumes/DOS/Realm.framework/Realm(object_schema.o)
duplicate symbol __ZN5realm12ObjectSchemaC2ENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEESt16initializer_listINS_8PropertyEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(object_schema.o)
/Volumes/DOS/Realm.framework/Realm(object_schema.o)
duplicate symbol __ZN5realm12ObjectSchemaC1ENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEESt16initializer_listINS_8PropertyEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(object_schema.o)
/Volumes/DOS/Realm.framework/Realm(object_schema.o)
duplicate symbol __ZNK5realm12ObjectSchema8validateERKNS_6SchemaERNSt3__16vectorINS_31ObjectSchemaValidationExceptionENS4_9allocatorIS6_EEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(object_schema.o)
/Volumes/DOS/Realm.framework/Realm(object_schema.o)
duplicate symbol __ZNK5realm7Results9get_queryEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results15update_linkviewEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results13get_tableviewEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results5firstEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results4lastEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZNKR5realm7Results8snapshotEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZNO5realm7Results8snapshotEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZNK5realm7Results17is_in_table_orderEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results5clearEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results4sizeEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZNK5realm7Results14validate_writeEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZNK5realm7Results15get_object_typeEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZNK5realm7Results8is_validEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZNK5realm7Results13validate_readEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results13prepare_asyncEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZNK5realm7Results17get_object_schemaEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7ResultsD2Ev in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7ResultsC2Ev in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7ResultsD1Ev in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7ResultsC1Ev in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results25OutOfBoundsIndexExceptionC2Emm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results25OutOfBoundsIndexExceptionC1Emm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results3maxEm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results3getEm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results3minEm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results3sumEm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results8index_ofEm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results7averageEm in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results30UnsupportedColumnTypeExceptionC2EmPKNS_5TableEPKc in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results30UnsupportedColumnTypeExceptionC1EmPKNS_5TableEPKc in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results16update_tableviewEb in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol _ZN5realm7ResultsaSEOS0 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol _ZN5realm7ResultsC2EOS0 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol _ZN5realm7ResultsC1EOS0 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol _ZN5realm7ResultsaSERKS0 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol _ZN5realm7ResultsC2ERKS0 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol _ZN5realm7ResultsC1ERKS0 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZNK5realm7Results6filterEONS_5QueryE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results8index_ofEONS_5QueryE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results8Internal14set_table_viewERS0_ONS_9TableViewE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZNK5realm7Results4sortEONS_14SortDescriptorE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results8distinctEONS_14SortDescriptorE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7ResultsC2ENSt3__110shared_ptrINS_5RealmEEENS2_INS_8LinkViewEEENS_4util8OptionalINS_5QueryEEENS_14SortDescriptorE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7ResultsC1ENSt3__110shared_ptrINS_5RealmEEENS2_INS_8LinkViewEEENS_4util8OptionalINS_5QueryEEENS_14SortDescriptorE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZNR5realm7Results25add_notification_callbackENS_24CollectionChangeCallbackE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7ResultsC2ENSt3__110shared_ptrINS_5RealmEEENS_5QueryENS_18DescriptorOrderingE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7ResultsC1ENSt3__110shared_ptrINS_5RealmEEENS_5QueryENS_18DescriptorOrderingE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7ResultsC2ENSt3__110shared_ptrINS_5RealmEEENS_9TableViewENS_18DescriptorOrderingE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7ResultsC1ENSt3__110shared_ptrINS_5RealmEEENS_9TableViewENS_18DescriptorOrderingE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7ResultsC2ENSt3__110shared_ptrINS_5RealmEEERNS_5TableE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7ResultsC1ENSt3__110shared_ptrINS_5RealmEEERNS_5TableE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results5asyncENSt3__18functionIFvSt13exception_ptrEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm7Results8index_ofERKNS_8BasicRowINS_5TableEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(results.o)
/Volumes/DOS/Realm.framework/Realm(results.o)
duplicate symbol __ZN5realm5Realm37schema_change_needs_write_transactionERNS_6SchemaERNSt3__16vectorINS_12SchemaChangeENS3_9allocatorIS5_EEEEy in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm10write_copyEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm6notifyEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm7compactEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZNK5realm5Realm25can_deliver_notificationsEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm25add_schema_change_handlerEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm10read_groupEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm18commit_transactionEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm17begin_transactionEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZNK5realm5Realm17is_in_transactionEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm18cancel_transactionEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZNK5realm5Realm33file_format_upgraded_from_versionEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZNK5realm5Realm11verify_openEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm7refreshEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZNK5realm5Realm15verify_in_writeEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm10invalidateEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm5closeEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm32read_schema_from_group_if_neededEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZNK5realm5Realm13verify_threadEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm16cache_new_schemaEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm15get_full_schemaEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5RealmD2Ev in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5RealmD1Ev in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol _ZN5realm25MismatchedConfigExceptionC2ENS_10StringDataES1 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol _ZN5realm25MismatchedConfigExceptionC1ENS_10StringDataES1 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol _ZN5realm5Realm10set_schemaERKNS_6SchemaES1 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol _ZN5realm5Realm16open_with_configERKNS0_6ConfigERNSt3__110unique_ptrINS_11ReplicationENS4_14default_deleteIS6_EEEERNS5_INS_11SharedGroupENS7_ISB_EEEERNS5_INS_5GroupENS7_ISF_EEEEPS0 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5_impl11RealmFriend16get_shared_groupERNS_5RealmE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm18get_schema_versionERKNS0_6ConfigE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm16get_shared_realmENS0_6ConfigE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm10write_copyENS_10StringDataENS_10BinaryDataE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm24MismatchedRealmExceptionC2ENS_10StringDataE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm24MismatchedRealmExceptionC1ENS_10StringDataE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm17set_schema_subsetENS_6SchemaE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5RealmC2ENS0_6ConfigENSt3__110shared_ptrINS_5_impl16RealmCoordinatorEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5RealmC1ENS0_6ConfigENSt3__110shared_ptrINS_5_impl16RealmCoordinatorEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm10reset_fileERNS_6SchemaERNSt3__16vectorINS_12SchemaChangeENS3_9allocatorIS5_EEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm8Internal10begin_readERS0_NS_9VersionIDE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5_impl11RealmFriend13read_group_toERNS_5RealmENS_9VersionIDE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZN5realm5Realm10begin_readENS_9VersionIDE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(shared_realm.o)
/Volumes/DOS/Realm.framework/Realm(shared_realm.o)
duplicate symbol __ZNK5realm15SyncFileManager23get_base_sync_directoryEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol __ZNK5realm15SyncFileManager21remove_metadata_realmEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol __ZNK5realm15SyncFileManager13metadata_pathEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol __ZN5realm4util27create_timestamped_templateERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEi in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol _ZN5realm4util32file_path_by_appending_extensionERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol _ZNK5realm15SyncFileManager12remove_realmERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol _ZN5realm4util24reserve_unique_file_nameERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol _ZNK5realm15SyncFileManager15copy_realm_fileERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9 in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol __ZN5realm15SyncFileManager19c_utility_directoryE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol __ZN5realm15SyncFileManager20c_recovery_directoryE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol __ZN5realm15SyncFileManager16c_sync_directoryE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol __ZN5realm15SyncFileManager20c_metadata_directoryE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol __ZN5realm15SyncFileManager16c_metadata_realmE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol __ZN5realm4util32file_path_by_appending_componentERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9_NS0_12FilePathTypeE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol __ZNK5realm15SyncFileManager21remove_user_directoryERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol __ZN5realm4util19remove_nonempty_dirERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol __ZNK5realm15SyncFileManager12remove_realmERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol __ZN5realm4util15make_raw_stringERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol __ZN5realm4util27make_percent_encoded_stringERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol __ZNK5realm15SyncFileManager21get_special_directoryENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_file-E8DF62E574C07A57.o)
/Volumes/DOS/Realm.framework/Realm(sync_file.o)
duplicate symbol __ZNK5realm11SyncManager35client_should_reconnect_immediatelyEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZNK5realm11SyncManager15get_sync_clientEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZNK5realm11SyncManager18create_sync_clientEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZN5realm11SyncManager9reconnectEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZNK5realm11SyncManager19all_logged_in_usersEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZNK5realm11SyncManager16get_current_userEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZNK5realm11SyncManager9log_levelEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZNK5realm11SyncManager23recovery_directory_pathEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZN5realm11SyncManager17reset_for_testingEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZN5realm11SyncManager6sharedEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZN5realm11SyncManager39set_client_should_reconnect_immediatelyEb in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZN5realm11SyncManager21configure_file_systemERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS0_12MetadataModeENS_4util8OptionalINS1_6vectorIcS6_EEEEb in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZN5realm11SyncManager18set_logger_factoryERNS_17SyncLoggerFactoryE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZN5realm11SyncManager13set_log_levelENS_4util6Logger5LevelE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZN5realm11SyncManager11get_sessionERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS_10SyncConfigE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZN5realm11SyncManager15run_file_actionERKNS_22SyncFileActionMetadataE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZNK5realm11SyncManager23perform_metadata_updateENSt3__18functionIFvRKNS_19SyncMetadataManagerEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZN5realm11SyncManager28immediately_run_file_actionsERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZN5realm11SyncManager18unregister_sessionERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZNK5realm11SyncManager20get_existing_sessionERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZNK5realm11SyncManager27get_existing_active_sessionERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZNK5realm11SyncManager27get_existing_session_lockedERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_manager.o)
/Volumes/DOS/Realm.framework/Realm(sync_manager.o)
duplicate symbol __ZNK5realm16SyncUserMetadata8identityEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZNK5realm19SyncMetadataManager18all_unmarked_usersEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZNK5realm19SyncMetadataManager19all_pending_actionsEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZNK5realm22SyncFileActionMetadata6actionEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZNK5realm16SyncUserMetadata8is_adminEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZNK5realm16SyncUserMetadata10user_tokenEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZNK5realm22SyncFileActionMetadata3urlEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZN5realm16SyncUserMetadata16mark_for_removalEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZNK5realm19SyncMetadataManager28all_users_marked_for_removalEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZN5realm16SyncUserMetadata6removeEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZN5realm22SyncFileActionMetadata6removeEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZNK5realm22SyncFileActionMetadata8new_nameEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZNK5realm22SyncFileActionMetadata13original_nameEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZNK5realm19SyncMetadataManager9get_usersEb in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZN5realm16SyncUserMetadata12set_is_adminEb in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZN5realm16SyncUserMetadataC2ENS0_6SchemaENSt3__110shared_ptrINS_5RealmEEENS_12BasicRowExprINS_5TableEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZN5realm22SyncFileActionMetadataC2ENS0_6SchemaENSt3__110shared_ptrINS_5RealmEEENS_12BasicRowExprINS_5TableEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZN5realm16SyncUserMetadataC1ENS0_6SchemaENSt3__110shared_ptrINS_5RealmEEENS_12BasicRowExprINS_5TableEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZN5realm22SyncFileActionMetadataC1ENS0_6SchemaENSt3__110shared_ptrINS_5RealmEEENS_12BasicRowExprINS_5TableEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZNK5realm19SyncMetadataManager22delete_metadata_actionERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZN5realm19SyncMetadataManagerC2ENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEbNS_4util8OptionalINS1_6vectorIcS6_EEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZN5realm19SyncMetadataManagerC1ENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEbNS_4util8OptionalINS1_6vectorIcS6_EEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_metadata-231DCB0F6F3B43.o)
/Volumes/DOS/Realm.framework/Realm(sync_metadata.o)
duplicate symbol __ZN5realm8SyncUser7log_outEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_user.o)
/Volumes/DOS/Realm.framework/Realm(sync_user.o)
duplicate symbol __ZN5realm8SyncUser12all_sessionsEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_user.o)
/Volumes/DOS/Realm.framework/Realm(sync_user.o)
duplicate symbol __ZNK5realm8SyncUser13refresh_tokenEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_user.o)
/Volumes/DOS/Realm.framework/Realm(sync_user.o)
duplicate symbol __ZNK5realm8SyncUser5stateEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_user.o)
/Volumes/DOS/Realm.framework/Realm(sync_user.o)
duplicate symbol __ZN5realm8SyncUser10invalidateEv in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_user.o)
/Volumes/DOS/Realm.framework/Realm(sync_user.o)
duplicate symbol __ZN5realm8SyncUser12set_is_adminEb in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_user.o)
/Volumes/DOS/Realm.framework/Realm(sync_user.o)
duplicate symbol __ZN5realm8SyncUser25s_binding_context_factoryE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_user.o)
/Volumes/DOS/Realm.framework/Realm(sync_user.o)
duplicate symbol __ZN5realm8SyncUser31s_binding_context_factory_mutexE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_user.o)
/Volumes/DOS/Realm.framework/Realm(sync_user.o)
duplicate symbol __ZN5realm8SyncUser27set_binding_context_factoryENSt3__18functionIFNS1_10shared_ptrINS_15SyncUserContextEEEvEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_user.o)
/Volumes/DOS/Realm.framework/Realm(sync_user.o)
duplicate symbol __ZN5realm8SyncUser16register_sessionENSt3__110shared_ptrINS_11SyncSessionEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_user.o)
/Volumes/DOS/Realm.framework/Realm(sync_user.o)
duplicate symbol __ZN5realm8SyncUser27register_management_sessionERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_user.o)
/Volumes/DOS/Realm.framework/Realm(sync_user.o)
duplicate symbol __ZN5realm8SyncUser27register_permission_sessionERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_user.o)
/Volumes/DOS/Realm.framework/Realm(sync_user.o)
duplicate symbol __ZN5realm8SyncUser24session_for_on_disk_pathERKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_user.o)
/Volumes/DOS/Realm.framework/Realm(sync_user.o)
duplicate symbol __ZN5realm8SyncUser20update_refresh_tokenENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE in:
/Users/hello/Library/Developer/Xcode/DerivedData/weishangjizhang-grrzureurwytuzaclurmtgiqnxgq/Build/Products/Debug-iphonesimulator/libRealmReact.a(sync_user.o)
/Volumes/DOS/Realm.framework/Realm(sync_user.o)
ld: 235 duplicate symbols for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

@hellomaya hellomaya changed the title ld: framework not found Realm for architecture x86_64 ld: framework not found Realm for architecture x86_64 in react-native iOS project with Realmjs installed Aug 16, 2017
@bdash
Copy link
Contributor

bdash commented Aug 16, 2017

That's not a particularly surprising outcome. Both Realm JS and Realm Objective-C include common code. Linking both of them into the same image will result in duplicate symbols. You'd need to isolate one or both of them in a shared library. The simplest way to accomplish that would be to use the dynamic Realm framework. Not that you'll need to be very careful to ensure that the versions of Realm JS and Realm Objective-C are using the same versions of the underlying Realm Core library. Even then, you may see surprising behavior because the scenario of embedding multiple copies of Realm in the same process is not tested nor officially supported.

@hellomaya
Copy link
Author

I see, I hope this can be supported some time, so it's able to access the Realm db in native side from react-native, will promote the performance of the app, I will address this suggestion in Realm-js as well, thank you very much for your help.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Mar 15, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

3 participants