qsieve

qsieve Commit Details


Date:2013-04-17 22:57:00 (11 years 8 months ago)
Author:Natalie Adams
Branch:default
Commit:978bc77a6a24
Parents: b0b32840dfbc
Message:compile again

Changes:
Mconfigure.ac (1 diff)

File differences

configure.ac
326326
327327
328328
329
329
330330
331331
332332
333333
334334
335335
336
336
337337
338338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366366
367367
368368
dnl checking for specific cpu support
AC_SUBST([mode_386],["#"])
dnl AC_SUBST([mode_386],["#"])
AC_SUBST([mode_mmx],["#"])
AC_SUBST([mode_cmov],["#"])
AC_SUBST([mode_sse],["#"])
AC_SUBST([mode_sse2],["#"])
AC_SUBST([mode_3dnow],["#"])
AC_SUBST([mode_athlon],["#"])
AC_SUBST([mode_X86_64],["#"])
dnl AC_SUBST([mode_X86_64],["#"])
AC_SUBST([ASM_DEFINES],[""])
AC_MSG_CHECKING([for specific cpu support])
AC_TRY_RUN([
int main()
{
#if #cpu (i386)
return 0;
#else
return 1;
#endif
}
], [AC_MSG_RESULT([i386 (32bit) is supported])]
dnl [ASM_DEFINES=$ASM_DEFINES" -DASM_386"]
[AC_SUBST([mode_386],[""])],
[ AC_TRY_RUN([
int main()
{
#if #cpu (x86_64)
return 0;
#else
return 1;
#endif
}
], [AC_MSG_RESULT([X86_64 (64bit) is supported])]
[ASM_DEFINES=$ASM_DEFINES" -DASM_X86_64"]
[AC_SUBST([mode_X86_64],[""])],
[AC_MSG_RESULT([no, generic support])])
])
#AC_MSG_CHECKING([for specific cpu support])
#AC_TRY_RUN([
#int main()
#{
# #if #cpu (i386)
# return 0;
# #else
# return 1;
# #endif
#}
#], [AC_MSG_RESULT([i386 (32bit) is supported])]
# # [ASM_DEFINES=$ASM_DEFINES" -DASM_386"]
# [AC_SUBST([mode_386],[""])],
#[ AC_TRY_RUN([
# int main()
# {
# #if #cpu (x86_64)
# return 0;
# #else
# return 1;
# #endif
# }
# ], [AC_MSG_RESULT([X86_64 (64bit) is supported])]
# [ASM_DEFINES=$ASM_DEFINES" -DASM_X86_64"]
# [AC_SUBST([mode_X86_64],[""])],
# [AC_MSG_RESULT([no, generic support])])
#])
if test "x$mode_386" = "x"; then

Archive Download the corresponding diff file

Branches

Tags

Page rendered in 0.63338s using 14 queries.