Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2019-09-27 01:06:45 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-09-27 01:06:45 +0300
commit0850a5e4a391c21f0c1401b38570e481ca16d4d2 (patch)
treea97d527c206fed9a7c252a04a080beed0007b99e /extra
parent6094d694798b43230abe33b1f3c190add6c134ae (diff)
Use a proper build script.
Diffstat (limited to 'extra')
-rwxr-xr-x[-rw-r--r--]extra/systrace/build.sh (renamed from extra/systrace/build)7
1 files changed, 4 insertions, 3 deletions
diff --git a/extra/systrace/build b/extra/systrace/build.sh
index d3578d15..8d6b7a8e 100644..100755
--- a/extra/systrace/build
+++ b/extra/systrace/build.sh
@@ -1,3 +1,4 @@
-clang tracy_systrace.c -s -Os -ffunction-sections -fdata-sections -Wl,--gc-sections -fno-stack-protector -Wl,-z,norelro -Wl,--build-id=none -nostdlib -ldl
-strip --strip-all -R .note.gnu.gold-version -R .comment -R .note -R .note.gnu.build-id -R .note.ABI-tag -R .eh_frame -R .eh_frame_hdr -R .gnu.hash -R .gnu.version -R .got a.out
-sstrip -z a.out (elfkickers)
+#!/bin/sh
+clang tracy_systrace.c -s -Os -ffunction-sections -fdata-sections -Wl,--gc-sections -fno-stack-protector -Wl,-z,norelro -Wl,--build-id=none -nostdlib -ldl -o tracy_systrace
+strip --strip-all -R .note.gnu.gold-version -R .comment -R .note -R .note.gnu.build-id -R .note.ABI-tag -R .eh_frame -R .eh_frame_hdr -R .gnu.hash -R .gnu.version -R .got tracy_systrace
+sstrip -z tracy_systrace