programing

Mac용 좋은 CIDE?

starjava 2023. 9. 14. 21:34
반응형

Mac용 좋은 CIDE?

저는 개발을 위해 맥을 사용한 첫 경험인 Cona Mac에서 프로그래밍을 하는 일을 막 시작했습니다.지금은 편집기로 Xcode를 사용하고 있다가 computing과 source control을 위해 command line에서 make/gcc/svn을 사용하고 있습니다.

C 코드를 컴파일할 수 있는 Mac용 좋은 풀 기능 IDE가 있습니까(VS와 유사한 기능이 이상적입니다), 아니면 이 낮은 수준의 도구를 계속 사용해야 합니까?

편집: 그래서 저는 Xcode를 gvim과 같은 코드용 텍스트 편집기라는 인상을 받았기 때문에 "저수준 도구"라고 불렀습니다.컴파일/소스 제어 기능을 꼭 알아보겠습니다.

CDT 플러그인으로 이클립스를 사용해 볼 수도 있습니다.

좋은 아이디어: Xcode

좋은 non-ide 옵션 : vim/make/gcc

- Macromates 웹사이트에서 다운로드합니다.

최신 버전은 이지만 두 버전 사이에 상당한 차이가 있고 둘 훌륭하기 때문에 를 계속 사용하는 사람들도 있습니다.

방금 Qt Creator를 우연히 발견했습니다.평범한 Makefile 프로젝트로 작업할 때 다른 IDE가 모두 실패한 부분은 정말 잘 유지되는 것 같습니다.

XCode, Eclipse, IntelliJ 또는 Netbeans는 종속성을 해결하거나 프로젝트를 제대로 로드하지 못합니다.Qt Creator에서 새 프로젝트 » Import Project » Import Existing Project and voila를 가리킬 수 있습니다!

목표-C는 C의 초집합임을 기억하십시오(정확히 기억한다면 매우 순수한 집합임).편집, 컴파일 및 디버깅을 위해 XCode를 사용할 수 있어야 합니다.

Here's one solution (which tells you to create a C++ project, then rename main.cpp to main.c)... http://www.cs.nyu.edu/~s70201/C_In_Xcode/Xcode_Tutorial.html

Xcode can manage project and compile for you as any IDE. But if you're familiar with CLI, I would recommand you to use a good editor and your usual build tools. Emacs and vim are available on os x (using xcode just for its editor is not ideal). Many mac dev love the excellent TextMate editor, but it is not a free (as in freedom) software.

Obviously 'good' is a subjective decision, but Xcode 3.2 is certainly up to par with what you can do in VisualStudio (if one considers VS good, is another thing of course).

I have a project with 250000+ lines of codes, 10 dylibs, helpfile, all in an SVN (Perforce) etc. and hardly ever go outside Xcode.

Xcode has a few peculiar ways to do some things and the debugger is not quite as powerful as the current one in VisualStudio, but overall there's hardly anything you can not do from within the IDE (and the options to adjust the shortcuts within the IDE, Debugger and Editor to your needs are really awesome).

ReferenceURL : https://stackoverflow.com/questions/1739517/good-c-ide-for-mac

반응형