Displaying 20 results from an estimated 1100 matches similar to: "LLVM_TARGETS_TO_BUILD"
2017 Feb 28
3
LLVM_TARGETS_TO_BUILD
Thanks! That should get me on the right track.
Direct reply was accidental. Thanks for putting me back on the list :-)
I'll repost with details once I've got it working.
On Mon, Feb 27, 2017 at 10:00 PM, Tim Northover <t.p.northover at gmail.com>
wrote:
> Hi John,
>
> [Adding llvm-dev again; best to keep these things in the open so they
> show up in future searches].
2017 Feb 21
2
tooling libraries missing in Windows download
I was looking to write a cross platform utility that worked with ELF/DWARF
files. I need the utility to run on OS X, Linux and Windows. I figured I
could use clang/llvm to build this tool.
I've made good progress on OS X. Before I got too far, though. I decided to
verify that I can build the code on Windows. I downloaded the 3.8.0 Windows
installer from the llvm downwloads page, ran the
2015 Sep 18
4
Heads up: Bug in CMake found when attempting 64-bit build with 32-bit clang-cl.
Hi Nico, Hans, Takumi,
I made it to the bottom of the issue. Turns out that
CMAKE_C_FLAGS=-m64
CMAKE_CXX_FLAGS=-m64
CMAKE_EXE_LINKER_FLAGS=/machine:x64
is enough to do a 64-bit build correctly with a 32-bit clang-cl (i.e. one
that targets 32-bit by default). Hooray! The missing piece that I had to
track down is why I would see `deps = msvc` stuff spewing onto my terminal,
rather than consumed
2016 Jan 17
2
Need help with changes to 'ScheduleDAGInstrs' on the v3.8 branch
I am stuck trying to adapt my out-of-target implementation to build on SVN
head (actually the v3.8 branch, rev #257626). This is currently working on
the v3.7.1 sources, but the changes to 'llvm::ScheduleDAGInstrs' have me
stumped as to how to revise my implementation to track the changes to this
class.
Our 'SHAVEAsmScheduler' derives from 'ScheduleDAGInstrs' and uses
2013 Feb 09
2
v3.8-rc6: btrfs-transacti Tainted: GF in btrfs_orphan_commit_root
Running an Ubuntu Raring VM which was built a week ago that is now
running 3.8-rc6, I was booting it last night when it hung. After a few
forced reboots, it came back up and I found the attached in kern.log.
Mostly, the VM has been used for testing anisble deployment, so not a
lot of work, just upgrading and installing software, then rebooting.
Are these reports useful? Is there any
2015 Sep 21
4
When can the dominator tree not contain a node for a basic block?
When looking into https://llvm.org/bugs/show_bug.cgi?id=24866, I
discovered that the root cause of the crash is that I was expecting
every basic block to have a corresponding Node in the dominator tree.
Apparently, the "while.end" basic block in the example does not have a
Node in the Dominator Tree. Can anyone tell me if this is expected?
If so, under what circumstances?
2018 Feb 25
3
Convert replica 2 to replica 2+1 arbiter
I must ask again, just to be sure. Is what you are proposing definitely
supported in v3.8?
Kind regards,
Mitja
On 25/02/2018 13:55, Jim Kinney wrote:
> gluster volume add-brick volname replica 3 arbiter 1
> brickhost:brickpath/to/new/arbitervol
>
> Yes. The replica 3 looks odd. Somewhere in 3.12 (?) or not until v4 a
> change in command will happen so it won't count the
2009 Apr 14
3
rt3 3.8.2 latest version as rpm for C5?
Hi,
I know, epel has rt3 in version 3.6.x.
And - sadly - for version 3.8.x the perl module dependencies are way
ahead of what I can find in epel or rpmforge.
But we really need some of the 3.8.x series features.
So has anybody maybe built those modules + rt3 v3.8.x for C5?
Any hint?
I really do not want to install f10. :O
Thx
Rainer
2016 Feb 25
2
[llvm-3.8-ec3] cmake-2.8.12 and gcc-4.6: Host compiler appears to require libatomic, but cannot find it.
Hi,
when I switch to an unsupported GCC like v4.6.4 to build LLVM v3.8-rc3
with cmake I get the following:
...
-- Looking for __atomic_fetch_add_4 in atomic
-- Looking for __atomic_fetch_add_4 in atomic - not found
CMake Error at cmake/modules/CheckAtomic.cmake:36 (message):
Host compiler appears to require libatomic, but cannot find it.
Call Stack (most recent call first):
2016 Feb 11
2
Vectorization with fast-math on irregular ISA sub-sets
Our processor also has some issues regarding the handling of denormals - scalar and vector - and we ran into a related problem only a few days ago.
The v3.8 compiler has done a lot of good work on optimisations for floating-point math, but ironically one of them broke our implementation of 'nextafterf'. The desired code fragment (FP32) is:
float xAbs = fabsf(x);
since we know our
2004 Aug 18
1
SecureCRT, OpenSSH, and keys
Hello all. I have been searching the web for a formula to get openssh and securecrt ssh2 keys working properly. Does anyone have a set of directions?
I have attempted creating keys in securecrt and converting them (ssh-keygen) to OpenSSH keys. I have attempted using OpenSSH's keys, but nothing seems to take. Any advice will help. Thank you.
OpenSSH v3.8
SecurCRT v4.1.7
-g
2013 Jan 17
2
[PATCH] virtio_console: Don't access uninitialized data.
From: Sjur Br?ndeland <sjur.brandeland at stericsson.com>
Don't access uninitialized work-queue when removing device.
The work queue is initialized only if the device multi-queue.
So don't call cancel_work unless this is a multi-queue device.
This fixes the following panic:
Kernel panic - not syncing: BUG!
Call Trace:
62031b28: [<6026085d>] panic+0x16b/0x2d3
62031b30:
2013 Jan 17
2
[PATCH] virtio_console: Don't access uninitialized data.
From: Sjur Br?ndeland <sjur.brandeland at stericsson.com>
Don't access uninitialized work-queue when removing device.
The work queue is initialized only if the device multi-queue.
So don't call cancel_work unless this is a multi-queue device.
This fixes the following panic:
Kernel panic - not syncing: BUG!
Call Trace:
62031b28: [<6026085d>] panic+0x16b/0x2d3
62031b30:
2016 Sep 20
4
LLVM v3.9.0 and math built-ins
Hi Mehdi,
The ISO C specification does permit the math functions to modify ‘errno’, but I thought that the ‘-fno-math-errno’ option was to tell the optimiser to assume that ‘errno’ is not modified by the math functions. Explicitly providing ‘-fno-math-errno’ is not restoring the elision optimisation that was performed by LLVM v3.8, and this is really only a driver option, with ‘-fmath-errno’
2004 May 23
5
OpenSSH v3.8p1 fails to interoperate for GSSAPI (Kerberos) and X-Windows
Versions: openssh-3.8p1-33, heimdal-0.6.1rc3-51, XFree86-4.3.99.902-40,
tk-8.4.6-37, all from SuSE 9.1 (unhacked); back-version peers have
openssh-3.5p1, XFree86-4.3.0-115, etc. from SuSE 8.2.
Symptoms:
1. When the client and server versions are unequal, the Kerberos ticket
is not accepted for authentication. All the clients have
PreferredAuthentications gssapi-with-mic, gssapi, others.
2.
2018 Feb 25
0
Convert replica 2 to replica 2+1 arbiter
Hi,
It should be there, see https://review.gluster.org/#/c/14502/ <https://review.gluster.org/#/c/14502/>
BR,
Martin
> On 25 Feb 2018, at 15:52, Mitja Miheli? <mitja.mihelic at arnes.si> wrote:
>
> I must ask again, just to be sure. Is what you are proposing definitely supported in v3.8?
>
> Kind regards,
> Mitja
>
> On 25/02/2018 13:55, Jim Kinney wrote:
2007 May 17
1
Auth issues in 3.0.25
Hi All,
since an upgrade from 3.0.24 to 3.0.25 on 2 separate sun solaris
(v3.8,v3.9) boxes I have experienced an inability to authenticate.
$ smbclient -L //serverbox -U username
Password:
session setup failed: NT_STATUS_LOGON_FAILURE
My global config is as follows:
workgroup = WORKGROUP
server string = SERVERBOX Samba Server
security = SERVER
obey pam
2012 Dec 24
11
[Bug 58729] New: [bisected] Display fails to turn on after suspend/resume (NV86)
https://bugs.freedesktop.org/show_bug.cgi?id=58729
Priority: medium
Bug ID: 58729
Assignee: nouveau at lists.freedesktop.org
Summary: [bisected] Display fails to turn on after
suspend/resume (NV86)
Severity: normal
Classification: Unclassified
OS: All
Reporter: wheel at herr-der-mails.de
2016 Feb 05
2
[LLVM v3.8-rc2] New (tar)balls, please?
HiHo Hans,
sorry, but I cannot see any tarballs shipped in [2]?
Forgot to upload?
Would like to give this pre-release a try on my Ubuntu/precise AMD64 system.
Thanks in advance.
Regards,
- Sedat -
[1] http://lists.llvm.org/pipermail/llvm-dev/2016-February/094797.html
[2] http://llvm.org/pre-releases/3.8.0/rc2/
2018 Feb 25
0
Convert replica 2 to replica 2+1 arbiter
gluster volume add-brick volname replica 3 arbiter 1 brickhost:brickpath/to/new/arbitervol
Yes. The replica 3 looks odd. Somewhere in 3.12 (?) or not until v4 a change in command will happen so it won't count the arbiter as a replica.
On February 25, 2018 5:05:04 AM EST, "Mitja Miheli?" <mitja.mihelic at arnes.si> wrote:
>Hi!
>
>I am using GlusterFS on CentOS7 with