Software :: Pcalc Make Error: Yacc Or Pcalc.o Missing?
Feb 2, 2010
I had the following error while trying to install pcalc in Debian. I have bison and flex installed, and looking at the files it looks like there might be a problem with yacc being removed from the Debian library. I'm a newbie but am trying to learn about memory
registration and interaction with the CPU. if I could get it to install Here's my log:
[code]...
View 5 Replies
ADVERTISEMENT
Feb 2, 2010
I had the following error while trying to install pcalc in Debian. I have bison and flex installed, and looking at the files it looks like there might be a problem with yacc being removed from the Debian library. I m trying to learn about memory registration and interaction with the CPU. This program could really help if I could get it to install Here's my log:
[code]...
View 1 Replies
View Related
Jun 17, 2011
I'm programming an SQL grammar using YACC and during compilation I got this error:
conflits:
1 shift/reduce, 2 reduce/reduce
the first error : shift/reduce
Code:
scalar_exp:
scalar_exp PLUS scalar_exp
| scalar_exp NEG scalar_exp
|scalar_exp MULT scalar_exp
|scalar_exp DIV scalar_exp
| atom
|column_ref
|function_ref .....
View 1 Replies
View Related
Feb 5, 2010
I was going through this Lex/YACC tutorial: [URL]... and I was working along with it. The Lex examples worked fine, but the YACC one quit white compiling
[Code]...
View 5 Replies
View Related
Dec 10, 2010
well i suppose this makes the problem ever more complex because i'm acutally attempting to make a cross compile tool chain from amd64 to arm.i've successfully built binutils and configured the kernel headers. now i'm stuck on gcci'm running Code: sudo make -j 4 when i get the issue (the -j 4 if you don't know helps speed up the process considerably by using more threads)
anyways it tells me: Code: make[2]: Entering directory `/home/alex/tmp/gcc-4.4.5/arm-linux/libgcc'
Makefile:143: ../.././gcc/libgcc.mvars: No such file or directory
make[2]: *** No rule to make target `../.././gcc/libgcc.mvars'. Stop.
[code]....
View 1 Replies
View Related
Nov 16, 2010
I have problem with compiling server... I finish ./configure without any problem, and now, when I write make, I see that: Quote: Makefile:360: *** missing separator. Stop. I read something, and know, that error shows when there are problem with spaces. And I should use there a tab. On line 360 I have:
Code: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/account.Po@am__quote@ I try to change this one space inside to tab, but that doesnt work for me... Terminal always show error in the same line.
View 2 Replies
View Related
Feb 6, 2010
I've been trying to install the latest version of Emacs from source but I'm running into a trouble. The commands "./configure" and "make" work just fine. However, when I run "sudo checkinstall" I get a message saying that makeinfo is missing:
Code: makeinfo is missing - cannot build manuals make: *** [info] Error 1 **** Installation failed. Aborting package creation. Cleaning up...OK Bye. What is Error 1
View 4 Replies
View Related
Mar 13, 2010
Linux mirage 2.6.18-128.1.6.el5 #1 SMP Tue Mar 24 12:10:27 EDT 2009 i686 i686 i386 GNU/Linux
I'm trying to compile tinyproxy for two days now on Redhat and can't seem to figure out whats missing here. The make bombs at:
Code: make[3]: Entering directory
GEN tinyproxy.conf.5
a2x: ERROR: xmllint --nonet --noout --valid /backup/builds/tinyproxy-1.8.1/docs/man5/tinyproxy.conf.xml returned non-zero exit status 4
[Code].....
View 4 Replies
View Related
Dec 13, 2009
I am trying to compile a kernel in the following directory:/usr/src/kernels/2.6.30.9-102.fc11.x86_64
Note I am not trying to build an rpm but just do a simple make. After configuring with make menuconfig I issue the make command and get the following error:
Code:
[root@compaq 2.6.30.9-102.fc11.x86_64]# make
CHK include/linux/version.h
CHK include/linux/utsrelease.h
SYMLINK include/asm -> include/asm-x86
make[1]: *** No rule to make target `missing-syscalls'. Stop.
make: *** [prepare0] Error 2
how to resolve this error? It seems to be fedora-centric.
View 4 Replies
View Related
Dec 1, 2014
I have an asus pc, and its network hardware is not recognized by debian, the drivers are not even in the list provided during the installation process. I managed to download them from another pc, but if i try to make them and install them, i'm stucked because Make is not installed on debian (nor is sudo).So i need a connection to install the drivers that provide me a co0nnections..
View 4 Replies
View Related
May 5, 2009
how do I use lex and yacc on Fedora10 .i am getting this messagebash: lex: command notfound
View 7 Replies
View Related
Oct 7, 2010
I am getting an error as below.
How do I resolve the error: make[2]: *** No rule to make target `', needed by `mpg123'.
How can I resolve this error.
View 4 Replies
View Related
Jun 2, 2009
How to use lex and yacc tools in red hat enterprise version 4?
reply soon..
do i have to install anything??
View 1 Replies
View Related
Mar 17, 2010
How to download lex and lex.yy.c and yacc in ubuntu9.10 ?
View 2 Replies
View Related
May 30, 2009
What is the software to be installed to compile and execute c/c++,lex and yacc programs in rhel4??
View 1 Replies
View Related
Jun 4, 2010
I am getting shift/reduce and reduce/reduce conflict in my yacc grammar code. yacc generates (i.e yacc -d -v parser.y) its grammar and state information in the parser.output file.
How can i interpret the below information and understand which grammar state is conflicting with other grammar state? Please help me to understand.
State 159 conflicts: 1 shift/reduce
State 1863 conflicts: 1 shift/reduce
State 1865 conflicts: 1 shift/reduce
State 1960 conflicts: 1 shift/reduce
View 6 Replies
View Related
Mar 21, 2011
I'm writing a parser using lex and yacc for an IEEE standard language ( STIL ). Here's the lex file ( some of ).
[Code]....
stil_language is the start symbol. The bus variable is initialised at 0 ( There's a check in the main ). The problem is that the parser does not recognises the NUM token ! It just re writes any expression that corresponds to the "number" regular expression. Here's a prompt example :
[Code]...
View 1 Replies
View Related
Jan 2, 2011
I am using kubuntu 10.04 Linux.. How can I write and debug and execute programs of yacc and flex ?
View 3 Replies
View Related
Sep 15, 2010
I want to gave much details as possible. working directory (~/a1/shell) in the shell directory i have Makefile. also in the shell directory i have subdirectory's (obj, src, include)
My current Makefile
Quote:
#What needs to be built to make all files and dependencies
clean:
# End of Makefile
I wanted it so: all .o files are created in the obj subdirectory, and my application, sshell, is created in the shell directory.
I am getting this error when i run the make run: No rule to make target 'shell.h', needed by 'shutil.o'. stop
View 1 Replies
View Related
Jun 7, 2011
I need to make a bootable grub2 CD. The instructions refer to /usr/lib/grub/i386-pc/stage2_eltorito. It is not supplied. Is it available separately, or do I need to build it myself? If so, how?
View 4 Replies
View Related
Apr 2, 2011
I am trying to run algodoo from terminal after I install it, but it doesn't run. It gives this error. I have been having troubles with permissions in the /usr folder recently, so I think that is what might have caused this. Please read through it thoroughly, as algodoo is actually located in the /opt folder.
Code: jon-Tuxbox:~$ sudo '/opt/Algodoo/algodoo/algodoo'
There are missing dependencies.
Please make sure that all the required libraries are installed.
Missing:
libcxcore.so.2.1 => not found
libcv.so.2.1 => not found
libhighgui.so.2.1 => not found
jon-Tuxbox:~$
View 1 Replies
View Related
Mar 20, 2011
when I have a broken packages on the system and want to apt-get install something (completely unrelated to the broken package) apt-get starts giving me crap about the broken stuff and won't download and install the packages I'm asking for. How can I make it ignore the completely unrelated stuff about missing deps on my system and download what I want?
View 3 Replies
View Related
Nov 17, 2010
When I try to compile some Java code on Ubuntu 10.10 (kernel 2.6+) using make and a Makefile.
I get an error indicating that the make utility cannot execute the java compile command (javac).
The error reads: /bin/bash: line 6: .: /usr/local/jdk1.5.0_18/bin/javac: cannot execute binary file
I am executing make as root. I have enabled permissions on all directories in the path /usr/local/jdk1.5.0_18/bin/javac and on javac itself.
I get this error whether using a jdk installed via ubuntu apt-get, or whether I install the jdk myself. And I get it using either Java 1.5 or 1.6
My machine has an 80386 processor. I notice the make utility is built for i686-pc-linux-gnu
However, I can manually compile using javac.
I can compile calling javac from within a bash script.
I can compile using the java compiler gcj from the command line: gcj --main=HelloWorld HelloWorld.java -o HelloWorld.exe
But I cannot compile java code from the makefile. Any reasons why I might be getting this error?
View 4 Replies
View Related
Aug 23, 2010
Unfortunately far for all unicode characters can be displayed in Fedora by default, (much less than in M$ Wnd). There is a tool that aim to find and install missing fonts when an non-displayable character appears, but it starts mainly when I accidentally open non-text file in terminal and never when a web-page I open in Mozilla Firefox (or Konqueror) contains such kind of characters. So, I see a rectangle with hexadecimal number of character in it (or simply empty rectangle in case of Konqueror) and don't know if there is a easy way to see it by installing missing font automatically (or manually at last) for range of this character or a way to install complete font collection to display all unicode characters from all ranges.
View 2 Replies
View Related
Oct 14, 2010
I was having a go at compiling the latest Amarok 2.3.2. As I run make I get the following error
make[2]: *** [lib/amarok_collection-mysqlecollection.so] Error 1
make[1]: *** [src/core-impl/collections/sqlcollection/mysqlecollection/CMakeFiles/amarok_collection-mysqlecollection.dir/all] Error 2
make: *** [all] Error 2
I'm running Slackware64-current. how to prevent this error arising?
View 13 Replies
View Related
Feb 1, 2011
I'm trying to make some pages. For this I try to host them locally. However, when I have an error in my PHP code, the server shows an internal error 500 page and doesn't show on what line and what compile error it encountered. There is no such information in the error log either. What should I do about it, it's not really nice to comment all the lines and then try to uncomment them one by one. I've been googling for a while, but didn't find anything.. I forgot to mention, I;m using Fedora :P, the apache that came with it and mysql and php from the repository...
View 3 Replies
View Related
Jun 3, 2010
I have installed a copy Fedora core 10 with the Eclipse C++ CDT feature. I am getting the following error when I do a project build for the "HelloWorld.cpp" Eclipse sample program: make: *** [HelloWorld.o] error 127
I am somewhat certain it is caused by an improper or incomplete configuration of Eclipse C++ CDT. Can anyone provide detailed instructions for configuring the Eclipse C++ CDT?
View 4 Replies
View Related
Sep 9, 2010
I am new to Red Hat. I have problem with yum missing dependency error when I tried to update or install rpm.
Below are short sample of it:
Error:
I tried to find the solution in internets and forums,such as yum clear all, but nothing works.
Here are the results of my repolist:
View 6 Replies
View Related
May 10, 2010
i had 10.4 installed perfectly under a different partition but when i try to boot xp, i get a missing hal.dll error. so i patched up xp but now cannot get into ubuntu. how do i fix this booting problem? also my swap of 10g is probably overkill. if i could change that. but its not a priority, i just want my ubuntu back. here are my diagnostics:
[code]...
View 9 Replies
View Related
Nov 19, 2009
I have RedHat SE (2.6.18-164.el5PAE) and yum gives the following error.
Code:
I tried my usual solutions to no avail:
Code:
View 5 Replies
View Related