Posté le 22/08/2016 12:13
Planète Casio v4.3 © créé par Neuronix et Muelsaco 2004 - 2024 | Il y a 45 connectés | Nous contacter | Qui sommes-nous ? | Licences et remerciements
Planète Casio est un site communautaire non affilié à Casio. Toute reproduction de Planète Casio, même partielle, est interdite.
Les programmes et autres publications présentes sur Planète Casio restent la propriété de leurs auteurs et peuvent être soumis à des licences ou copyrights.
CASIO est une marque déposée par CASIO Computer Co., Ltd
Citer : Posté le 19/07/2023 03:50 | #
Try starting from files here : https://p7.planet-casio.com/en.html#linux-iconlinux-ico-other-gnulinux-distributions
does it change something ?
Citer : Posté le 19/07/2023 04:19 | #
Nope, I originally tried building using those instructions, but without luck
Citer : Posté le 19/07/2023 04:49 | #
Ok, out of all utilities I managed to install just p7, which I think is enough. Something's wrong with my system apparently.
What I did was change line 123 and 125 from Makefile.vars to
124 -D BIN="$1$(if $(FOR_WINDOWS),.exe)"
125 LDFLAGS_$1 := $(LDFLAGS) $(shell $(PKGCONFIG) libp7 --libs 2>/dev/null)
adding libp7 and removing $(LIBS_$1) .
Then I ran ./configure followed by make all-p7 and sudo make install-p7 .
phew
Citer : Posté le 06/01/2024 13:19 | #
Hello, I know I'm a little bit late but I think I found what the problem was. I also had this error when compiling with the command
Indeed, it comes from Makefile.vars. It's the lines 104 and 105 that need to be changed to
DISABLE_$1 := $(shell make -sf $(SRCDIR)/$1/vars.mk disable 2>/dev/null \
It's because when calling the $(shell ...) make prints a message telling a change of directory (because it calls another makefile), but the message is captured inside the variables LIBS and DISABLE. That's why changing lines 123 and 125 worked. Adding the -s flag deletes the message.
Another fix is to add the flag to the make command like