ios - linker command failed with exit code 1 (use -v to see invocation) in Swift -


i used swift language in ios application project in xcode6 beta6 , had work on computer. got error:

"clang: error: linker command failed exit code 1 (use -v see invocation)"

this error shown different computers computer on opened project @ first. not give error in first computer (which opened , started project)

i tried clean, , delete contents of deriveddata folder, gives me same error again. below error, says "file not found:" inside of deriveddata folder:

file not found: /users/macbook/library/developer/xcode/deriveddata/sihirlisayilar-gmmsqkhqgygosqeuqdiibnrjasbq/build/products/debug-iphonesimulator/project.app/project

i looked other titles issue, none of them solve problem. thank help!

the fact it's linker error should point right direction. compilation errors mean error in syntax. linker error means although source files have been compiled correctly, when time comes linked other frameworks (system frameworks, or 3rd party ones), clang cannot find them in place.

usually, because 3rd party library missing system, , project depends on it, , although can find header files, cannot find actual library file connect to. fact transferring project other computers giving problems, while @ computer compiles , links correctly strengthens assumption it's problem environment trying compile , need install something.

to find out more issue, go xcode, go report navigator, , see logs of builds have made. check first 1 (which last build). scroll bottom, , see why didn't compile. common scenario symbol not found. check in library symbol belongs, install library system.


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -