Programming :: Compile EmbeddedQT On My Debian Box For A ARM Processor - Error

Dec 18, 2009

I'm trying to cross compile embeddedQT on my Debian box for a ARM processor.

I've configured with

Everything went OK. I then made, after about 10 mins of compile I get the following error.

View 5 Replies


ADVERTISEMENT

Ubuntu :: Getting Gcc To Compile For The ARM Processor?

Oct 9, 2010

i got a beagleboard which has an ARM processor. rather the compiling my programs from the beagleboard itself, i'd like to use my beefy AMD64 desktop to plow through compilation.how to do a cross compile, or at least set gcc up so that i can do a cross compile. i'm running Ubuntu 10.04 with gcc 4.4.3 when i run: gcc -b arm to tell gcc to compile for arm, it says: gcc: error trying to exec 'arm-gcc-4.4.3': execvp: No such file or directory

View 3 Replies View Related

Programming :: C++ Compiler(G++) Comes Up With Error When Try To Compile A Program Using Qt

May 26, 2010

I am using the C++ compiler G++ to compile my programs on Linux Mint 8 - Gnome.

I recently installed QT and when I tried to compile a simple "Hello World!" program it gave me this error:

Quote:

This is the code in HelloWorldQt.cpp:

Code:

I have tried using GTK instead but I get a similar error.

View 7 Replies View Related

Programming :: Compile Iputils Package Statically And Getting Error

Sep 13, 2010

I am trying to compile the iputils package on FC12 statically but badly stuck up on a below error. My requirement is; I need to have ping utility built statically.

Any clue whats missing here? Per my understanding its trying to locate the glibc and when I search for glibc rpm I can see all those packages are properly installed.

[root@bastionNUX iputils-s20100418]# make LDFLAGS="-static -s"
gcc -static -s ping.o ping_common.o -o ping
/usr/bin/ld: cannot find -lc

[Code].....

View 6 Replies View Related

Programming :: Regular Expression Compile Failed - Throwing Error

Feb 15, 2011

The following command would remove the leading astericks, spaces, slashes, tabs and is present in an awk script.

Code:
gsub(/^[/* ]*/,"")

The above code is working fine when i run in Cygwin on windows machine. But when i run in Ubuntum throws the following error.

Code:
awk: ./Format.awk: line 30: regular expression compile failed (bad class -- [], [^] or [)
^[
awk: 30: unexpected character ''
awk: ./Format.awk: line 30: runaway regular expression /,""); ...

View 2 Replies View Related

Debian :: Gcc Won't Compile - Getting Error

May 1, 2010

When I try to compile it get there errors: [URL].... compiling with: gcc -v execv.c -o hola I already installed build-essential, what could be happening with my gcc compiler? this is my code, as you can see it's not complex

[code]....

View 6 Replies View Related

Debian :: Bluez 4.34 Compile - Error

Mar 31, 2009

Bluez 4.34 Compile - Error...make[1]: Entering directory `/usr/src/bluez-4.34/audio'

./configure and make output.

View 15 Replies View Related

Programming :: Getting Error 'couldn't Compile Regular Expression Pattern: Invalid Character Range'

Nov 19, 2008

I'm having a bit of trouble with a regular expression I'm trying to write and I'm not sure if it's something Tcl specific or my lack of regexp understanding.

[Code]...

I get a number of strings passed to a proc in the format 3|x where x is a number, either 0 or within the range 5-12. My understanding is that that regexp will match the literal '3' followed by a '|', the escapes the special meaning of |, and then 0 or, because of |, a number within the range 5-12. However I'm getting the error 'couldn't compile regular expression pattern: invalid character range'.

View 3 Replies View Related

Debian :: Compile Clanbomber In Squeeze But Get The Following Error Message When Running ./configure?

Dec 4, 2010

I am trying to compile Clanbomber in Squeeze but I get the following error message when running ./configure:

checking for DirectFB... found
checking for FusionSound... configure: error:
*** FusionSound 1.0.0 or newer is required. The latest

[code]...

View 4 Replies View Related

Software :: Install Easystroke To My Debian Lenny Tablet Pc - Compile Error

Apr 8, 2010

I'm trying to install easystroke to my debian lenny tablet pc, but compiling errores:

Am I missing some X components? I have installed needed depedencies; g++ libboost-serialization-dev libgtkmm-2.4-dev libxtst-dev libdbus-glib-1-dev intltool

Other mouse gesture program gestikk download site is down.. so there is only easystroke - or is there other mouse gesture programs available?

View 4 Replies View Related

Programming :: Why Is Only Compile Error "'Current:' Undeclared"

Jan 10, 2010

I have a program with a variable named current, but it is not declared. The syntax is current -> othervariable. Theoreticaly there should be no problem with this program. Just wondering what woudl cause this? Which linux include file is current supposed to be declared in?

View 2 Replies View Related

Fedora Installation :: Error: "An Unrecoverable Processor Error Encountered - Virtual Machine Reset Now"

Dec 13, 2010

I got the error: "An unrecoverable processor error has been encountered. The virtual machine will reset now." I have edited the options in installation screen with adding noreplace-paravirt at the end of boot parameters. but still have this error and FC installation does not continue.

View 11 Replies View Related

Software :: AMD Processor Fedora Doesnt Support AMD Processor?

Jan 5, 2010

i have installed ubuntu in my laptop.since i have AMD processor fedora doesnt support AMD processor..the recent version fedora 12 supprots AMD processor.i am doing my final project in ns2 hence it should support tht too!!! Which is the best choice to override ubuntu grub fedora 12 or redhat linux.

View 3 Replies View Related

Programming :: Running External Program On Same Processor?

Mar 2, 2010

The situation is that I have an MPI-parallel fortran program. I run it and it's distributed on N processors, and each of these processes must call an external program.

This external program is also an MPI program, however I want to run it in serial, on the processor that is calling it, as if it were part of the fortran program. The fortran program waits until the external program has completed, and then continues.

The problem is that this external program seems to run on any processor, and not necessarily the (now idle) processor that called it.

how I can call the program and ensure it runs only on this processor?

Extra information that might be helpful:

If I simply run the external program from the command line (ie, type "/path/myprogram.ex <enter>"), it runs fine. If I run it within the fortran program by calling it via

CALL SYSTEM("/path/myprogram.ex")

it doesn't run at all (doesn't even start) and everything crashes. I don't know why this is.

If I call it using mpiexec:

CALL SYSTEM("mpiexec -n 1 /path/myprogram.ex")

then it does work, but I get the problem that it can go on any node.

View 2 Replies View Related

Programming :: Setting Processor Affinity In Application

Jan 28, 2010

there is any possibility that I can set in this application an affinity so that the processor binds it to core 2 for instance.Is this possible to do in an application that runs than under root? Or is this just possible after the application started with using the taskset tool?

View 1 Replies View Related

Software :: GDB Compiling Error For ARM Processor

Jan 4, 2010

When I compiling gdb for ARM processor I am getting this error as:

Code:
checking for iconv declaration... install-shextern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for library containing waddstr... no
configure: WARNING: no enhanced curses library found; disabling TUI
checking for library containing tgetent... no
configure: error: no termcap library found
make[1]: *** [configure-gdb] Error 1
make[1]: Leaving directory `/mnt/freescale/sources/gdb-7.0'
make: *** [all] Error 2
sharief@sharief-desktop:/mnt/freescale/sources/gdb-7.0$

What will be the error. I think the termcap library is not there. I downloaded and cross compiled tremcap library but still it is not working.

View 1 Replies View Related

Fedora :: Unrecoverable Processor Error Has Been Encountered

Jul 14, 2010

I installed Fedora 12 at school on my external hard drive, using Windows Virtual PC 2007 to run Fedora at school on a dell PC with XP 2000, which works at school!However at home, i am using Windows 2007 os, I install Windows Virtual PC 2007, wasn't successful in running Fedora 12.As soon as Fedora begin to boot, an error message appeared which said,"An unrecoverable processor error has been encountered.The virtual machine will reset now".below the message it gives you only option to reset the virtual machine, however this is a vicious cycle

View 1 Replies View Related

Programming :: Implementing Matrix Based Keypad On X86 Processor Using GPIO's?

Feb 5, 2010

I need to control matrix 5x4 keypad, on a processor

i am doing by making one row low at a time, and keeping all other rows high,

by scaning coloums, the corresponding key value becomes low.

my problems is that it is taking much time to respond, like to make gpio

low to high and high to low...

View 1 Replies View Related

Programming :: Processor Priority Level For Algorithm For Buffer Allocation

Jan 9, 2010

The algorithm for reading and writing disk blocks use the algorithm getblk to allocate buffers from the pool. In the algorithm getblk, if the kernel removes a buffer from the free list, it must raise the processor priority level to block out interrupts before checking the free list. Why ?Where can i find the C implementation of the above algorithm for buffer allocation in the linux source code ?

View 1 Replies View Related

Hardware :: Nvidia Co-processor Probe Failed With Error -1

Feb 20, 2010

I'm looking through dmesg and see

Code:

nvidia: probe of 0000:00:03.5 failed with error -1

the corresponding bus is

Code:

00:03.5 Co-processor: nVidia Corporation MCP79 Co-processor (rev b1)
Subsystem: nVidia Corporation Device cb79
Flags: 66MHz, fast devsel, IRQ 16
Memory at 93300000 (32-bit, non-prefetchable) [size=512K]
Kernel modules: nvidia

from where I infer that the module is correctly loaded though. Do you guys know what is the -1 error code? is there any way I could check if the coprocessor is currently working?

View 2 Replies View Related

Programming :: Perl Child Processes Become Zombie On A Multi-core Processor?

Apr 11, 2011

I have written a simple script which has to find required patterns from a bunch of files ( where each file is around 2 GB each,which contain the output of seq 1 10000000000000) on an 8 core machine.I am current forking 6 child processes which run simultaneously on 6 cores of the processor & have to search for the required pattern in 6 different files & inform the parent process when a pattern is found using a PIPE.

The problem is,when a child process is done reading a text file looking for a pattern,it is becoming a zombie process.It exits cleanly when i put a $SIG{CHLD} = "IGNORE"; in the script.Can any one tell me whats going on & how do i improve the communication between child and parent processes?

Code:
#!/bin/perl
use strict;

[code]...

View 3 Replies View Related

Fedora Servers :: Make PHP Pages - Shows An Internal Error 500 Page But Doesn't Show On What Line And Compile Error Encountered

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

Fedora Installation :: An Unrecoverable Processor Error Has Been Encountered - The Virtual Machine Will Reset Now

Jan 28, 2010

I been havin a problem whit the installation of fedora 12 on virtual pc, gives me the error:

"An unrecoverable processor error has been encountered.The virtual machine will reset now."

View 7 Replies View Related

Debian :: What Image Can Use For 64-bit Intel Processor?

May 5, 2010

If your PC has a 64-bit AMD or Intel processor, you will most likely need the "amd64" images (though "i386" is also fine), the "ia64" images will not work."Does it mean I should use ia64 image for my 64-bit intel processor?

View 4 Replies View Related

Debian :: Phatch Image Processor On Stretch

Jan 15, 2016

Have 'Phatch' installed and running on 'Stretch'? I had no problems on 'Jessie' but on a new install of Stretch I just get the 'Phatch' icon in the middle of the screen. Tried from Command line and this is the output:

/usr/lib/python2.7/dist-packages/wx-3.0-gtk2/wx/_core.py:8196: GtkWarning: gtk_disable_setlocale() must be called before gtk_init()
return _core_.PyApp__BootstrapApp(*args, **kwargs)
Traceback (most recent call last):
File "/usr/lib/python2.7/dist-packages/wx-3.0-gtk2/wx/_core.py", line 16765, in <lambda>
lambda event: event.callable(*event.args, **event.kw) )

[Code] ......

The 'Phatch' forums have not had any recent posts and the 'Phatch' website [URL] .... has 'Server not found'.

View 2 Replies View Related

Debian :: ISO Selection For Intel Core I7 Processor

Aug 24, 2011

What is the best debian iso that I should choose to install in a machine with intel core i7 second gen processor? amd64,ia64 or i386 ?

View 4 Replies View Related

Debian :: Netbook With I5 Processor - What Squeeze To Be Installed

Jan 1, 2011

I bought a netbook with an i5 460M (64 bit). What version of Debian squeeze do you suggest to install to have maximum benefits?

View 1 Replies View Related

Debian Installation :: Processor Architecture Of HP Pavilion A309.uk

Jul 28, 2011

Planning on turning an old PC i've acquired into a server. Not quite sure which debian to download for an HP Pavilion a309.uk, or where to find this information. None of the codes seem to match with any on the link underneath.

View 5 Replies View Related

Debian :: Which ISO Should Choose For Intel Xeon 64bit Processor?

Oct 11, 2010

any one point me to the download link of the most suitable ISO image (CD/DVD) with the latest stable Debian Lenny distro, taking into account that I have a two-processor Intel motherboard with currently one Intel Xeon 64bit processor.

View 4 Replies View Related

Debian Hardware :: Minimum CPU / Processor Requirements For No Desktop?

Mar 4, 2011

What is the minimum CPU or processor required for a Debian stable installation with no GUI, desktop environment, or window manager? I can find specs for all minimum hardware capabilities except for the processor on a system with no desktop GUI. (Debian Stable GNU/Linux Installation Guide 3.4 Meeting Minimum Hardware Requirements) section 2.1.2: CPU, Main Boards, and Video Support and Linux Hardware Compatibility Section 4.1—Intel make it seem like any i386 CPU is good enough.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved