summaryrefslogtreecommitdiff
path: root/src/jit/dll
diff options
context:
space:
mode:
authorPat Gavlin <pagavlin@microsoft.com>2016-04-20 15:31:53 -0700
committerPat Gavlin <pagavlin@microsoft.com>2016-04-20 15:31:53 -0700
commit604d13b2c196afc7130e094449df932ab1e03164 (patch)
treeb33dd4db84692d1b5e1d84140db6225dd42ae240 /src/jit/dll
parent7c0cf5f137709b61e4ee0448a1d29869c2d60812 (diff)
downloadcoreclr-604d13b2c196afc7130e094449df932ab1e03164.tar.gz
coreclr-604d13b2c196afc7130e094449df932ab1e03164.tar.bz2
coreclr-604d13b2c196afc7130e094449df932ab1e03164.zip
Change the names of the JIT products to `clrjit`.
- The static library to be linked into the CLR is now `clrjit_static` - The static library to be linked into crossgen is now `clrjit_crossgen` - The dynamic library is now `clrjit`
Diffstat (limited to 'src/jit/dll')
-rw-r--r--src/jit/dll/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jit/dll/CMakeLists.txt b/src/jit/dll/CMakeLists.txt
index e4da4f17bb..583bc98a53 100644
--- a/src/jit/dll/CMakeLists.txt
+++ b/src/jit/dll/CMakeLists.txt
@@ -9,13 +9,13 @@ if(CLR_CMAKE_PLATFORM_UNIX)
add_compile_options(-fPIC)
add_definitions(-DFEATURE_MERGE_JIT_AND_ENGINE)
- add_library_clr(ClrJit
+ add_library_clr(${JIT_BASE_NAME}_static
STATIC
${SHARED_LIB_SOURCES}
)
- add_dependencies(ClrJit coreclrpal gcinfo)
+ add_dependencies(${JIT_BASE_NAME}_static coreclrpal gcinfo)
else()
- add_library_clr(ClrJit
+ add_library_clr(${JIT_BASE_NAME}_static
${SOURCES}
)
# Disable up to here (see above) the following for UNIX altjit on Windows