Skip to content

Microsoft Visual C++

마이크로소프트 비주얼 C++(Microsoft Visual C++, 줄여서 MSVC)은 마이크로소프트사가 C, C++, C++/CLI 프로그래밍 언어 도구로 계획한 통합 개발 환경 (IDE) 제품이다. 개발 및 C++ (특히 마이크로소프트 윈도 API, 다이렉트X API, 닷넷 프레임워크로 작성된 코드)의 디버깅을 위한 도구를 가지고 있다.

Category

Commandline build

msbuild Project.sln

cl.exe

Example

아래와 같이 컴파일 할 수 있다. (*.obj 파일을 출력한다.)

cl.exe \
    /wd"4819" \
    /I"C:/Users/user/Project/opencv-x64/build/include" \
    /D "NDEBUG" \
    /c \
   main.cpp

주의할 사항은 명령행 옵션은 대소문자를 구분한다. /C/c는 다르다.

ERROR

C2360
'value' 초기화가 'case' 레이블에 의해 생략되었습니다.
case 문 내에서 선언된 로컬변수 때문에 발생하는 오류이다. 할당된 영역이 실행 로직에 따라 가변적이므로 컴파일 시 스택 영역의 크기를 알 수 없기 떄문에 발생하는 오류. case 문 내에서 선언 및 초기화를 할 때애는 {}를 사용하면 해결된다.

lib.exe

link.exe

Example

아래와 같이 DLL을 만들 수 있다.

link.exe \
    /OUT:"C:\Users\user\Project\americano\build\Release\pyamericano.dll" \
    /LIBPATH:"C:/Users/user/Project/americano/build" \
    /DLL \
    /MACHINE:X64 \
    /SUBSYSTEM:CONSOLE \
    "oleaut32.lib" "uuid.lib" "comdlg32.lib" "advapi32.lib" \
    src1.obj src2.obj

dumpbin.exe

Microsoft COFF Binary File Dumper(DUMPBIN.EXE)는 COFF(공용 개체 파일 형식) 이진 파일에 대한 정보를 표시합니다. DUMPBIN을 사용하여 COFF 개체 파일, COFF 개체의 표준 라이브러리, 실행 파일 및 DLL(동적 연결 라이브러리)을 검사할 수 있습니다.

ToggleHeaderCodeFile

I’ve been doing a lot of managed C++ programming lately and I had forgotten what a pain it is switching back and forth between the header file and source file. Back in the days of Visual Studio 6 I had a macro that switched between the CPP and H file, so I went googling, but the macro I found didn’t work very well in VS2008. Like any good coder, I decided to write it myself instead.

If you haven’t written a macro before, here are the steps.

  1. In Visual Studio, go to Tools | Macros | Macros IDE. A new window should open and in the Project Explorer, the MyMacros project should be open.
  2. Right click on the MyMacros project and select Add | Add Module. Name it CppUtilities. The CppUtilities should open in the editor window.
  3. Add the code from below into the module and save the project.
‘=====================================================================
‘ If the currently open document is a CPP or an H file, attempts to
‘ switch between the CPP and the H file.
‘=====================================================================
Public Sub SwitchBetweenSourceAndHeader()
  Dim currentDocument As String
  Dim targetDocument As String

  currentDocument = ActiveDocument.FullName

  If currentDocument.EndsWith(“.cpp”, StringComparison.InvariantCultureIgnoreCase) Then
    targetDocument = Left(currentDocument, Len(currentDocument) - 3) + “h”
    OpenDocument(targetDocument)
  ElseIf currentDocument.EndsWith(“.h”, StringComparison.InvariantCultureIgnoreCase) Then
    targetDocument = Left(currentDocument, Len(currentDocument) - 1) + “cpp”
    OpenDocument(targetDocument)
  End If

End Sub

‘=====================================================================
‘ Given a document name, attempts to activate it if it is already open,
‘ otherwise attempts to open it.
‘=====================================================================
Private Sub OpenDocument(ByRef documentName As String)
  Dim document As EnvDTE.Document
  Dim activatedTarget As Boolean
  activatedTarget = False

  For Each document In Application.Documents
    If document.FullName = documentName And document.Windows.Count > 0 Then
      document.Activate()
      activatedTarget = True
      Exit For
    End If
  Next
  If Not activatedTarget Then
    Application.Documents.Open(documentName, “Text”)
  End If
End Sub

If you switch back to Visual Studio and open the Macro Explorer, you should see the new module CppUtilities and the new macro SwitchBetweenSourceAndHeader in the tree. You could run the macro from here, but it is much easier to bind it to a keystroke.

  1. Click on Tools | Options then go to the Environment | Keyboard tab.
  2. In the Show commands containing: box, type CppUtilities. This should filter the list down to one entry, Macros.MyMacros.CppUtilitities.SwitchBetweenSourceAndHeader.
  3. Click on the Press shortcut keys: text box and then press the keystroke you would like to use to run the macro. If the keystroke is already used, it will show you below in the Shortcut currently used by: dropdown. When you find one that is unused, click the Assign button to use it. I use Ctrl+Shift+Alt+Bkspce.
  4. Click OK then open a CPP or H file and give it a try.

Debugging

Release mode debugging

Release에서 디버깅 정보를 삽입하는 방법은 아래와 같다.

  • Property Page -> Configuration Properties -> C++ -> General -> Debug Information Format (/Zi)
  • Property Page -> Configuration Properties -> C++ -> Optimization -> Optimization (/Od)
  • Property Page -> Configuration Properties -> Linker -> Debugging -> Generate Debug Info (/DEBUG)

Export symbols

Export STL

Favorite site

Command-line helper

Distribute

References


  1. How_to_export_an_instantiation_of_a_Standard_Template_Library_class_and_a_class_that_contains_a_data_member_that_is_an_STL_object.pdf 

  2. /MACHINE:[X86|X64|IA64] 

  3. How_to_Distribute_C_run-time_Libraries_with_Your_Application_-_CodeProject.pdf