[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Condor-users] Installation of Condor 7.2.2 on OpenSuSE 11.0



Ján Sáreník 提到:
Hello Jyh-Shyong!

On Wed, Apr 22, 2009 at 09:38:49PM +0800, Jyh-Shyong wrote:
there is no /usr/include/asm/page.h in OpenSuSE 11.0

Neither anywhere in /usr/include on Arch Linux, but strangely
enough, Red Hat has it and this is the content.

cat > /usr/include/asm/page.h <<EOF
#ifndef _I386_PAGE_H
#define _I386_PAGE_H

/* PAGE_SHIFT determines the page size */
#define PAGE_SHIFT  12
#define PAGE_SIZE (1UL << PAGE_SHIFT)
#define PAGE_MASK (~(PAGE_SIZE-1))

#define LARGE_PAGE_MASK (~(LARGE_PAGE_SIZE-1))
#define LARGE_PAGE_SIZE (1UL << PMD_SHIFT)


#endif /* _I386_PAGE_H */
EOF

  Try it and get back with results
 Best regards, Jasan
_______________________________________________
Condor-users mailing list
To unsubscribe, send a message to condor-users-request@xxxxxxxxxxx with a
subject: Unsubscribe
You can also unsubscribe by visiting
https://lists.cs.wisc.edu/mailman/listinfo/condor-users

The archives can be found at: https://lists.cs.wisc.edu/archive/condor-users/
Hi Jasan,

Thanks, now the error becomes:
...
cd tmp_dir; ar x /scratch/root/condor-7.2.2/externals/install sigsuspend.o;
ar: /scratch/root/condor-7.2.2/externals/install: Is a directory
make: *** [SIGSUSPEND.o] Error 1


In Makefile, the corresponding command is
ar x $(SIMPLE_LIBC) signal.o

however, $(SIMPLE_LIBC) is defined as a directory /scratch/root/condor-7.2.2/externals/install
so the ar failed. I guess something is wrong in the Makefile?

Jyh-Shyong Ho