Replies: 2 comments
-
How much memory do you have on your server? PECL has issues running on small (2gb) servers. |
Beta Was this translation helpful? Give feedback.
0 replies
-
You need to set permissive flag for gcc14+, this might work: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
attempting to compile latest Phalcon release via pecl results in a make failed message. Can someone help point on best path forward here? Thank you!
cphalcon/ext/kernel/main.c: In function 'zephir_function_exists_ex':
cphalcon/ext/kernel/main.c:275:83: warning: comparison between pointer and integer
275 | if (zend_hash_str_exists(CG(function_table), function_name, function_len) != NULL) {
| ^~
cphalcon/ext/phalcon.c: In function 'php_zephir_init_globals':
cphalcon/ext/phalcon.c:1343:57: error: assignment to 'zend_string *' {aka 'struct _zend_string *'} from incompatible pointer type 'char *' [-Wincompatible-pointer-types]
1343 | phalcon_globals->orm.resultset_prefetch_records = ZSTR_VAL(zend_string_init(ZEND_STRL("0"), 0));
| ^
make: *** [Makefile:210: phalcon.lo] Error 1
make: *** Waiting for unfinished jobs....
cphalcon/ext/phalcon.c: In function 'php_zephir_init_globals':
cphalcon/ext/phalcon.c:1343:57: error: assignment to 'zend_string *' {aka 'struct _zend_string *'} from incompatible pointer type 'char *' [-Wincompatible-pointer-types]
1343 | phalcon_globals->orm.resultset_prefetch_records = ZSTR_VAL(zend_string_init(ZEND_STRL("0"), 0));
| ^
make: *** [Makefile:210: phalcon.lo] Error 1
Beta Was this translation helpful? Give feedback.
All reactions