summaryrefslogtreecommitdiff
path: root/generateversionscript.awk
AgeCommit message (Collapse)AuthorFilesLines
2016-04-05Handle mscorwks_unixexports.src with better regexp operator for compatibilityGeunsik Lim1-1/+1
ver3: According to the gawk manual, The '\S' operator (as shorthand for '[^[:space:]]') matches any character that is not whitespace. However, '[ \t]' is better than '\S' for Mac OSX. (source - https://www.gnu.org/software/gawk/manual/html_node/GNU-Regexp-Operators.html ) ver2: With ver1, the build-break is caused by different awk versions (by @jkotas). (Revert PR - https://github.com/dotnet/coreclr/pull/4005) To resolve the limitation of the ver1, @janvorli proposed that the \S expression is better than [:space:] for the most compatible solution. There are a lot of different AWK software (e.g. awk, gawk, mawk, nawk, etc) and versions among the popular Linux distributions. This patch is a simply way to handle 'mscorwks_unixexports.src' file with \S operator for more compatibility amon the different awk versions. ver1: It's must be modified by gawk implementation that check it exactly as a plain character (e.g., space, alnum) within the bracket expression at ./coreclr/generateversionscript.awk. The [[:space:]] is more appropriate than the [:space:]]. (PR - https://github.com/dotnet/coreclr/pull/3943) Signed-off-by: Geunsik Lim <geunsik.lim@samsung.com> Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com> Signed-off-by: Prajwal A N <an.prajwal@samsung.com>
2016-03-30Revert "Fix bracket expression matches a character at gawk"Jan Kotas1-1/+1
2016-03-26Fix: bracket expression matches a character at gawkGeunsik Lim1-1/+1
This is a trivial patch. However, It's must be modified by gawk. Check it exactly as a plain character (e.g., space, alnum) within the bracket expression at ./coreclr/generateversionscript.awk Signed-off-by: Geunsik Lim <geunsik.lim@samsung.com>
2015-07-16Extend the Unix hosting APIJan Vorlicek1-1/+6
This change modifies the Unix hosting API so that the hosting app can create as many managed delegates as it needs and execute them as many times it wants. The new API contains separate functions to initialize and shutdown CoreCLR and a function to create a delegate. The current ExecuteAssembly function behavior stays unmodified for now to ensure that dnx that uses that API and that pulls the binary libcoreclr is not broken. After the dnx is updated to use the new coreclr_create_delegate API, I'll remove the ExecuteAssembly. Also done: 1) Added support for comments and skipping empty lines in the mscorwks_unixexports.src. 2) Restructured the mscorwks_unixexports.src 3) Added coreclr_execute_assembly to the unixinterface.cpp / exports 4) Modified coreruncommon.cpp to use the new hosting API
2015-05-29Limit the libcoreclr.so exports to the required minimumJan Vorlicek1-0/+14
This change limits the libcoreclr.so exports on Unix to functions that are PInvoked by the managed mscorlib / corefx and the DllMain, CoreDllMain and ExecuteAssembly.