1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 09:15:38 +01:00
This commit is contained in:
Peter Boyle 2015-07-21 13:58:57 +09:00
commit 1c3ab017e8
4 changed files with 43 additions and 8489 deletions

66
.gitignore vendored
View File

@ -1,56 +1,65 @@
# Compiled Object files
# Compiled Object files #
#########################
*.slo
*.lo
*.o
*.obj
*~
errs
*#
INSTALL
# Precompiled Headers
# Editor files #
################
*~
*#
# Precompiled Headers #
#######################
*.gch
*.pch
# Compiled Dynamic libraries
# Compiled Dynamic libraries #
##############################
*.so
*.dylib
*.dll
# Fortran module files
# Fortran module files #
########################
*.mod
# Compiled Static libraries
# Compiled Static libraries #
#############################
*.lai
*.la
*.a
*.lib
# Executables
# Executables #
###############
*.exe
*.out
*.app
# http://www.gnu.org/software/automake
# http://www.gnu.org/software/automake #
########################################
Makefile.in
Makefile
config.log
config.status
.deps
# http://www.gnu.org/software/autoconf
/autom4te.cache
/aclocal.m4
/compile
/configure
/depcomp
/install-sh
/missing
/stamp-h1
/config.sub
/config.guess
/INSTALL
# http://www.gnu.org/software/autoconf #
########################################
autom4te.cache
aclocal.m4
compile
configure
depcomp
install-sh
missing
stamp-h1
config.sub
config.guess
INSTALL
# Packages #
############
@ -80,3 +89,12 @@ config.status
.Trashes
ehthumbs.db
Thumbs.db
# build directory #
###################
build/*
# IDE related files #
#####################
*.xcodeproj/*
build.sh

View File

@ -1 +0,0 @@
/opt/local/share/automake-1.15/INSTALL

8463
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -65,7 +65,7 @@ AC_CACHE_CHECK(for x86-AVX xgetbv $1 output, ax_cv_gcc_x86_avx_xgetbv_$1,
FILE *f;
/* Opcodes for xgetbv */
__asm__(".byte 0x0f, 0x01, 0xd0"
: "=a" (eax), "=d" (edx),
: "=a" (eax), "=d" (edx)
: "c" (op));
f = fopen("conftest_xgetbv", "w"); if (!f) return 1;
fprintf(f, "%x:%x\n", eax, edx);