Software :: Php Compile Errors - Found Not - Flex , Bison , Re2c?
Jun 8, 2010
configure: warning: bison versions supported for regeneration of the Zend/PHP parsers: 1.28 1.35 1.75 1.875 2.0 2.1 2.2 2.3 2.4 2.4.1 (found: none).
configure: warning: flex versions supported for regeneration of the Zend/PHP parsers:
[code]....
View 4 Replies
ADVERTISEMENT
Jan 4, 2010
Linux and have got some work to do on Debian 4.0. I have installed this version with the Cd image debian-40r8-i386-CD-1. I Believe this was a minimal installation.I'm in need os some packages like Bison flex.
View 3 Replies
View Related
Mar 23, 2011
I'm trying to develop an html template parser employing Flex & Bison, but now I found a problem and I don't know if surrender, so let's see if you can guide me to the solution (if any).
[Code]...
(Here I simplified the code to make only print what it gets, but it returns a token and the text to the bison program). Now my problem is that I would like to get the unknown characters as an unique string. [using the flex file above, returns char by char all HTML code that is not a comment!].
So, Could it be possible to make a flex rule that gets the HTML code?. It is not necessary to check if HTML code is correct I do it (before parse) using expat. Also there is no need to check the resulted code it will be done by the parser or compiler of the used language.
I know that are a lot of tools that uses this kind of templates in all languages and systems... but I'm just exercising my pour flex&bison skills. Also, using my current flex file, I have to remove the string "<!--MARKUP" from the beginning and "-->" from the end of returned string to bison... But in reality, if I could manage the HTML code as a flex rule, I could solve that sednding to bison an start Token, the code and and end token.
View 1 Replies
View Related
Jul 21, 2010
iwant to install julius 3.5.2 on my system but i have an error after compiling the file configure the error is flex library is not found so what i have to do
View 3 Replies
View Related
Jan 7, 2011
I am trying to install wine in ubuntu 8.04. While installation getting the error 'No suitable package flex found'. I tried to find out flex package in adobe as well as other sites. unable to find out.
View 3 Replies
View Related
Jul 22, 2010
Can anybody tell me what kind of fsck errors are found on a system?
View 5 Replies
View Related
Mar 2, 2010
I un-installed all packages that I downloaded and removed all references to the attempted kernel and I thought it was over. Today I tried to install xubuntu-desktop and the install exits with a dpkg errros that refers to that old custom kernel attempt. I run dpkg as instructed (see below):
[code]...
I cannot run apt-get until I try to figure out where this error is.
View 1 Replies
View Related
Nov 1, 2010
I have a machine with X-Fi Titanium sound card. Im getting the following errors when trying to compile the driver.
[Code]...
View 3 Replies
View Related
Jan 31, 2010
I've been trying to compile and install different terminal emulators:Eterm, aterm, and libAfterImage for urxvt.
I've been getting all these errors, and it seems odd to me. I did some fiddling awhile back enabling KMS with my radeon, install custom packages for xf86-ati, mesa, and libdrm. Could that or some other fiddling have broken these dependencies?
Here is an excerpt, with the full error log attached and here:url
Code:
In file included from libungif/../xwrap.h:5,
from libungif/../asim_afterbase.h:23,
from libungif/../afterbase.h:36,
from libungif/gif_hash.h:24,
from libungif/gif_lib_private.h:5,
code....
View 1 Replies
View Related
Mar 1, 2011
As part of an assignment, our class was given a small set of c++ classes which are compiled using a makefile. As part of the assignment, I have created a namespace and saved in it a .cpp file. The functions, constants and typedefs from the namespace are now used in one of the original files, and so I added an <#include MyFile.cpp> to the file I modified, in addition to a using MyNamespace;
When I try to use the original makefile, the compiler gives a lot of errors about multiple definitions of every function in the namespace. What do I need to do to resolve this? Do I need to change the makefile or one of the files themselves? I am new to Linux programming and makesfiles.
View 2 Replies
View Related
May 15, 2010
I'm trying to compile ardour 2.8.7 from source and the compile got past the dependencies and everything else fine but it stopped at one point with these errors
[code]...
I have no experience compiling python. I would not like to install from a package as the one with ubuntu is wrongly compiled and so are many others which are hosted I have heard the only way to make the problems with packaged versions stop is by compiling ardour yourself so I would still like to go ahead with it.
View 6 Replies
View Related
Jan 24, 2009
I am new to CENTOS (5.2) and more importantly new to linux. Any time I try to gcc compile something, it always throws random errors. I yum installed development-tools which is what I have seen other threads suggest but that did not solve the issue. I still get the same errors. I cannot find a common error among the many things I have attempted to compile.
Here is my most recent file for an example made when trying to compile up-imapproxy :
gcc -g -O2 -I. -I./include -c -o src/icc.o src/icc.c
gcc -g -O2 -I. -I./include -c -o src/main.o src/main.c
src/main.c: In function "int main(int, char**)":
src/main.c:618: error: invalid conversion from *void* to *void* (*)(void*)
src/main.c:618: error: initializing argument 3 of int pthread_create(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*)
src/main.c:646: error: invalid conversion from int* to socklen_t*
src/main.c:646: error: initializing argument 3 of int accept(int, sockaddr*,socklen_t*)
src/main.c:675: error: invalid conversion from void* to void* (*)(void*)
src/main.c:675: error: initializing argument 3 of int pthread_create(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*)
make: *** [src/main.o] Error 1
View 3 Replies
View Related
May 29, 2011
I am trying to compile OpenCV 2.0 with ffmpeg (with x264) support on my Ubuntu 11.04 64-bit machine. (Since I want to use the binaries provided by other developers, I have to use opencv 2.0 version)
I followed the guide from: [URL] to compile x264 and ffmpeg manually, and succeeded.
Then I followed the guide in the INSTALL file provided by the OpenCV 2.0 package. I use CMake to configure and generate them, and use "make" command to try compiling. However, I got the following error report, which haunted me for almost half a week.
Code:
Linking CXX static library ../../lib/libhighgui_pch_dephelp.a
[ 71%] Built target highgui_pch_dephelp
Scanning dependencies of target pch_Generate_highgui
[ 71%] Generating _highgui.h
[ 71%] [COLOR="rgb(65, 105, 225)"]Generating
[Code].....
View 7 Replies
View Related
Aug 19, 2011
I have played around with Fedora for a few years and recently switched to Ubuntu. I am installing VMWare Workstation version 7.1.0 from a retail packaged CD. When I attempt to install VMWare Workstation and VMWare Player I get the following error:
Aug 15 16:24:54.826: app-3078788800| Your GCC version: 4.5
Aug 15 16:24:54.837: app-3078788800| Your GCC version: 4.5
Aug 15 16:24:54.889: app-3078788800| Trying to find a suitable PBM set for kernel 2.6.38-10-generic.
Aug 15 16:24:54.895: app-3078788800| Trying to find a suitable PBM set for kernel 2.6.38-10-generic.....
Aug 15 16:24:56.163: app-3078788800| Failed to compile module vmmon!
I tried installing the patch for kernal 2.6.38-8 found here - [URL] - but it did not resolve the issue. Is there a patch for kernal 2.6.38-10?
I also found this posting for the same problem: [URL]. I followed the following instructions as advised in the post . . .
sudo apt-get update
sudo apt-get install make
sudo apt-get install gcc
Then enter:
uname -r
My kernel was: 2.6.38-10-generic
sudo apt-get install build-essential linux-headers-2.6.38-10-generic
Now run the vmware-install.pl script.
Everything ran without error. However, I continue to get the same error. Another post suggested uninstalliung and reinstalling the software, but this had no affect either. Another post suggested that after running the above update to them run the /usr/bin/vmware-config.pl script. However I do not seem to have the vmware-config.pl in my /usr/bin directory. I checked the various VMWARE directories in /etc and the /tmp/vmware-root directories but no vmware-config.pl
View 2 Replies
View Related
Jun 10, 2010
First, I'm trying to cross compile mono 2.6.4 so that it will run on Freescale Embedded Linux for a PowerPC CPU. My host machine is running Fedora 13 on an x86. Freescale provides a copy of the Linux Target Image Builder (LTIB) that has been pre-configured for the particular board I'm using, and LTIB seems to be able to help with the cross compilation of other stuff--you can add in your own packages to be built and included in your newly-built Linux image.
Mono depends on pkg-config and glib-2, so I have selected them in the LTIB package selection config. I've also added a new package for mono that builds mono-2.6.4 from the source tar (after the other deps have also been built).
I'm having a problem getting the glib-2.24.0 package libraries created. Basically they appear to build and link ok, but then libtool runs and errors out claiming it has a syntax error! (numerous wths followed...)
Here is LTIB's temporary build script for only the glib2 package:
Code:
Here is the output when building the glib2 package (configure + make):
Code:
Build path taken because: directory build, build key set, no prebuilt rpm,
View 7 Replies
View Related
Oct 28, 2010
I have a Dell Vostro 3300, i5 460 processor with a NVIDIA 310M Graphics Card. I'm doing a KUBUNTU 10.10 (Maverick) install with the following results. The Live CD boots just fine to, "TEST," or "Install." Installation goes fine. However, the graphics card being used is the Intel i915. I have tried installing the NVIDIA drivers directly from the, "Additional Drivers," tool and after the reboot I get through the boot screen to the console. I try to manually startx and I get the errors, "no device found," "no screens found." The second install I tried purging and blacklisting the nouveau drivers and entering safe mode. Then using apt-get install nvidia-current. After that, nvidia-xconfig. Same results.
The third attempt I re-installed and this time downloaded the drivers from the Nvidia site (version 256.53). Blacklisted nouveau, remove all nvidia, updated initramfs, etc. The install went fine however I still end up at a console after boot with the same messages as above. No device found, no screens found. I've tried searching through the forum and web and have tried things like adding the modset option along with many other hacks, tips and fixes. still, no go.I can live with the Intel graphics for now although I lose 512MB of memory. Unfortunately there is no way to disable or change this set-up in the BIOS. I've seen quite a few bug reports at Launchpad:
1. Is this something I should just wait til a fix comes? Will a fix come?
2. Is there, or will there be an official Updated Ubuntu Guide for Maverick to install NVIDIA drivers with this tecnology?
3. Lastly, is there anything else I should try??
View 9 Replies
View Related
Apr 15, 2011
I installed debian 4.0 (etch) on an old computer with some pickled graphics card in it, and then I upgraded the computer to one with slightly newer hardware only without the graphics card (the new one used on board graphics). I moved the hard drive from the old one to the new one but when I booted it up it failed to start the X-server and I got some errors listed for "device not found" and "no screens found".
I tried using "dpkg-reconfigure xserver-xorg" however I can't seem to find a working configuration. It seems pretty silly that when installing debian it can detect all this automatically with no problems but when it comes to changing some hardware around you are left in the dark with a complicated re-configuration process. Is there not some way to automate this? I'd rather not have to re-install everything
View 8 Replies
View Related
Feb 23, 2011
I have CentOS 5.5 installed .Is it possible to install bison++ on centos ?I could not find any rpm file .
View 1 Replies
View Related
May 13, 2011
I am trying to compile x264 but ./configure returns just Quote: No working C compiler found. Yes, I have installed build-essentials and yes, I have installed gcc Already tried update and upgrade... so I dont know whats wrong my c++ compiler works normally.
View 1 Replies
View Related
Mar 14, 2011
I would like to modify my init.gz and add udp-sender to this image. After copying the program compiled on my system to init image I have error when I try run udp-sender: udp-sender not found When I checked ldd I saw that the some libraries are missing. I copied them from my system but still got the same error. how can I compile program for my init.gz?
View 3 Replies
View Related
Apr 14, 2011
checking what language compliance flags to pass to the C compiler...
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.16... yes
configure: error: glib-compile-schemas not found. < ---
1. How to determine what package glib-compile-schemas belongs to ?
2. Where to get the package ?
I'm basically trying to install Anjuta 3.0 and getting this error when I run ./configure
View 2 Replies
View Related
Jan 26, 2010
I had to reload my openSuSE 11.1 and reloaded KDE 4.3.4 from KDE Repositories and did an unconditional update on KDE Core and Community to ensure I got all the current versions back.
I am now having an issue with at least two plasmoids that is regularly used. When I attempt to add them to the desktop, I get the message "component not found". This happens to at least these two, yasp and yawp for system status and weather. It may happen to others, I haven't tried.
They are both loaded and both are present in /usr/share/kde4/services. I removed them using YaST, then rebooted, then re-added them, then rebooted and still get the same result, component not found.
View 3 Replies
View Related
Jun 27, 2011
I am trying to rebuild packet with mock
Code:
mock rebuild -r fedora-15-i386 rpmbuild/SRPMS/deadbeef-0.5.1-1.fc15.src.rpm
and getting following error in /var/lib/mock/fedora-15-x86_64/result/build.log:
checking for intltool >= 0.40.0... ./configure: line 22040: intltool-update: command not found
configure: error: Your intltool is too old. You need intltool 0.40.0 or later.
code....
View 2 Replies
View Related
Apr 13, 2011
This comes up when I try to boot my laptop, 'Errors were found while checking the disk drive for /'
View 1 Replies
View Related
Dec 9, 2010
from the commend line i went to compile the c program by giving the commend "gcc first.c -o first" but the commend line showing gcc is not found. iam using fedora 13 pls tell me what can i do to compile the program. the program i used to compile is below
#include<stdio.h>
main()
{
View 1 Replies
View Related
Jan 31, 2010
I have an HP dv7-1285dx. First, I attempted to install openSuse 11.2 KDE via the live disk. A small ways through the installation, I was told that the image could not be properly copied to the disk. Then, I attempted to do it via the standard DVD, and a small ways through the installation I kept receiving errors saying that the packages could not be found, and gives me the option to skip. I can't install unless I skip all 600-something of them.
View 4 Replies
View Related
Jun 10, 2010
The last few times, I booted ubuntu, the automatic disk check ran and told me that there were "serious errors on /". This had happened once before but that time, I found nothing wrong on booting into ubuntu. However, this time, the scan doesn't seem to progress any further after detecting the error. What is the problem?
View 7 Replies
View Related
Apr 14, 2010
I'm trying to install HylaFAX but it's giving me problems. I've installed the program on my CentOS (5.4) box but I can't seem to get it to send faxes.
I've tested the modem with the minicom program and I was able to dial out to my cell phone just fine. What do I do to to find out what the problem is? Which log file does HylaFAX log to?
View 1 Replies
View Related
Mar 5, 2010
I have been able to make my webcam work some time ago, but it does not work anymore. (I installed xen kernel recently, but I don't know whether it's related or not).
I am using Opensuse 11.2.
My webcam is a Bison uvc compatible webcam. It should work with the uvcvideo driver which is intalled by default with the kernel. My kernel is
Code:
Linux linux-61le 2.6.31.12-0.1-desktop #1 SMP PREEMPT 2010-01-27 08:20:11 +0100 x86_64 x86_64 x86_64 GNU/Linux
lsusb gives:
Code:
Bus 002 Device 004: ID 5986:0241 Acer, Inc
dmesg gives:
[Code]....
View 5 Replies
View Related
Mar 25, 2010
i need to find the current version of bison flexzlib make if they are not installed in ubuntu or their version are outdated i need to install things.i hope i have posted the query at the right place if not please redirect it to the relevant thread adn let me know the path
View 4 Replies
View Related