Reputation: 7375
So after I create an Xcode 6 project, even if I haven't written any code in it, if I try renaming it by double clicking the bolded program title in the upper left hand corner of the navigator and then confirming that I want the checked items' names changed, I get the following error when I try running it: "clang: error: linker command failed with exit code 1 (use -v to see invocation)"
I've even tried using the find tool to see all the things named the previous name, including the info.plist (which I think is the problem) and changing them to the new name. By renaming the info.plist manually I get an error saying that doesn't exist.
What am I doing wrong?
Upvotes: 61
Views: 19951
Reputation: 22933
If above method(s) doesn't work and if for now you don't feel like needing to test anything in your project, just remove your project test target.
Later on if you need to create some tests, you will still be able to add test targets again.
Upvotes: 6
Reputation: 2551
If you doesn't use the test target you can delete this target.
Upvotes: -2
Reputation: 53
There are different places where you should check for the rename. You should check for the "old" project name in the test target and in the project target. Search for the old name string and rename them manually to the new name.
Upvotes: 0
Reputation: 1
Here is what I've done to fix the similar problem since I changed the project name and folders under the project.
Hope this help.
Upvotes: 0
Reputation: 1733
Ran into this too, after copying and renaming the folder with an xcode project. I think it's a bug in xcode. Best file a bug with bugreporter (https://bugreport.apple.com/). Removing the test target from my project fixed it for me, too.
Upvotes: 2
Reputation: 8828
I saw the same error after changing the name, and I was able to fix it by clearing the "Test Host" values in the Build Settings of my "Tests" target:
Alternatively, If you need your tests to be able to run after changing the name of your project, you should be able to update the MyProject.app/MyProject
value in both fields to reflect the new name of your project (ie. MyNewProject.app/MyNewProject
)
Upvotes: 146
Reputation: 1736
Go to the Build Settings of my "Tests" target then change the paths from the old project name to your new project name
Test Host
- Debug Build/Debug-iphoneos/OldProjectName.app/OldProjectName
- Release Build/Release-iphoneos/OldProjectName.app/OldProjectName
Test Host
- Debug Build/Debug-iphoneos/NewProjectName.app/NewProjectName
- Release Build/Release-iphoneos/NewProjectName.app/NewProjectName
Just simply clearing them would break your tests so you need to replace them with the new project name.
Upvotes: 5
Reputation: 80273
There are many places you have to check upon re-naming. This approach does not seem at all practical.
If you really need to do this, I recommend creating a new project and just copying the necessary files over to the new project.
Upvotes: -3