summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorTomas Weinfurt <tweinfurt@yahoo.com>2017-10-06 01:43:54 -0700
committerJan Vorlicek <janvorli@microsoft.com>2017-10-06 10:43:54 +0200
commit46e6857e92f9dfbd248217ccf1f42ff70e2763dd (patch)
treefce248df19e71c86b16f99802e9b82b453be74df /build.sh
parent60374d77dacc076b30673c37ddace25d12cabcd9 (diff)
downloadcoreclr-46e6857e92f9dfbd248217ccf1f42ff70e2763dd.tar.gz
coreclr-46e6857e92f9dfbd248217ccf1f42ff70e2763dd.tar.bz2
coreclr-46e6857e92f9dfbd248217ccf1f42ff70e2763dd.zip
enable lttng for FreeBSD. (#14342)
* enable lttng for FreeBSD. it is supported for user space * unify Linux and FreeBSD branches for lttng. At lest for now, they are identical
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index fd21a43ee2..922063c099 100755
--- a/build.sh
+++ b/build.sh
@@ -230,7 +230,7 @@ generate_event_logging_sources()
fi
case $__BuildOS in
- Linux)
+ Linux|FreeBSD)
echo "Laying out dynamically generated EventPipe Implementation"
$PYTHON -B $__PythonWarningFlags "$__ProjectRoot/src/scripts/genEventPipe.py" --man "$__ProjectRoot/src/vm/ClrEtwAll.man" --intermediate "$__GeneratedIntermediateEventPipe" --exc "$__ProjectRoot/src/vm/ClrEtwAllMeta.lst"
if [[ $? != 0 ]]; then
@@ -243,7 +243,7 @@ generate_event_logging_sources()
#determine the logging system
case $__BuildOS in
- Linux)
+ Linux|FreeBSD)
echo "Laying out dynamically generated Event Logging Implementation of Lttng"
$PYTHON -B $__PythonWarningFlags "$__ProjectRoot/src/scripts/genXplatLttng.py" --man "$__ProjectRoot/src/vm/ClrEtwAll.man" --intermediate "$__GeneratedIntermediateEventProvider"
if [[ $? != 0 ]]; then