summaryrefslogtreecommitdiff
path: root/src/palrt
diff options
context:
space:
mode:
authorMike McLaughlin <mikem@microsoft.com>2015-05-01 16:30:38 -0700
committerMike McLaughlin <mikem@microsoft.com>2015-05-02 11:10:48 -0700
commiteb798177505eefad288dc28bcf86028ce4d8ba57 (patch)
tree131b5e67bb0c56af0c187d3a5e230a7a2af94e36 /src/palrt
parent25272dba24d166f8075c28cce08ac911941fcfc0 (diff)
downloadcoreclr-eb798177505eefad288dc28bcf86028ce4d8ba57.tar.gz
coreclr-eb798177505eefad288dc28bcf86028ce4d8ba57.tar.bz2
coreclr-eb798177505eefad288dc28bcf86028ce4d8ba57.zip
Fixed PAL thread allocation stack overflow.
Add -Bsymbolic linker option to prevent static variables from being shared across PAL instances Install coreclrpal and palrt libraries so VS has easy access to link against them. Don't install the debug-pal library to binary directory. Fix "corerun" lldb test command.
Diffstat (limited to 'src/palrt')
-rw-r--r--src/palrt/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/palrt/CMakeLists.txt b/src/palrt/CMakeLists.txt
index e2e55c3141..feb88ed71e 100644
--- a/src/palrt/CMakeLists.txt
+++ b/src/palrt/CMakeLists.txt
@@ -22,3 +22,6 @@ add_library(palrt
STATIC
${PALRT_SOURCES}
)
+
+# Install the static PAL library for VS
+install (TARGETS palrt DESTINATION lib)