Xcode의 빌드 폴더는 어디에 있습니까?
Xcode 4 이전에는 빌드가 내 프로젝트의 루트 폴더에 작성되었습니다. 더 이상 찾을 수 없습니다.
빌드 폴더는 어디에서 찾을 수 있습니까?
~/Library/Developer/Xcode/DerivedData
이제 기본값입니다.
프로젝트가 빌드 디렉토리를 지정할 수 있도록 Xcode에서 prefs를 설정할 수 있습니다.
다음 위치에 있어야합니다 ~/Library/Developer/Xcode/DerivedData
.
기본값을 변경 한 경우 파일-> 작업 공간 설정 으로 이동하여 빌드 위치를 확인한 다음 빌드 위치를 확인할 수 있습니다
CONFIGURATION_BUILD_DIR
환경 변수를 사용하여 출력 디렉토리를 구성 할 수 있습니다 .
Configure XCode project settings, it can solve your problem.
With a project previously created in Xcode3, I see an intermediate directory under build/
called Foo.build
where Foo
is my project's name, and then in that are the directories you'd expect (Debug-iphonesimulator, Release-iphoneos, etc, assuming you've done a build of that type) containing the object files and products.
Now, I suspect that if you start a new project in Xcode4, the default location is under DerivedData, but if you open an Xcode3 project in Xcode4, then Xcode4 uses the build/ directory (as described above). So, there are several correct answers. :-) Under the File menu, Project Settings, you can see you can customize how XCode works in this regard as much or as little as you like.
I wondered the same myself. I found that under File(menu) there is an item "Project Settings". It opens a dialog box with 3 choices: "Default Location", "Project-relative Location", and "Custom location" "Project-relative" puts the build products in the project folder, like before. This is not in the Preferences menu and must be set every time a project is created. Hope this helps.
In case of Debug Running
~/Library/Developer/Xcode/DerivedData/{your app}/Build/Products/Debug/{Project Name}.app/Contents/MacOS
You can find standalone executable file(Mach-O 64-bit executable x86_64)
By default Build location
is in Derived Data
.
Please note: a path to a product can be changed if you delete DerivedData during development process and rebuild it again.
Xcode -> Preferences... -> Locations
의 위치를 변경할 수 있습니다 Build location
. 전체 작업 공간에 영향을 미칩니다
File -> Project/Workspace Settings... -> Advanced
다음을 사용하여 대상의 위치를 변경할 수 있습니다.
Project editor -> select a target -> Build Settings -> Per-configuration Build Products Path
기본값은$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
자율성을 만들려면 이치에 맞습니다 Build location
Xcode 10.2.1
참고 URL : https://stackoverflow.com/questions/5952782/where-is-xcodes-build-folder
'IT박스' 카테고리의 다른 글
트위터 부트 스트랩 float div right (0) | 2020.06.20 |
---|---|
Xcode 4 용 오거나이저에 아카이브가 표시되지 않음 (0) | 2020.06.20 |
힘내 : 커밋없이 작업 사본에 Cherry-Pick (0) | 2020.06.19 |
어떤 Ruby IDE를 선호하십니까? (0) | 2020.06.19 |
while 루프를 통해 어떻게 변수를 동적으로 만들 수 있습니까? (0) | 2020.06.19 |