search for: armv6l

Displaying 20 results from an estimated 41 matches for "armv6l".

Did you mean: armv6m
2016 Jan 04
4
Diff to add ARMv6L to Target parser
>> Going back through SVN history, I cannot find any evidence that ARMv6L ever existed. > > Oh, my bad!! I was thinking of ARMv7l... :/ > > Nevertheless, I'll leave you guys to review this one, as I lost touch with the parser a while ago. Ah, I see: ARMv7L is now an alias for ARMv7A. So, if William has to add support for ARMv6L, I'd suggest he adds...
2016 Jan 04
2
Diff to add ARMv6L to Target parser
>> However, because the DefaultTargetTriple is armv6l-unknown-linux-gnueabihf, >> and llvm didn’t know about v6l, it would fail to match and canonicalize to armv6. >> I added the notion of v6l to llvm to address this. > > ARMv6l was definitely there once. I'm not sure what happened. > > I'm copying the ARM folks that d...
2016 Jan 06
2
Diff to add ARMv6L to Target parser
Taking the suggestions of the group under consideration, I’ve generated a new diff. The thing to note is that armv6l is now treated identically to armv6hl. I’ve also added a unit test. This seems to me to be the least invasive method, and holds to existing conventions as closely as possible. Thoughts? -------------- next part -------------- A non-text attachment was scrubbed... Name: llvm-armv6l.diff Type: app...
2016 Jan 03
2
Diff to add ARMv6L to Target parser
...rchType::ARMSubArch_v7m || triple.getSubArch() == llvm::Triple::SubArchType::ARMSubArch_v7s || triple.getSubArch() == llvm::Triple::SubArchType::ARMSubArch_v7k) { triple.setArchName("armv7"); } } return triple; } However, because the DefaultTargetTriple is armv6l-unknown-linux-gnueabihf, and llvm didn’t know about v6l, it would fail to match and canonicalize to armv6. I added the notion of v6l to llvm to address this. Thoughts/comments? - Will -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: llvm-diff...
2016 Jan 07
2
Diff to add ARMv6L to Target parser
...e/swift-llvm/blob/stable/include/llvm/Support/ARMTargetParser.def#L106 <https://github.com/apple/swift-llvm/blob/stable/include/llvm/Support/ARMTargetParser.def#L106> Should I get the head of the non-swift repository and generate a new diff? Also, I suspect that it’s not a good idea to have armv6l map to armv6k, because that seems like quite an assumption to make. Clearly, armv6 sub architectures that aren’t v6k will still be v6l in linux. (provided they’re little-endian). I’ve already made that change, and it would be included in any revised diff that I send out. Thanks, - Will > On J...
2016 Jan 08
2
Diff to add ARMv6L to Target parser
...pp =================================================================== --- unittests/ADT/TripleTest.cpp (revision 257090) +++ unittests/ADT/TripleTest.cpp (working copy) @@ -851,6 +851,10 @@ EXPECT_EQ("arm1136jf-s", Triple.getARMCPUForArch()); } { + llvm::Triple Triple("armv6l-unknown-eabi"); + EXPECT_EQ("arm1136jf-s", Triple.getARMCPUForArch()); + } + { llvm::Triple Triple("armv6j-unknown-eabi"); EXPECT_EQ("arm1136jf-s", Triple.getARMCPUForArch()); } I looked into the tests (and unit tests), and found that perhaps t...
2016 Jan 05
3
Diff to add ARMv6L to Target parser
...d not be treated as one. Tim’s perspective is that what Renato says isn’t wrong, but that while the logic currently used to map armv7l into something meaningful is not great, it is certainly not unacceptable. Given that armv7l is already treated in this way, it is not unreasonable to also support armv6l. How is this for a proposed solution? What if I add logic to llvm::ARM::getCanonicalArchName() <https://github.com/apple/swift-llvm/blob/stable/lib/Support/TargetParser.cpp#L387> that matches the trailing ‘l’ (or ‘b’) and treats it the same way that ‘el’ and ‘eb’ are now? This function wou...
2014 Mar 03
3
gsm codec compile
...optimization. Not sure why it does not recognize the processor since it is one that is mentioned in the Makefile.? Any help would be appreciated. make[2]: Entering directory `/usr/src/asterisk/codecs/gsm' ?? [AS] src/k6opt.s -> src/k6opt.o Assembler messages: Error: unknown architecture `armv6l' Error: unrecognized option -march=armv6l make[2]: *** [src/k6opt.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...
2016 Jan 05
6
Diff to add ARMv6L to Target parser
> You assume triples make sense. That's the first mistake everyone does > when thinking about triples. :) I know they don't make sense in many corner cases, but I think discarding logic where it *does* exist is a mistake. > AFAIK, "ARMv7B" is only used by HighBank, which is no more. But that, > too, was "ARMv7A big endian". I believe it's what any
2016 Jan 05
2
Diff to add ARMv6L to Target parser
On 5 January 2016 at 09:13, Renato Golin <renato.golin at linaro.org> wrote: > Anyhow, Artyom's proposal is the best, IMO, to treat it like an alias > and handle like v7A internally. If we end up needing specific > decisions in the driver, it should stay in the driver. That's rather a hack, given that the 'l' actually has semantic meaning, but I suppose I could live
2016 Jan 05
2
Diff to add ARMv6L to Target parser
...suppose I could live with it. > > Not really. I disagree. "armv7l" is created specifically by Linux appending a little-endian 'l' to an "armv7" base. It's much less common (because no-one cares about big-endian), but "armv7b" also exists. As do "armv6l", "armv6b" and probably "armv8" equivalents too if you ran a 32-bit kernel there. Adding random aliasing on an ad-hoc basis doesn't scale or represent what's really going on. > In the Arch side, ARMv7l is *really* ARMv7A, so it should not have any > further k...
2016 Jan 05
2
Diff to add ARMv6L to Target parser
Hi, IMO we should support this, even though if given the option I'd have asked the linux guys not to invent a new triple. It's in linux now, and `uname -a` is a very standard way of obtaining the host's triple. James On Tue, 5 Jan 2016 at 08:34 Tim Northover via llvm-dev < llvm-dev at lists.llvm.org> wrote: > On 4 January 2016 at 14:42, Artyom Skrobov via llvm-dev >
2016 Feb 20
1
APC Back-UPS BX1400U
...to use "Reply All" in Gmail - I won't get two copies. > torsten at raspberrypi ~ $ uname -a > Linux raspberrypi 4.1.13-v7+ #826 SMP PREEMPT Fri Nov 13 20:19:03 GMT 2015 armv7l GNU/Linux > torsten at raspberrypi ~ $ Hmm, I upgraded the base install to kernel 4.1.17+ (mine is armv6l - Model B) and tried usbhid-ups with a CyberPower USB UPS. No issues retrieving the Manufacturer, Product and Serial Number strings. I will see if I can try with an APC later. I don't know if we have ruled out permission problems yet. I had the UPS plugged in when I installed the NUT .debs, an...
2013 Apr 30
2
Pre-release 1.3.0pre4 (hopefully the last)
...t;> linux-x86_64 openbsd5-i386 freebsd5-i386 > i686-w64-mingw32 - builds correctly, passes all tests (NT 6.1.7601). Add to that: - linux-x86_64 (passed usual tests, when configured with no options, --enable-sse) - minGW (not w64) on Windows 7 32-bit - Visual Studio 2012 on Windows 7 32-bit - armv6l-unknown-linux-gnueabihf (raspbian) Furthermore I've ran the tests I used for the lossless comparison which is on the FLAC website. The results are attached. I'm not sure what happened, but it seems something happened to my system (I did no software update or something of that sort), the...
2015 Feb 09
0
About your driver NUTDRV_ATCL_USB(8) for install
Dear Chales, Thanks for your quick reply. I have Raspberry with last Kernel [Linux pi1 3.18.6+ #753 PREEMPT Sun Feb 8 14:47:22 GMT 2015 armv6l GNU/Linux] If <upsdrvctl>, <upsd> and <upsmon> are stopped <nutdrv_atcl_usb> Works well without any error as "Device or resource busy". If I run <upsc> command never receive any value from my ups <upsc ups at localhost> then I can't test shutdo...
2012 Mar 06
6
openssh static build - mission impossible?
...='-O2 -g -march=armv6j -mtune=arm1136jf-s -mthumb-interwork -mno-thumb -Os -fpic' export CXXFLAGS='-O2 -g -march=armv6j -mtune=arm1136jf-s -mthumb-interwork -mno-thumb' export FFLAGS='-O2 -g -march=armv6j -mtune=arm1136jf-s -mthumb-interwork -mno-thumb' ./configure \ --host=armv6l-redhat-linux-gnueabi \ --build=armv7l-unknown-linux-gnueabi \ --program-prefix= --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/...
2015 Feb 09
2
About your driver NUTDRV_ATCL_USB(8) for install
On Feb 9, 2015, at 6:48 AM, PERE (yahoo.es) <pererivers at yahoo.es> wrote: > 0.028188 Can't set USB configuration: could not set config 1: Device or resource busy > 0.029246 detached kernel driver from USB device... > 0.030559 USB device [0001:0000] opened > 0.866216 read: (8 bytes) => 03 00 00 00 00 00 00 00 > 0.866413 reply[0] = 0x03
2020 Apr 03
1
Mailfiles gets duplicated
...585918395.M884727P1073Q1Ra4a111c1e0f5a399.raspberry-pi:2, -rwx------ 1 pi pi? 1,1K avril? 3 14:53 1585918398.M36019P1077Q2R10960cdc588b3ede.raspberry-pi:2, Below are details about my configuration pi at raspberry-pi:~$ sudo uname --all Linux raspberry-pi 4.4.38+ #938 Thu Dec 15 15:17:54 GMT 2016 armv6l GNU/Linux pi at raspberry-pi:~$ mount [...] /dev/sda1 on /home/pi type ext4 (rw,noatime,nodiratime,data=ordered) [...] pi at raspberry-pi:/var/log$ sudo dovecot --version 2.2.13 pi at raspberry-pi:/var/log$ sudo dovecot -n # 2.2.13: /etc/dovecot/dovecot.conf # OS: Linux 4.4.38+ armv6l Debian 8....
2014 May 12
3
Dovecot Special_Use and K9 (and other Clients)
An embedded and charset-unspecified text was scrubbed... Name: dovecot.txt URL: <http://dovecot.org/pipermail/dovecot/attachments/20140512/f984dc96/attachment.txt>
2019 Jul 19
0
Address family not supported by protocol
...tmpfs 215M 280K 215M 1% /run tmpfs tmpfs 215M 0 215M 0% /sys/fs/cgroup tmpfs tmpfs 215M 0 215M 0% /tmp /dev/mmcblk0p1 vfat 90M 49M 41M 55% /boot tmpfs tmpfs 43M 0 43M 0% /run/user/1000 $ lscpu: Architecture: armv6l Byte Order: Little Endian CPU(s): 1 On-line CPU(s) list: 0 Thread(s) per core: 1 Core(s) per socket: 1 Socket(s): 1 Vendor ID: ARM Model: 7 Model name: ARM1176 Stepping: r0p7 CPU max MHz: 700.0000 CPU min MHz:...