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
diff options
context:
space:
mode:
Diffstat (limited to 'library/unix/debug.mk')
-rw-r--r--library/unix/debug.mk11
1 files changed, 11 insertions, 0 deletions
diff --git a/library/unix/debug.mk b/library/unix/debug.mk
new file mode 100644
index 00000000..04d925a6
--- /dev/null
+++ b/library/unix/debug.mk
@@ -0,0 +1,11 @@
+ARCH := $(shell uname -m)
+
+CFLAGS := -g3 -Wall
+DEFINES := -DDEBUG
+BUILD := debug
+
+ifeq ($(ARCH),x86_64)
+CFLAGS += -msse4.1
+endif
+
+include build.mk