File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -202,7 +202,6 @@ def main(ref_name):
202202 "TARGET" : TARGET ,
203203 "CC" : CC ,
204204 "FLAGS" : [
205- "USE_OBSOLETE_LINKER=1" ,
206205 'ARCH_FLAGS="-g -fsanitize=address,leak"' ,
207206 'OPT_CFLAGS="-O1"' ,
208207 "USE_ZLIB=1" ,
Original file line number Diff line number Diff line change 3434 - uses : ./.github/actions/setup-vtest
3535 - name : Compile HAProxy with ${{ matrix.platform.cc }}
3636 run : |
37- make -j3 CC=${{ matrix.platform.cc }} V=1 ERR=1 TARGET=linux-glibc USE_OBSOLETE_LINKER=1 DEBUG="-DDEBUG_POOL_INTEGRITY -DDEBUG_UNIT" USE_PROMEX=1 USE_OPENSSL=1 USE_QUIC=1 USE_ZLIB=1 USE_PCRE2=1 USE_PCRE2_JIT=1 USE_LUA=1 ADDLIB="${{ matrix.platform.ADDLIB_ATOMIC }}" ARCH_FLAGS="-g -fsanitize=address ${{ matrix.platform.ARCH_FLAGS }}"
37+ make -j3 CC=${{ matrix.platform.cc }} V=1 ERR=1 TARGET=linux-glibc DEBUG="-DDEBUG_POOL_INTEGRITY -DDEBUG_UNIT" USE_PROMEX=1 USE_OPENSSL=1 USE_QUIC=1 USE_ZLIB=1 USE_PCRE2=1 USE_PCRE2_JIT=1 USE_LUA=1 ADDLIB="${{ matrix.platform.ADDLIB_ATOMIC }}" ARCH_FLAGS="-g -fsanitize=address ${{ matrix.platform.ARCH_FLAGS }}"
3838 make install
3939 - name : Show HAProxy version
4040 id : show-version
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ __attribute__((constructor)) static void __initcb_##linenum() \
182182 * stage <stg>.
183183 */
184184#define FOREACH_INITCALL (p ,stg ) \
185- for ((p) = &( __start_i_##stg) ; (p) < &( __stop_i_##stg) ; (p)++)
185+ for ((p) = __start_i_##stg; (p) < __stop_i_##stg; (p)++)
186186
187187#else // USE_OBSOLETE_LINKER
188188
You can’t perform that action at this time.
0 commit comments