mirror of https://github.com/YosysHQ/abc.git
Alternative binary name on Linux.
This commit is contained in:
parent
7bc6f3396e
commit
c1b2a64c2e
|
|
@ -1642,7 +1642,14 @@ Vec_Int_t * Exa4_ManSolve( char * pFileNameIn, char * pFileNameOut, int TimeOut,
|
||||||
if ( pFile == NULL )
|
if ( pFile == NULL )
|
||||||
{
|
{
|
||||||
printf( "Cannot find the Kissat binary \"%s\".\n", pKissat );
|
printf( "Cannot find the Kissat binary \"%s\".\n", pKissat );
|
||||||
return NULL;
|
pKissat = "./kissat";
|
||||||
|
pFile = fopen( pKissat, "rb" );
|
||||||
|
if ( pFile == NULL )
|
||||||
|
{
|
||||||
|
printf( "Cannot find the Kissat binary \"%s\".\n", pKissat );
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
fclose( pFile );
|
||||||
}
|
}
|
||||||
fclose( pFile );
|
fclose( pFile );
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue