summaryrefslogtreecommitdiff
path: root/src/scripts
AgeCommit message (Collapse)AuthorFilesLines
2016-03-25Fix invalid path to genXplatLttng.pyEmmanuel1-1/+1
2016-03-22Strip symbols on release builds into separate binariesMike McLaughlin1-4/+4
Issue #3669 Created a common cmake strip_symbols function that all the modules and programs use to strip the symbols out of the main into a separate .dbg (Linux) or .dSYM (OSX) file. Added an install_clr cmake function to encapsulate the install logic. Changed all the library module cmake install lines from a TARGETS to a FILES one. The TARGETS based install directives caused cmake to relink the binary and copy the unstripped version to the install path. Left the all programs like corerun or ildasm as TARGETS installs because on OSX FILES type installs don't get marked as executable. Need to use "get_property(strip_source_file TARGET ${targetName} PROPERTY LOCATION)" for the older versions of cmake and "set(strip_source_file $<TARGET_FILE:${targetName}>)" on newer versions (v3 or greater).
2016-03-11Using StackString to improve memory consumption in Lttng EventProviderDDCloud1-18/+18
2016-02-17Fix typo in genXplatEventing.py.Aditya Mandaleeka1-3/+3
2016-01-31Introduce central location for turning FEATURE_EVENT_TRACE on/offJan Kotas1-2/+2
Turn FEATURE_EVENT_TRACE on for x64 Linux only. aarch64 and arm do not have working lttng in their ubuntu/debian repos. We can expand to other platforms in the future as they become supported.
2016-01-29update version of buildtoolsRahul Kumar2-19/+0
2016-01-28Merge pull request #2880 from janvorli/fix-python-scriptJan Vorlicek1-1/+1
Fix missing format specifier in Utilities.py
2016-01-27Update license headersdotnet-bot3-21/+19
2016-01-27Fix missing format specifier in Utilities.pyJan Vorlicek1-1/+1
The Utilities.py script was missing the `%s` format specifier in one of the prints and it was causing a build failure for me.
2016-01-25Fix Python 3 issue in LTTNG generating code scriptJuergen Hoetzel1-14/+17
In Python 3 the print statement has become a function. Enforce Python 3 style by by using __future__ module.
2016-01-22Use coreclr buildtools nuget package instead of compiling the tools used ↵Rahul Kumar2-0/+19
during build. This only applies to windows build.
2016-01-21Generating Event Logging Headers From CMake for LinuxDDCloud3-140/+132
Conflicts: build.sh
2016-01-05python3-ize the ETW setup scriptsSean Gillespie4-57/+62
python3-ize LTTNG generating code
2015-12-31Merge pull request #2494 from ramarag/incremenatal_buildRama krishnan Raghupathy1-0/+48
Enable Incremental build
2015-12-31 Enable Incremental build For Generated FilesRama Krishnan Raghupathy1-0/+48
2015-12-30Add .gitmirrorall directiveJan Kotas1-0/+1
[tfs-changeset: 1560604]
2015-12-28Automating Event Logging Infrastructure: With this change the infrastructure ↵Rama3-0/+1534
required for Event Logging will be generated as part of build