Displaying 8 results from an estimated 8 matches for "armv4l".
Did you mean:
armv4
2004 Sep 10
2
Error initializing flac stream decoder.
I've cross-compiled flac for the armv4l processor (rio receiver), and
i'm trying to start up a decode thread :
#include <FLAC/stream_decoder.h>
....
FLAC__StreamDecoder *flac = NULL;
flac = FLAC__stream_decoder_new();
if (flac == NULL) {
printf("[DECODE] Unable to initalize...
2014 Mar 03
3
gsm codec compile
....o] Error 1
?
Here are the lines in the Makefile -
ifeq (, $(findstring $(OSARCH) , Darwin SunOS ))
ifeq (, $(findstring $(PROC) , x86_64 amd64 ultrasparc sparc64 arm armv5b arm5b armeb hppa2.0 ppc powerpc ppc64 ia64 s390 bfin mipsel
mips))
ifeq (, $(findstring $(shell uname -m) , ppc ppc64 alpha armv4l arm5b armv5b armv61 armv7l s390 ))
OPTIMIZE+=-march=$(PROC)
endif
endif
endif
gcc is -
Thread model: posix
gcc version 4.6.3 (Debian 4.6.3-14+rpi1)
# uname -m
armv6l
Doug
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/aste...
2001 May 12
0
Re: [R] R for ARM Linux (moved from r-help to r-devel)
...g/projects/skiffcluster.html
and R-1.2.3 using cross compilation tools on x86 linux (cross compilers
are also available at www.handhelds.org).
Compilation went smoothly, it is possible to start the resulting binary,
it prints its version as:
> version
_
platform armv4l-unknown-linux-gnu
arch armv4l
os linux-gnu
system armv4l, linux-gnu
status
major 1
minor 2.2
year 2001
month 02
day...
2004 Sep 10
0
Error initializing flac stream decoder.
--- Reza Naima <reza@reza.net> wrote:
> I've cross-compiled flac for the armv4l processor (rio receiver), and
>
> i'm trying to start up a decode thread :
>
> #include <FLAC/stream_decoder.h>
> ....
> FLAC__StreamDecoder *flac = NULL;
> flac = FLAC__stream_decoder_new();
> if (flac == NULL) {
>...
2004 Sep 10
2
Error initializing flac stream decoder.
...memcpy(buffer, inBuffer, bytesToCopy);
if (bytesToCopy < *bytes)
*bytes = bytesToCopy;
return FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;
}
Josh Coalson wrote:
> --- Reza Naima <reza@reza.net> wrote:
>
>>I've cross-compiled flac for the armv4l processor (rio receiver), and
>>
>>i'm trying to start up a decode thread :
>>
>> #include <FLAC/stream_decoder.h>
>> ....
>> FLAC__StreamDecoder *flac = NULL;
>> flac = FLAC__stream_decoder_new();
>> if (flac == NUL...
2014 Mar 10
2
[PATCH] builder: complete architecture handling
Add the possibility to choose which architecture use to build the wanted
image (--arch). Since this implies that running commands on the guest is
usually not possible when the architecture is different than the host
one, another new option (--allow-foreign-arch-ops) allows to run
commands nevertheless.
The caching scheme is adapted to account for the architecture (with
--print-cache showing the
2002 Aug 18
1
initramfs scripts + cpio archive stuff
...2.74 booting
Loading modules:
INIT: Entering runlevel: 3
Starting system logger: syslogd
Starting kernel logger: klogd
Starting INET services: inetd
Starting pcmcia Starting PCMCIA services: cardmgr.
Starting local Setting up network: lo eth0
SA1100 Linux (experimental)
Kernel 2.5.31 on an armv4l
assabet login:
Enjoy.
--
Russell King (rmk@arm.linux.org.uk) The developer of ARM Linux
http://www.arm.linux.org.uk/personal/aboutme.html
--32u276st3Jlj2kUU
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="initramfs.diff&q...
2014 Mar 11
4
Re: [PATCH] builder: complete architecture handling
...;armhf" -> "armhf"
>
> I don't think "armhf" is a thing. AFAIK all ARM hard float
> architectures would be ARM v7 (or ARM v8, but that's separate).
>
> For reference, RPM's architectures are:
>
> $ rpm --eval %{arm}
> armv3l armv4b armv4l armv4tl armv5tel armv5tejl armv6l armv7l armv7hl
> armv7hnl
>
> (Of which no one cares about anything < armv7, and by the end of next
> year no one will care about anything < armv8).
In Debian do exists only the following two architectures:
- "armel", arm EABI with onl...