We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bdfb75 commit 2a86377Copy full SHA for 2a86377
CHANGELOG
@@ -5,6 +5,7 @@
5
=== 1.0.20 ===
6
* Optimization of compressor and gate functions using AVX-512 instruction set.
7
* Introduced SIMD-optimized expander curve and gain functions.
8
+* Updated build scripts.
9
10
=== 1.0.19 ===
11
* AVX2 optimization of search functions for maximum and minimum.
make/tools.mk
@@ -85,8 +85,8 @@ else ifeq ($(PLATFORM),BSD)
85
endif
86
87
ifeq ($(DEBUG),1)
88
- CFLAGS_EXT += -Og -g3 -DLSP_DEBUG
89
- CXXFLAGS_EXT += -Og -g3 -DLSP_DEBUG
+ CFLAGS_EXT += -Og -g3 -DLSP_DEBUG -falign-functions=16
+ CXXFLAGS_EXT += -Og -g3 -DLSP_DEBUG -falign-functions=16
90
else
91
CFLAGS_EXT += -O2
92
CXXFLAGS_EXT += -O2
0 commit comments