Displaying 20 results from an estimated 25 matches for "ardie".
Did you mean:
ardi
2000 May 18
0
Failed copying and writing
Samba 2.0.7, NT WS 4.0 sp6, Slackware 7.0 (glibc 2.1.2), linux kernel
2.2.15 with crypto patch patch-int-2.2.14.1.
Samba configured/compiled with the following switches:
--with-smbmount --with-syslog
Most of the time writing to, or copying from samba shares, hangs, then
fails.
Trying to copy scrt303.exe from HOMES share to NT box, smbstatus reports:
Samba version 2.0.7
Service uid
2000 May 22
0
read_socket_data: recv failure for 4
Samba gives read_socket_data: recv failure for 4 when trying to write or
read with NT4 WS, why?
Samba 2.0.7, NT WS 4.0 sp6, Slackware 7.0 (glibc 2.1.2), linux kernel
2.2.15 with crypto patch patch-int-2.2.14.1.
Samba configured/compiled with the following switches:
--with-smbmount --with-syslog
Most of the time writing to, or copying from samba shares, hangs, then
fails.
Trying to copy
2016 Apr 15
2
For the LLVM wishlist
On 4/15/16, Joerg Sonnenberger via llvm-dev <llvm-dev at lists.llvm.org> wrote:
> On Fri, Apr 15, 2016 at 02:31:59PM +0200, ardi via llvm-dev wrote:
>> On Fri, Apr 15, 2016 at 1:02 PM, Joerg Sonnenberger via llvm-dev
>> <llvm-dev at lists.llvm.org> wrote:
>> > On Fri, Apr 15, 2016 at 10:45:03AM +0200, ardi via llvm-dev wrote:
>> >> What I found is
2018 Oct 01
2
How to build LLVM linked to libc++abi?
Thanks a lot, but tried it and I get this:
CMake Error at projects/libcxx/CMakeLists.txt:361 (message):
LIBCXX_ENABLE_STATIC_ABI_LIBRARY is not supported on OS X
Why is it not supported? If I manually embed libc++abi.a inside
libc++.a it seems to work.
Thanks!
ardi
On Mon, Oct 1, 2018 at 4:20 AM Petr Hosek <phosek at chromium.org> wrote:
>
> You can use
2016 Apr 15
2
For the LLVM wishlist
On Fri, Apr 15, 2016 at 1:02 PM, Joerg Sonnenberger via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
> On Fri, Apr 15, 2016 at 10:45:03AM +0200, ardi via llvm-dev wrote:
>> What I found is that the build system is really complex, performs many
>> checks, and quite often takes wrong decisions (example: a fatal error
>> if the OS X version is older than 10.7, instead of
2018 Jul 20
4
Relinking (syscall-free) ELF executable into Mach-O and PE executables
Hi,
Let's suppose we have an ELF executable that doesn't issue any syscall
(I mean, syscalls are issued from an external dynamic library, not
from the executable, and we can ignore such dynamic library because we
have the proper equivalent library with the proper syscalls in MacOS
and Windows).
So, the question: Is it "currently possible" (by "currently possible"
I
2016 Apr 12
2
Availability of "-export_dynamic" when compiling with support for older OS X releases
Looking at tools/clang/lib/Driver/Tools.cpp , there's this fragment of code:
if (Args.hasArg(options::OPT_rdynamic) && Version[0] >= 137)
CmdArgs.push_back("-export_dynamic");
I built LLVM 3.4.2 from a OS X 10.11 "El Capitan" but specifying a fat
build (386+x86_64) and requesting support back up to 10.6. It went
fine, and the build passes all tests when run
2018 Sep 30
2
How to build LLVM linked to libc++abi?
Hi!
I sometimes build LLVM with a static libc++.a in MacOS, so that I use
the LLVM libc++ instead of the system-wide one. However, when doing
so, I always get link errors when building LLVM, because the build
system links with libc++.a, but not with libc++abi.a and so there are
quite a few missing symbols that the linker cannot find.
My workaround (which always seems to work) is to embed
2017 Feb 22
6
Users of MIPS and PowerPC backends in production-class projects?
Hi,
I'd like to experiment with the MIPS and PowerPC backends, but,
considering that they aren't widely used processors, I'd like to start
with the same environment (OS/ABI/linker) used by the people who work
with these backends.
So, what OS/ABI/linker use the people who use these backends for
production work?
Thanks!!
2016 Apr 15
2
For the LLVM wishlist
Hi,
I don't know if there's a wishlist for future LLVM releases but, in
case there is one, maybe you'd like to consider my experience (as a
multiplatform application developer who discovered clang just because
Apple started to include it in Xcode since 10.8 Mountain Lion IIRC,
and really liked it, specially for how warnings are issued, which
really helps to improve your app code
2017 Feb 22
2
Users of MIPS and PowerPC backends in production-class projects?
Is the MIPS backend production-ready for any (or all) of the OSs you
mention? As I said, I'd like to start using the MIPS and PowerPC backends
with an OS/linker where they are most reliable.
In the case of PowerPC, from the comments I conclude there's people
successfully using the backend in Linux. OTOH, FreeBSD is "almost there",
and not sure about NetBSD and OpenBSD.
In the
2018 Apr 03
2
Multi-architecture (ELF or other) loaders and dynamic linkers available?
Hi,
I'm looking for some sort of "universal loader and dynamic linker",
capable of loading in memory an executable (ELF or other, the format
is not a requisite at this time) for any of the "major" architectures
that have LLVM backends (namely: x86, x86_64, ARM, ARM64, PPC, PPC64,
MIPS32, MIPS64), including also relocation, and loading of symbols
from dynamic libraries that
2018 Apr 03
0
Multi-architecture (ELF or other) loaders and dynamic linkers available?
On 4/3/2018 9:33 AM, ardi via llvm-dev wrote:
> Hi,
>
> I'm looking for some sort of "universal loader and dynamic linker",
> capable of loading in memory an executable (ELF or other, the format
> is not a requisite at this time) for any of the "major" architectures
> that have LLVM backends (namely: x86, x86_64, ARM, ARM64, PPC, PPC64,
> MIPS32,
2016 Apr 14
2
Question about compiler-rt builtins targets
Hi,
Short version: Is it possible to enable *all* builtins architectures? How?
Longer explanation:
I don't quite understand how compiler-rt targets are decided to be
built while invoking cmake from the LLVM tree.
I tend to believe that builtins and sanitizers (the two big parts in
compiler-rt) are quite different monsters, but however they share the
same build decisions and (if I'm not
2013 Jun 19
3
Calling an array in a struct in C to R
Hi there,
Although I'm a quite experienced R user and know my ways in C, I stumbled
upon a problem I don't know how to solve. Therefore, I hope someone can
provide me with the information or pointers I need in order to understand
the way in which the communication between R and C occurs. I have the
following C code which basicallly reflects what I want:
typedef struct
{
float
2018 Jul 23
2
Relinking (syscall-free) ELF executable into Mach-O and PE executables
Couldn’t you write the relocations to the ELF executable? I don’t know if
current linkers have support for this, but it seems possible in theory to
make a relinkable executable. If you want to do this with an already
linked executable though, then yea this won’t be possible.
On Fri, Jul 20, 2018 at 10:30 AM Reid Kleckner via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> Typically
2005 Aug 17
2
Sentinel Driver
I'm trying to run the Ardis Cutting Optimizer under
wine but it uses a Rainbow Sentinel driver to detect a
parallel port dongle for copy protection. I have the
dongle and I've installed the sentinel driver, but
when I run wine COWIN.exe I get the following:
fixme:vxd:VXD_Open Unknown/unsupported VxD
L"sntnlusb.vxd". Try setting Windows version to
'nt40' or
2020 Jun 19
2
Inclusive language in LLVM: can we rename `master` branch?
On 19/06/2020 12:56, Renato Golin via llvm-dev wrote:
> I never associated any of those words with their negative
> connotations, either, but this is because of my upbringing and some of
> the privileges I enjoy from our broken society.
>
> I always associated the word "master" as reverential, like with
> martial arts, Jedi kind of thing. And to me, "white"
2003 Mar 10
2
how to measure samba performance ?
Hi all.. i'm new to this samba things
I was wondering, is there any tools that available, i
mean in open source term in purpose to measure the
samba performance..
What I mean in performance is a software that can
measure I/O operation, file throughput , network
traffic and etc..etc..
Actually I want to compare samba and SMB
implementation in windows. Is there anyone has done
this before
2003 Mar 12
1
Windows 2000 Pro can't join the Samba PDC
Hi all
At first i'm using wizard in swat page to create samba
as a pdc for my win 2000 pro client, and i follow the
instruction in howto-collection.pdf. The doc file say
that there are 2 ways of client join the domain.
1. "manually" add the trust machine account in the pdc
2. "on the fly" with adding command 'useradd' in the
global parameter 'add user