Skip to content

Commit

Permalink
Disable backtrace on alpine, fix #2397
Browse files Browse the repository at this point in the history
  • Loading branch information
mruz authored Dec 21, 2022
1 parent 61fa38c commit f0f6f7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernels/ZendEngine3/backtrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*/

#ifndef ZEPHIR_RELEASE
#if defined(linux) || defined(DARWIN) || defined(__APPLE__)
#if defined(linux) && !defined(ALPINE_LINUX) || defined(DARWIN) || defined(__APPLE__)

#include <execinfo.h>
#include <Zend/zend.h>
Expand Down

0 comments on commit f0f6f7c

Please sign in to comment.