Rename the project to netcoredbg
authorIgor Kulaychuk <i.kulaychuk@samsung.com>
Thu, 13 Jul 2017 17:42:12 +0000 (20:42 +0300)
committerIgor Kulaychuk <i.kulaychuk@samsung.com>
Mon, 13 Nov 2017 19:22:40 +0000 (22:22 +0300)
src/debug/netcoredbg/CMakeLists.txt
src/debug/netcoredbg/main.cpp

index 615c0c5..11cb8c5 100644 (file)
@@ -1,6 +1,6 @@
-project(coreclrdbg)
+project(netcoredbg)
 
-set(coreclrdbg_SRC
+set(netcoredbg_SRC
     main.cpp
     symbolreader.cpp
     platform.cpp
@@ -35,7 +35,7 @@ elseif(CLR_CMAKE_PLATFORM_ARCH_ARM64)
     add_definitions(-DBIT64)
 endif()
 
-add_executable(coreclrdbg ${coreclrdbg_SRC})
+add_executable(netcoredbg ${netcoredbg_SRC})
 
 add_compile_options(-fPIE)
 add_definitions(-DPAL_STDCPP_COMPAT)
@@ -50,11 +50,11 @@ include_directories(${CLR_DIR}/src/coreclr/hosts/inc)
 
 include_directories(${CLR_DIR}/src/ToolBox/SOS/Strike)
 
-target_link_libraries(coreclrdbg
+target_link_libraries(netcoredbg
     corguids
     dbgshim
     mscordaccore
     palrt
 )
 
-install_clr(coreclrdbg)
+install_clr(netcoredbg)
index 5fdecea..a1d74c8 100644 (file)
@@ -596,7 +596,7 @@ void CommandLoop(ICorDebugProcess *pProcess);
 void print_help()
 {
     fprintf(stderr,
-        "CoreCLR debugger for Linux.\n"
+        ".NET Core debugger for Linux/macOS.\n"
         "\n"
         "Options:\n"
         "--attach <process-id>                 Attach the debugger to the specified process id.\n"