kopia lustrzana https://gitlab.com/sane-project/backends
2003-01-25 Jochen Eisinger <jochen.eisinger@gmx.de>
* README.linux: added a note about the Intel C++ CompilerRELEASE_1_0_11_BRANCH
rodzic
705218fb1a
commit
d4c867404c
|
@ -1,10 +1,10 @@
|
||||||
2003-01-25 Jochen Eisinger <jochen.eisinger@gmx.de>
|
2003-01-25 Jochen Eisinger <jochen.eisinger@gmx.de>
|
||||||
|
|
||||||
* sanei/sanei_pa4s2.c: added some #ifdefs to make it compile with
|
* sanei/sanei_pa4s2.c: added some #ifdefs to make it compile with
|
||||||
the Intel C++ Compiler (icc). The icc cannot expand assembler
|
the Intel C++ Compiler (icc).
|
||||||
inline macros (at least not with -ip)
|
|
||||||
* backend/mustek_pp.c: fixed some character encoding issues in
|
* backend/mustek_pp.c: fixed some character encoding issues in
|
||||||
debug messages
|
debug messages
|
||||||
|
* README.linux: added a note about the Intel C++ Compiler
|
||||||
|
|
||||||
2003-01-24 Jochen Eisinger <jochen.eisinger@gmx.de>
|
2003-01-24 Jochen Eisinger <jochen.eisinger@gmx.de>
|
||||||
|
|
||||||
|
|
14
README.linux
14
README.linux
|
@ -85,3 +85,17 @@ Excessive warnings "pointer of type `void *' used in arithmetic":
|
||||||
|
|
||||||
If you use DEC cc on Linux Alpha, you may need to set LDFLAGS="-N" to
|
If you use DEC cc on Linux Alpha, you may need to set LDFLAGS="-N" to
|
||||||
be able to build sane-backends.
|
be able to build sane-backends.
|
||||||
|
|
||||||
|
The Intel C++ Compiler for IA32 and IA64 isn't supported yet. If you want
|
||||||
|
to try nevertheless, you will experience undefined references to inb
|
||||||
|
and outb functions. To avoid those replace #include <sys/io.h> with
|
||||||
|
|
||||||
|
#if defined(__ICC) && __ICC >= 700
|
||||||
|
# define __GNUC__ 2
|
||||||
|
#endif
|
||||||
|
#include <sys/io.h>
|
||||||
|
#if defined(__ICC) && __ICC >= 700
|
||||||
|
# undef __GNUC__
|
||||||
|
#elif defined(__ICC) && defined(HAVE_ASM_IO_H)
|
||||||
|
# include <asm/io.h>
|
||||||
|
#endif
|
||||||
|
|
Ładowanie…
Reference in New Issue