-
-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could not install via PeCL #271
Comments
Yes, we are on pecl. |
FROM php:7.4-fpm-alpine
RUN apk add --no-cache \
$PHPIZE_DEPS \
openssl-dev
FROM php:7.4-fpm |
Can you check the permissions? Looks like libtool can't create |
which PS : I'm under root in the |
inside wget https://pecl.php.net/get/ice-1.6.0.tgz
tar -xzf ice-1.6.0.tgz
cd ice-1.6.0/
phpize
./configure --enable-ice
make
make install |
The However, I have /var/www/html/ice-1.6.0/kernel/backtrace.c:24:10: fatal error: execinfo.h: No such file or directory
24 | #include <execinfo.h> when trying |
Right, GNU C Library development files are needed. On opensuse it's |
Ok. The folder Please ping me when |
I will change the permission in the next release. I will leave this issue open until then. |
when do you plan the next release @mruz ? |
I tried to run I think build dirs are missing, so it fails because of rel path:
framework/build/php7/config.m4 Line 133 in f961b40
@remicollet what do you think? |
I tried |
|
to build ice on alpine linux
|
However, I have Warning: PHP Startup: Unable to load dynamic library 'ice.so' (tried: /usr/local/lib/php/extensions/no-debug-non-zts-20200930/ice.so (Error relocating /usr/local/lib/php/extensions/no-debug-non-zts-20200930/ice.so: backtrace_symbols: symbol not found), /usr/local/lib/php/extensions/no-debug-non-zts-20200930/ice.so.so (Error loading shared library /usr/local/lib/php/extensions/no-debug-non-zts-20200930/ice.so.so: No such file or directory)) in Unknown on line 0 when listing modules with |
@waghanza can you try: wget https://github.com/ice/framework/archive/1.8.0alpha3.tar.gz
tar -xzvf 1.8.0alpha3.tar.gz
cd framework-1.8.0alpha3/
./install
php -m
php -r "echo Ice\Version::get() . PHP_EOL;" |
for a standard installation, I run
which lead me to
and
With you technique I have I've notice that I use |
Hi @mruz,
I've found that the version
1.6
is available through apecl
channel 👍However, using
pecl install ice
(I'm on adocker
), I have :Regards,
The text was updated successfully, but these errors were encountered: