-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use avx2 instructionset for bloommatch, use el8 to build (#16)
* avx2? * upgrade build pipeline to el8, fix avx2 handling * restore symlink name * use CFLAGS="-mavx2 -O3" and compatible types to automatically generate avx2 code * emacs auto indent * add missing return statement * inclde stdlib.h to avoid implicit declarations of functions malloc and free
- Loading branch information
Showing
4 changed files
with
27 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM centos:7 | ||
RUN yum -y install make automake autoconf libtool mariadb-devel | ||
FROM rockylinux:8 | ||
RUN dnf -y install make automake autoconf libtool mariadb-devel | ||
WORKDIR /code | ||
COPY docker-entrypoint.sh /docker-entrypoint.sh | ||
ENTRYPOINT [ "/docker-entrypoint.sh" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash | ||
cd /code || exit 1; | ||
autoreconf -fvi | ||
bash configure | ||
CFLAGS="-mavx2 -O3" bash configure | ||
make | ||
make install DESTDIR=/code/buildroot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters