Small changes to compile on Mac.

This commit is contained in:
Alan Mishchenko 2013-08-15 00:58:23 -07:00
parent 9c2b007556
commit 7013e0b672
2 changed files with 6 additions and 2 deletions

View File

@ -63,7 +63,11 @@ endif
endif
LIBS := -ldl -lrt
# LIBS := -ldl -lrt
LIBS := -ldl
ifneq ($(findstring Darwin, $(shell uname)), Darwin)
LIBS += -lrt
endif
ifneq ($(READLINE),0)
CFLAGS += -DABC_USE_READLINE

View File

@ -272,7 +272,7 @@ static inline int Abc_Lit2LitL( int * pMap, int Lit ) { return Abc_LitNo
typedef ABC_INT64_T abctime;
static inline abctime Abc_Clock()
{
#if defined(LIN) || defined(LIN64)
#if defined(LIN) || defined(LIN64) && !(__APPLE__ & __MACH__)
struct timespec ts;
if ( clock_gettime(CLOCK_THREAD_CPUTIME_ID, &ts) < 0 )
return (abctime)-1;