Displaying 7 results from an estimated 7 matches for "_i386".
Did you mean:
i386
2004 Sep 13
0
[LLVMdev] Inline Assembly
...LVM (and Linux, BTW, uses
this feature a lot).
Another thought:
My impression is that inline assembly bites us a lot not because it's
used a lot but because the LLVM compiler enables #defines for the i386
platform that we don't support.
I think a lot of code has the following:
#ifdef _i386
inline asm
#else
slow C code
#endif
The LLVM GCC compiler still defines _i386 (or its equivalent), so
configure and llvm-gcc end up trying to compile inline assembly code
when they don't really need to.
I have to admit that this is an impression and not something I know for
sure, but it se...
2004 Sep 13
4
[LLVMdev] Inline Assembly
In order to get to the next stage with LLVM (like compiling a kernel) we
need to allow "pass through" of inline assembly so things like device
drivers, interrupt vectors, etc. can be written. While this feature
breaks the "pure" LLVM IR, I don't see any way around it.
So, I thought I'd bring it up here so we can discuss potential
implementations. I think we should
2004 Sep 17
2
[LLVMdev] Inline Assembly (unique arch string for llvm)
...at 11:40, John Criswell wrote:
> My impression is that inline assembly bites us a lot not because it's
> used a lot but because the LLVM compiler enables #defines for the i386
> platform that we don't support.
>
> I think a lot of code has the following:
>
> #ifdef _i386
> inline asm
> #else
> slow C code
> #endif
>
> The LLVM GCC compiler still defines _i386 (or its equivalent), so
> configure and llvm-gcc end up trying to compile inline assembly code
> when they don't really need to.
>
> I have to admit that this is an impres...
2012 Oct 17
2
dovecot-core, dovecot-mysql for Debian squeeze
....1.7-2 ~ bpo60 +1) of both packages,
now wanting to install dovecot-imapd dovecot-pop3d (version 1.2.15-7)
breaks the dovecot-core, dovecot-mysql,
apparently must be the same version all packages.
Debian Wheezy, installs without problems but installs the version
(dovecot-core_2.1.7-2 ~ ppa12.04 +1 _i386.deb)
all packets are the same version.
What is the correct version for Debian squeeze?
Look for San Google but eh had success.
Can anybody help?
Ricardo
2009 Sep 30
2
can not boot DOS image
Hi!
I'm trying to boot this kind of file:
$ file ibm_fw_bios_m9e144a_anyos_i386.img
ibm_[...]_i386.img: DOS floppy 1440k, x86 hard disk boot sector
(This is a BIOS update boot image for the IBM X Series servers).
I'm booting with PXE on the IBM machine, with this pxelinux.cfg:
$ cat pxelinux.cfg/default
[...]
LABEL update_bios_img
MENU LABEL ^BIOS Update (img)...
2005 Mar 22
1
asterisk-addons / OS X woes (continued)
Hi,
Using Zack's -shared replacement posted earlier, addons now compiles.
For some reason though, when trying to load it cannot find
cdr_mysql.conf even though it's in the /etc/asterisk directory as it
should be.
Anyone with any ideas? There's still references to _i386 files that
are probably incorrect as well. Thanks
Rob
console messages:
apsvr1*CLI> reload
Mar 23 11:42:44 WARNING[15003]: config.c:579 cfg_process: parse error:
No category context for line 14 of cdr_mysql.conf
Mar 23 11:42:44 WARNING[15003]: cdr_addon_mysql.c:264 my_load_module:
Unable...
2005 Mar 21
3
how to keep Asterisk up to date on many servers
Hi Everyone.
Asterisk is one of those applications that need to be built from cvs on a
regular basis to keep up with the changes. I have always used package
management tools like apt.
How does everyone manage their Asterisk servers?
Geoff