v4
This commit is contained in:
parent
cf6eb4c5a6
commit
aa6c55a9fe
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -60,6 +60,7 @@
|
|||||||
"set": "cpp",
|
"set": "cpp",
|
||||||
"iomanip": "cpp",
|
"iomanip": "cpp",
|
||||||
"typeindex": "cpp",
|
"typeindex": "cpp",
|
||||||
"variant": "cpp"
|
"variant": "cpp",
|
||||||
|
"csignal": "cpp"
|
||||||
}
|
}
|
||||||
}
|
}
|
197766
data/my_SEP_UIO_RX_check.a_normal_rx_data_eq.cnf_20
Normal file
197766
data/my_SEP_UIO_RX_check.a_normal_rx_data_eq.cnf_20
Normal file
File diff suppressed because it is too large
Load Diff
@ -2,7 +2,7 @@
|
|||||||
#define _light_hpp_INCLUDED
|
#define _light_hpp_INCLUDED
|
||||||
|
|
||||||
#include "utils/paras.hpp"
|
#include "utils/paras.hpp"
|
||||||
#include "preprocess.hpp"
|
#include "preprocess/preprocess.hpp"
|
||||||
#include <atomic>
|
#include <atomic>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
|
7
makefile
7
makefile
@ -4,10 +4,13 @@ OBJS = $(addsuffix .o, $(basename $(SRCS)))
|
|||||||
|
|
||||||
EXEC = light
|
EXEC = light
|
||||||
|
|
||||||
LIBS = -lkissat -Lsolvers/kissat-inc/build/ \
|
LIBS = -lkissat -Lsolvers/kissat-inc/build \
|
||||||
|
-lm4ri -Lpreprocess/m4ri-20140914/.libs \
|
||||||
-lpthread -pthread -lz -lm -lboost_thread -lboost_date_time -lboost_system -static
|
-lpthread -pthread -lz -lm -lboost_thread -lboost_date_time -lboost_system -static
|
||||||
|
|
||||||
CXXFLAGS = -Isolvers/kissat-inc -std=c++11 -O3
|
CXXFLAGS = -Isolvers/kissat-inc \
|
||||||
|
-Ipreprocess/m4ri-20140914 \
|
||||||
|
-std=c++11 -O3
|
||||||
|
|
||||||
$(EXEC): $(OBJS)
|
$(EXEC): $(OBJS)
|
||||||
$(CXX) -o $@ $^ $(CXXFLAGS) $(LIBS)
|
$(CXX) -o $@ $^ $(CXXFLAGS) $(LIBS)
|
||||||
|
553
preprocess.cpp
553
preprocess.cpp
@ -1,553 +0,0 @@
|
|||||||
#include "preprocess.hpp"
|
|
||||||
|
|
||||||
preprocess::preprocess():
|
|
||||||
vars (0),
|
|
||||||
clauses (0),
|
|
||||||
maxlen (0)
|
|
||||||
{}
|
|
||||||
|
|
||||||
|
|
||||||
inline int pnsign(int x) {
|
|
||||||
return (x > 0 ? 1 : -1);
|
|
||||||
}
|
|
||||||
inline int sign(int x) {
|
|
||||||
return x & 1 ? -1 : 1;
|
|
||||||
}
|
|
||||||
inline int tolit(int x) {
|
|
||||||
return x > 0 ? ((x - 1) << 1) : ((-x - 1) << 1 | 1);
|
|
||||||
}
|
|
||||||
inline int negative(int x) {
|
|
||||||
return x ^ 1;
|
|
||||||
}
|
|
||||||
inline int toiidx(int x) {
|
|
||||||
return (x >> 1) + 1;
|
|
||||||
}
|
|
||||||
inline int toeidx(int x) {
|
|
||||||
return (x & 1 ? -toiidx(x) : toiidx(x));
|
|
||||||
}
|
|
||||||
inline ll preprocess::mapv(int a, int b) {
|
|
||||||
return 1ll * a * nlit + (ll)b;
|
|
||||||
}
|
|
||||||
int preprocess::find(int x) {
|
|
||||||
if (f[x] == x) return x;
|
|
||||||
int fa = f[x];
|
|
||||||
f[x] = find(fa);
|
|
||||||
val[x] = val[fa] * val[x];
|
|
||||||
return f[x];
|
|
||||||
}
|
|
||||||
|
|
||||||
void preprocess::preprocess_init() {
|
|
||||||
f = new int[vars + 10];
|
|
||||||
val = new int[vars + 10];
|
|
||||||
color = new int[vars + 10];
|
|
||||||
varval = new int[vars + 10];
|
|
||||||
q = new int[vars + 10];
|
|
||||||
clean = new int[vars + 10];
|
|
||||||
seen = new int[(vars << 1) + 10];
|
|
||||||
clause_delete.growTo(clauses+1, 0);
|
|
||||||
nxtc.growTo(clauses+1, 0);
|
|
||||||
occurp = new vec<int>[vars + 1];
|
|
||||||
occurn = new vec<int>[vars + 1];
|
|
||||||
for (int i = 1; i <= clauses; i++) {
|
|
||||||
int l = clause[i].size();
|
|
||||||
if (l > maxlen) maxlen = l;
|
|
||||||
}
|
|
||||||
resseen = new int[(vars << 1) + 10];
|
|
||||||
a = new int[maxlen + 1];
|
|
||||||
|
|
||||||
mapval = new int[vars + 10];
|
|
||||||
mapto = new int[vars + 10];
|
|
||||||
for (int i = 1; i <= vars; i++) mapto[i] = i, mapval[i] = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
void preprocess::release() {
|
|
||||||
delete []f;
|
|
||||||
delete []val;
|
|
||||||
delete []color;
|
|
||||||
delete []varval;
|
|
||||||
delete []q;
|
|
||||||
delete []clean;
|
|
||||||
delete []seen;
|
|
||||||
clause_delete.clear(true);
|
|
||||||
nxtc.clear(true);
|
|
||||||
delete []resseen;
|
|
||||||
delete []a;
|
|
||||||
delete []mapfrom;
|
|
||||||
for (int i = 0; i <= vars; i++)
|
|
||||||
occurp[i].clear(true), occurn[i].clear(true);
|
|
||||||
delete []occurp;
|
|
||||||
delete []occurn;
|
|
||||||
delete C;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool preprocess::res_is_empty(int x) {
|
|
||||||
int op = occurp[x].size(), on = occurn[x].size();
|
|
||||||
for (int i = 0; i < op; i++) {
|
|
||||||
int o1 = occurp[x][i], l1 = clause[o1].size();
|
|
||||||
if (clause_delete[o1]) continue;
|
|
||||||
for (int j = 0; j < l1; j++)
|
|
||||||
if (abs(clause[o1][j]) != x) resseen[abs(clause[o1][j])] = pnsign(clause[o1][j]);
|
|
||||||
for (int j = 0; j < on; j++) {
|
|
||||||
int o2 = occurn[x][j], l2 = clause[o2].size(), flag = 0;
|
|
||||||
if (clause_delete[o2]) continue;
|
|
||||||
for (int k = 0; k < l2; k++)
|
|
||||||
if (abs(clause[o2][k]) != x && resseen[abs(clause[o2][k])] == -pnsign(clause[o2][k])) {
|
|
||||||
flag = 1; break;
|
|
||||||
}
|
|
||||||
if (!flag) {
|
|
||||||
for (int j = 0; j < l1; j++)
|
|
||||||
resseen[abs(clause[o1][j])] = 0;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for (int j = 0; j < l1; j++)
|
|
||||||
resseen[abs(clause[o1][j])] = 0;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool preprocess::preprocess_resolution() {
|
|
||||||
for (int i = 1; i <= vars; i++) {
|
|
||||||
occurn[i].clear();
|
|
||||||
occurp[i].clear();
|
|
||||||
resseen[i - 1] = resseen[i + vars - 1] = clean[i] = seen[i] = 0;
|
|
||||||
}
|
|
||||||
for (int i = 1; i <= clauses; i++) {
|
|
||||||
int l = clause[i].size();
|
|
||||||
clause_delete[i] = 0;
|
|
||||||
for (int j = 0; j < l; j++) {
|
|
||||||
if (clause[i][j] > 0) occurp[abs(clause[i][j])].push(i);
|
|
||||||
else occurn[abs(clause[i][j])].push(i);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for (int i = 1; i <= vars; i++)
|
|
||||||
if (occurn[i].size() == 0 && occurp[i].size() == 0) clean[i] = 1;
|
|
||||||
|
|
||||||
int l = 1, r = 0;
|
|
||||||
for (int i = 1; i <= vars; i++) {
|
|
||||||
int op = occurp[i].size(), on = occurn[i].size();
|
|
||||||
if (op * on > op + on || clean[i]) continue;
|
|
||||||
if (res_is_empty(i)) {
|
|
||||||
q[++r] = i, clean[i] = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int now_turn = 0, seen_flag = 0;
|
|
||||||
vec<int> vars;
|
|
||||||
while (l <= r) {
|
|
||||||
++now_turn;
|
|
||||||
for (int j = l; j <= r; j++) {
|
|
||||||
int i = q[j];
|
|
||||||
int op = occurp[i].size(), on = occurn[i].size();
|
|
||||||
for (int j = 0; j < op; j++) clause_delete[occurp[i][j]] = 1;
|
|
||||||
for (int j = 0; j < on; j++) clause_delete[occurn[i][j]] = 1;
|
|
||||||
}
|
|
||||||
int ll = l; l = r + 1;
|
|
||||||
|
|
||||||
vars.clear();
|
|
||||||
++seen_flag;
|
|
||||||
for (int u = ll; u <= r; u++) {
|
|
||||||
int i = q[u];
|
|
||||||
int op = occurp[i].size(), on = occurn[i].size();
|
|
||||||
for (int j = 0; j < op; j++) {
|
|
||||||
int o = occurp[i][j], l = clause[o].size();
|
|
||||||
for (int k = 0; k < l; k++) {
|
|
||||||
int v = abs(clause[o][k]);
|
|
||||||
if (!clean[v] && seen[v] != seen_flag)
|
|
||||||
vars.push(v), seen[v] = seen_flag;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for (int j = 0; j < on; j++) {
|
|
||||||
int o = occurn[i][j], l = clause[o].size();
|
|
||||||
for (int k = 0; k < l; k++) {
|
|
||||||
int v = abs(clause[o][k]);
|
|
||||||
if (!clean[v] && seen[v] != seen_flag)
|
|
||||||
vars.push(v), seen[v] = seen_flag;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for (int u = 0; u < vars.size(); u++) {
|
|
||||||
int i = vars[u];
|
|
||||||
int op = 0, on = 0;
|
|
||||||
for (int j = 0; j < occurp[i].size(); j++) op += 1 - clause_delete[occurp[i][j]];
|
|
||||||
for (int j = 0; j < occurn[i].size(); j++) on += 1 - clause_delete[occurn[i][j]];
|
|
||||||
if (op * on > op + on) continue;
|
|
||||||
if (res_is_empty(i)) {
|
|
||||||
q[++r] = i, clean[i] = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
vars.clear(true);
|
|
||||||
if (!r) return true;
|
|
||||||
res_clauses = 0;
|
|
||||||
res_clause.push();
|
|
||||||
for (int i = 1; i <= clauses; i++) {
|
|
||||||
if (!clause_delete[i]) continue;
|
|
||||||
++res_clauses;
|
|
||||||
res_clause.push();
|
|
||||||
int l = clause[i].size();
|
|
||||||
for (int j = 0; j < l; j++) {
|
|
||||||
res_clause[res_clauses].push(pnsign(clause[i][j]) * mapfrom[abs(clause[i][j])]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
resolutions = r;
|
|
||||||
resolution.push();
|
|
||||||
for (int i = 1; i <= r; i++) {
|
|
||||||
int v = mapfrom[q[i]];
|
|
||||||
resolution.push(v);
|
|
||||||
mapto[v] = 0, mapval[v] = -10;
|
|
||||||
}
|
|
||||||
update_var_clause_label();
|
|
||||||
for (int i = 1; i <= orivars; i++) {
|
|
||||||
if (mapto[i]) {
|
|
||||||
mapto[i] = color[mapto[i]];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
int count = 0;
|
|
||||||
void preprocess::update_var_clause_label() {
|
|
||||||
++count;
|
|
||||||
int remain_var = 0;
|
|
||||||
for (int i = 1; i <= vars; i++) color[i] = 0;
|
|
||||||
for (int i = 1; i <= clauses; i++) {
|
|
||||||
if (clause_delete[i]) {continue;}
|
|
||||||
int l = clause[i].size();
|
|
||||||
for (int j = 0; j < l; j++) {
|
|
||||||
if (color[abs(clause[i][j])] == 0) color[abs(clause[i][j])] = ++remain_var;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int id = 0;
|
|
||||||
for (int i = 1; i <= clauses; i++) {
|
|
||||||
if (clause_delete[i]) {clause[i].setsize(0); continue;}
|
|
||||||
++id;
|
|
||||||
int l = clause[i].size();
|
|
||||||
if (i == id) {
|
|
||||||
for (int j = 0; j < l; j++)
|
|
||||||
clause[id][j] = color[abs(clause[i][j])] * pnsign(clause[i][j]);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
clause[id].setsize(0);
|
|
||||||
for (int j = 0; j < l; j++)
|
|
||||||
clause[id].push(color[abs(clause[i][j])] * pnsign(clause[i][j]));
|
|
||||||
}
|
|
||||||
printf("c After preprocess: vars: %d -> %d , clauses: %d -> %d ,\n", vars, remain_var, clauses, id);
|
|
||||||
for (int i = id + 1; i <= clauses; i++)
|
|
||||||
clause[i].clear(true);
|
|
||||||
for (int i = remain_var + 1; i <= vars; i++)
|
|
||||||
occurp[i].clear(true), occurn[i].clear(true);
|
|
||||||
clause.setsize(id + 1);
|
|
||||||
vars = remain_var, clauses = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool preprocess::preprocess_binary() {
|
|
||||||
C = new HashMap();
|
|
||||||
for (int i = 1; i <= clauses; i++) {
|
|
||||||
int l = clause[i].size();
|
|
||||||
for (int j = 0; j < l; j++) {
|
|
||||||
clause[i][j] = tolit(clause[i][j]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
nlit = (vars << 1) + 2;
|
|
||||||
for (int i = 1; i <= vars; i++) f[i] = i, val[i] = 1, color[i] = 0;
|
|
||||||
for (int i = 1; i <= clauses; i++) clause_delete[i] = 0;
|
|
||||||
// int len = 0;
|
|
||||||
// for (int i = 1; i <= clauses; i++) {
|
|
||||||
// if (clause[i].size() != 2) continue;
|
|
||||||
// nxtc[++len] = i;
|
|
||||||
// ll id1 = mapv(clause[i][0], clause[i][1]),
|
|
||||||
// id2 = mapv(clause[i][1], clause[i][0]);
|
|
||||||
// C->insert(id1, i);
|
|
||||||
// C->insert(id2, i);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// for (int k = 1; k <= len; k++) {
|
|
||||||
// int i = nxtc[k];
|
|
||||||
// if (clause[i].size() != 2 || clause_delete[i]) continue;
|
|
||||||
// int r = C->get(mapv(negative(clause[i][0]), negative(clause[i][1])), 0);
|
|
||||||
// if (r) {
|
|
||||||
// clause_delete[r] = clause_delete[i] = 1;
|
|
||||||
// int u = toiidx(clause[i][0]), v = toiidx(clause[i][1]);
|
|
||||||
// int fa = find(u), fb = find(v);
|
|
||||||
// int sig = sign(clause[i][0]) * sign(clause[i][1]) * (-1);
|
|
||||||
// //sig == 1 : a = b -1 : a = -b
|
|
||||||
// if (fa != fb) {
|
|
||||||
// if (fa < fb) {
|
|
||||||
// f[fa] = fb;
|
|
||||||
// val[fa] = sig / (val[u] * val[v]);
|
|
||||||
// }
|
|
||||||
// else if (fa > fb) {
|
|
||||||
// f[fb] = fa;
|
|
||||||
// val[fb] = sig / (val[u] * val[v]);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// else if (sig != val[u] * val[v])
|
|
||||||
// return false;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// for (int i = 1; i <= vars; i++) find(i);
|
|
||||||
|
|
||||||
for (int i = 1; i <= clauses; i++) {
|
|
||||||
if (clause_delete[i]) continue;
|
|
||||||
int l = clause[i].size(), oril = l;
|
|
||||||
for (int j = 0; j < l; j++) {
|
|
||||||
int u = toiidx(clause[i][j]);
|
|
||||||
a[j] = tolit(sign(clause[i][j]) * val[u] * f[u]);
|
|
||||||
}
|
|
||||||
int t = 0;
|
|
||||||
for (int j = 0; j < l; j++) {
|
|
||||||
if (resseen[a[j]] == i) continue;
|
|
||||||
resseen[a[j]] = i, a[t++] = a[j];
|
|
||||||
}
|
|
||||||
if (t != l) {l = t;}
|
|
||||||
for (int j = 0; j < l; j++)
|
|
||||||
if (resseen[negative(a[j])] == i) {
|
|
||||||
clause_delete[i] = 1;
|
|
||||||
}
|
|
||||||
for (int j = 0; j < l; j++) resseen[a[j]] = 0;
|
|
||||||
clause[i].clear();
|
|
||||||
for (int j = 0; j < l; j++)
|
|
||||||
clause[i].push(a[j]);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
for (int i = 1; i <= clauses; i++) {
|
|
||||||
if (clause_delete[i]) continue;
|
|
||||||
int l = clause[i].size();
|
|
||||||
for (int j = 0; j < l; j++) {
|
|
||||||
clause[i][j] = toeidx(clause[i][j]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
update_var_clause_label();
|
|
||||||
// for (int i = 1; i <= orivars; i++) {
|
|
||||||
// if (mapval[i]) continue;
|
|
||||||
// int v = mapto[i], fa = find(v);
|
|
||||||
// if (color[fa]) mapto[i] = color[fa] * val[v];
|
|
||||||
// else {puts("why happened"); mapval[i] = val[v], mapto[i] = 0;}
|
|
||||||
// }
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool preprocess::preprocess_easy_clause() {
|
|
||||||
for (int i = 1; i <= vars; i++) {
|
|
||||||
varval[i] = 0;
|
|
||||||
occurp[i].clear();
|
|
||||||
occurn[i].clear();
|
|
||||||
resseen[(i - 1) << 1] = resseen[(i - 1) << 1 | 1] = 0;
|
|
||||||
}
|
|
||||||
for (int i = 1; i <= clauses; i++) clause_delete[i] = 0;
|
|
||||||
int head = 1, tail = 0;
|
|
||||||
for (int i = 1; i <= clauses; i++) {
|
|
||||||
int l = clause[i].size(), t = 0;
|
|
||||||
for (int j = 0; j < l; j++) {
|
|
||||||
int lit = tolit(clause[i][j]);
|
|
||||||
if (resseen[lit] == i) continue;
|
|
||||||
if (resseen[negative(lit)] == i) {clause_delete[i] = 1; break;}
|
|
||||||
clause[i][t++] = clause[i][j];
|
|
||||||
resseen[lit] = i;
|
|
||||||
}
|
|
||||||
if (clause_delete[i]) continue;
|
|
||||||
clause[i].setsize(t);
|
|
||||||
for (int j = 0; j < t; j++)
|
|
||||||
if (clause[i][j] > 0) occurp[clause[i][j]].push(i);
|
|
||||||
else occurn[-clause[i][j]].push(i);
|
|
||||||
if (t == 0) return false;
|
|
||||||
if (t == 1) {
|
|
||||||
int lit = clause[i][0];
|
|
||||||
clause_delete[i] = 1;
|
|
||||||
if (varval[abs(lit)]) {
|
|
||||||
if (varval[abs(lit)] == pnsign(lit)) continue;
|
|
||||||
else return false;
|
|
||||||
}
|
|
||||||
varval[abs(lit)] = pnsign(lit);
|
|
||||||
q[++tail] = abs(lit);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for (int i = 1; i <= vars + vars; i++) resseen[i] = 0;
|
|
||||||
while (head <= tail) {
|
|
||||||
int x = q[head++];
|
|
||||||
if (varval[x] == 1) {
|
|
||||||
for (int i = 0; i < occurp[x].size(); i++)
|
|
||||||
clause_delete[occurp[x][i]] = 1;
|
|
||||||
for (int i = 0; i < occurn[x].size(); i++) {
|
|
||||||
int o = occurn[x][i], t = 0;
|
|
||||||
if (clause_delete[o]) continue;
|
|
||||||
for (int j = 0; j < clause[o].size(); j++) {
|
|
||||||
if (varval[abs(clause[o][j])] == pnsign(clause[o][j])) {
|
|
||||||
clause_delete[o] = 1; break;
|
|
||||||
}
|
|
||||||
if (varval[abs(clause[o][j])] == -pnsign(clause[o][j])) continue;
|
|
||||||
clause[o][t++] = clause[o][j];
|
|
||||||
}
|
|
||||||
if (clause_delete[o]) continue;
|
|
||||||
clause[o].setsize(t);
|
|
||||||
if (t == 0) return false;
|
|
||||||
if (t == 1) {
|
|
||||||
int lit = clause[o][0];
|
|
||||||
clause_delete[o] = 1;
|
|
||||||
if (varval[abs(lit)]) {
|
|
||||||
if (varval[abs(lit)] == pnsign(lit)) continue;
|
|
||||||
else return false;
|
|
||||||
}
|
|
||||||
varval[abs(lit)] = pnsign(lit);
|
|
||||||
q[++tail] = abs(lit);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
for (int i = 0; i < occurn[x].size(); i++)
|
|
||||||
clause_delete[occurn[x][i]] = 1;
|
|
||||||
for (int i = 0; i < occurp[x].size(); i++) {
|
|
||||||
int o = occurp[x][i], t = 0;
|
|
||||||
if (clause_delete[o]) continue;
|
|
||||||
for (int j = 0; j < clause[o].size(); j++) {
|
|
||||||
if (varval[abs(clause[o][j])] == pnsign(clause[o][j])) {
|
|
||||||
clause_delete[o] = 1; break;
|
|
||||||
}
|
|
||||||
if (varval[abs(clause[o][j])] == -pnsign(clause[o][j])) continue;
|
|
||||||
clause[o][t++] = clause[o][j];
|
|
||||||
}
|
|
||||||
if (clause_delete[o]) continue;
|
|
||||||
clause[o].setsize(t);
|
|
||||||
if (t == 0) return false;
|
|
||||||
if (t == 1) {
|
|
||||||
int lit = clause[o][0];
|
|
||||||
clause_delete[o] = 1;
|
|
||||||
if (varval[abs(lit)]) {
|
|
||||||
if (varval[abs(lit)] == pnsign(lit)) continue;
|
|
||||||
else return false;
|
|
||||||
}
|
|
||||||
varval[abs(lit)] = pnsign(lit);
|
|
||||||
q[++tail] = abs(lit);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
update_var_clause_label();
|
|
||||||
for (int i = 1; i <= tail; i++) {
|
|
||||||
int v = q[i];
|
|
||||||
mapval[v] = varval[v];
|
|
||||||
}
|
|
||||||
mapfrom = new int[vars + 1];
|
|
||||||
for (int i = 1; i <= vars; i++) mapfrom[i] = 0;
|
|
||||||
for (int i = 1; i <= orivars; i++) {
|
|
||||||
if (color[i])
|
|
||||||
mapto[i] = color[i], mapfrom[color[i]] = i;
|
|
||||||
else if (!mapval[i]) // not in unit queue, then it is no use var
|
|
||||||
mapto[i] = 0, mapval[i] = 1;
|
|
||||||
else
|
|
||||||
mapto[i] = 0;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
void preprocess::get_complete_model() {
|
|
||||||
int r = 0;
|
|
||||||
for (int i = 1; i <= orivars; i++)
|
|
||||||
if (!mapto[i]) {
|
|
||||||
if (!mapval[i]);
|
|
||||||
else if (abs(mapval[i]) != 1) mapval[i] = 0, ++r;
|
|
||||||
}
|
|
||||||
if (r) {
|
|
||||||
occurp = new vec<int>[orivars + 1];
|
|
||||||
occurn = new vec<int>[orivars + 1];
|
|
||||||
for (int i = 1; i <= orivars; i++) {
|
|
||||||
occurp[i].clear(), occurn[i].clear();
|
|
||||||
}
|
|
||||||
vec<int> clause_state;
|
|
||||||
clause_state.growTo(res_clauses + 1, 0);
|
|
||||||
for (int i = 1; i <= res_clauses; i++) {
|
|
||||||
int satisify = 0;
|
|
||||||
for (int j = 0; j < res_clause[i].size(); j++) {
|
|
||||||
int v = res_clause[i][j];
|
|
||||||
if (v > 0) occurp[v].push(i);
|
|
||||||
else occurn[-v].push(i);
|
|
||||||
if (pnsign(v) * mapval[abs(v)] == 1) satisify = 1;
|
|
||||||
if (!mapval[abs(v)]) ++clause_state[i];
|
|
||||||
}
|
|
||||||
if (satisify) clause_state[i] = -1;
|
|
||||||
}
|
|
||||||
for (int ii = resolutions; ii >= 1; ii--) {
|
|
||||||
int v = resolution[ii];
|
|
||||||
//attempt 1
|
|
||||||
int assign = 1;
|
|
||||||
for (int i = 0; i < occurn[v].size(); i++) {
|
|
||||||
int o = occurn[v][i];
|
|
||||||
if (clause_state[o] != -1 && clause_state[o] <= 1) {assign = 0; break;}
|
|
||||||
}
|
|
||||||
if (assign == 1) {
|
|
||||||
mapval[v] = 1;
|
|
||||||
for (int i = 0; i < occurn[v].size(); i++) {
|
|
||||||
int o = occurn[v][i];
|
|
||||||
if (clause_state[o] != -1) clause_state[o]--;
|
|
||||||
}
|
|
||||||
for (int i = 0; i < occurp[v].size(); i++)
|
|
||||||
clause_state[occurp[v][i]] = -1;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
//attempt -1
|
|
||||||
assign = -1;
|
|
||||||
for (int i = 0; i < occurp[v].size(); i++) {
|
|
||||||
int o = occurp[v][i];
|
|
||||||
if (clause_state[o] != -1 && clause_state[o] <= 1) {assign = 0; break;}
|
|
||||||
}
|
|
||||||
if (assign == -1) {
|
|
||||||
mapval[v] = -1;
|
|
||||||
for (int i = 0; i < occurp[v].size(); i++) {
|
|
||||||
int o = occurp[v][i];
|
|
||||||
if (clause_state[o] != -1) clause_state[o]--;
|
|
||||||
}
|
|
||||||
for (int i = 0; i < occurn[v].size(); i++)
|
|
||||||
clause_state[occurn[v][i]] = -1;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
clause_state.clear(true);
|
|
||||||
for (int i = 1; i <= orivars; i++) {
|
|
||||||
occurp[i].clear(true), occurn[i].clear(true);
|
|
||||||
}
|
|
||||||
delete []occurp;
|
|
||||||
delete []occurn;
|
|
||||||
res_clause.clear(true);
|
|
||||||
resolution.clear(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int preprocess::do_preprocess(char* filename) {
|
|
||||||
readfile(filename);
|
|
||||||
preprocess_init();
|
|
||||||
int res = preprocess_easy_clause();
|
|
||||||
if (!res) {
|
|
||||||
release();
|
|
||||||
delete []mapto;
|
|
||||||
delete []mapval;
|
|
||||||
clause.clear(true);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
res = preprocess_resolution();
|
|
||||||
if (!res) {
|
|
||||||
release();
|
|
||||||
delete []mapto;
|
|
||||||
delete []mapval;
|
|
||||||
clause.clear(true);
|
|
||||||
res_clause.clear(true);
|
|
||||||
resolution.clear(true);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
res = preprocess_binary();
|
|
||||||
if (!res) {
|
|
||||||
release();
|
|
||||||
delete []mapto;
|
|
||||||
delete []mapval;
|
|
||||||
clause.clear(true);
|
|
||||||
res_clause.clear(true);
|
|
||||||
resolution.clear(true);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
release();
|
|
||||||
return 1;
|
|
||||||
}
|
|
@ -1,35 +0,0 @@
|
|||||||
#ifndef _preprocess_hpp_INCLUDED
|
|
||||||
#define _preprocess_hpp_INCLUDED
|
|
||||||
|
|
||||||
#include "utils/hashmap.hpp"
|
|
||||||
#include "utils/vec.hpp"
|
|
||||||
typedef long long ll;
|
|
||||||
|
|
||||||
struct preprocess {
|
|
||||||
public:
|
|
||||||
preprocess();
|
|
||||||
int vars;
|
|
||||||
int clauses;
|
|
||||||
vec<vec<int>> clause, res_clause;
|
|
||||||
void readfile(const char *file);
|
|
||||||
void release();
|
|
||||||
|
|
||||||
int maxlen, orivars, oriclauses, res_clauses, resolutions;
|
|
||||||
int *f, nlit, *a, *val, *color, *varval, *q, *seen, *resseen, *clean, *mapto, *mapfrom, *mapval;
|
|
||||||
HashMap* C;
|
|
||||||
vec<int> *occurp, *occurn, clause_delete, nxtc, resolution;
|
|
||||||
|
|
||||||
ll mapv(int a, int b);
|
|
||||||
int find(int x);
|
|
||||||
bool res_is_empty(int var);
|
|
||||||
void update_var_clause_label();
|
|
||||||
void preprocess_init();
|
|
||||||
bool preprocess_resolution();
|
|
||||||
bool preprocess_binary();
|
|
||||||
bool preprocess_easy_clause();
|
|
||||||
void get_complete_model();
|
|
||||||
int do_preprocess(char* filename);
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
|
218
preprocess/binary.cpp
Normal file
218
preprocess/binary.cpp
Normal file
@ -0,0 +1,218 @@
|
|||||||
|
#include "preprocess.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
int preprocess::find(int x) {
|
||||||
|
if (f[x] == x) return x;
|
||||||
|
int fa = f[x];
|
||||||
|
f[x] = find(fa);
|
||||||
|
val[x] = val[fa] * val[x];
|
||||||
|
return f[x];
|
||||||
|
}
|
||||||
|
|
||||||
|
bool preprocess::preprocess_binary() {
|
||||||
|
HashMap *C = new HashMap();
|
||||||
|
for (int i = 1; i <= clauses; i++) {
|
||||||
|
int l = clause[i].size();
|
||||||
|
for (int j = 0; j < l; j++) {
|
||||||
|
clause[i][j] = tolit(clause[i][j]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
nlit = (vars << 1) + 2;
|
||||||
|
for (int i = 1; i <= vars; i++) f[i] = i, val[i] = 1, varval[i] = color[i] = 0;
|
||||||
|
for (int i = 1; i <= clauses; i++) clause_delete[i] = 0;
|
||||||
|
int len = 0;
|
||||||
|
for (int i = 1; i <= clauses; i++) {
|
||||||
|
if (clause[i].size() != 2) continue;
|
||||||
|
nxtc[++len] = i;
|
||||||
|
ll id1 = mapv(clause[i][0], clause[i][1]),
|
||||||
|
id2 = mapv(clause[i][1], clause[i][0]);
|
||||||
|
C->insert(id1, i);
|
||||||
|
C->insert(id2, i);
|
||||||
|
}
|
||||||
|
int simplify = 1, turn = 0;
|
||||||
|
while (simplify) {
|
||||||
|
simplify = 0;
|
||||||
|
++turn;
|
||||||
|
int s1 = 0, s2 = 0, s3 = 0;
|
||||||
|
for (int k = 1; k <= len; k++) {
|
||||||
|
int i = nxtc[k];
|
||||||
|
if (clause[i].size() != 2 || clause_delete[i]) continue;
|
||||||
|
ll id1 = mapv(negative(clause[i][0]), negative(clause[i][1])),
|
||||||
|
id2 = mapv(clause[i][0], negative(clause[i][1])),
|
||||||
|
id3 = mapv(negative(clause[i][0]), clause[i][1]);
|
||||||
|
int r = C->get(id1, 0);
|
||||||
|
if (r) {
|
||||||
|
simplify = 1;
|
||||||
|
++s1;
|
||||||
|
clause_delete[r] = clause_delete[i] = 1;
|
||||||
|
int u = toiidx(clause[i][0]), v = toiidx(clause[i][1]);
|
||||||
|
int fa = find(u), fb = find(v);
|
||||||
|
int sig = sign(clause[i][0]) * sign(clause[i][1]) * (-1);
|
||||||
|
//sig == 1 : a = b -1 : a = -b
|
||||||
|
if (fa != fb) {
|
||||||
|
if (fa < fb) {
|
||||||
|
f[fa] = fb;
|
||||||
|
val[fa] = sig / (val[u] * val[v]);
|
||||||
|
if (varval[fa])
|
||||||
|
varval[fb] = val[fa] * varval[fa];
|
||||||
|
}
|
||||||
|
else if (fa > fb) {
|
||||||
|
f[fb] = fa;
|
||||||
|
val[fb] = sig / (val[u] * val[v]);
|
||||||
|
if (varval[fb])
|
||||||
|
varval[fa] = val[fb] * varval[fb];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if (sig != val[u] * val[v])
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
int d1 = C->get(id2, 0);
|
||||||
|
if (d1) {
|
||||||
|
int v = toiidx(clause[i][0]);
|
||||||
|
if (varval[v] && varval[v] != sign(clause[i][0])) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
clause_delete[d1] = clause_delete[i] = 1;
|
||||||
|
simplify = 1;
|
||||||
|
varval[v] = sign(clause[i][0]);
|
||||||
|
}
|
||||||
|
int d2 = C->get(id3, 0);
|
||||||
|
if (d2) {
|
||||||
|
int v = toiidx(clause[i][1]);
|
||||||
|
if (varval[v] && varval[v] != sign(clause[i][1])) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
clause_delete[d2] = clause_delete[i] = 1;
|
||||||
|
simplify = 1;
|
||||||
|
varval[v] = sign(clause[i][1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 1; i <= vars; i++) {
|
||||||
|
int x = find(i);
|
||||||
|
if (varval[i] && x != i) {
|
||||||
|
if (varval[x]) {
|
||||||
|
if (varval[x] != varval[i] * val[i])
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
else varval[x] = varval[i] * val[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (int i = 1; i <= vars; i++)
|
||||||
|
if (varval[f[i]]) {
|
||||||
|
if (varval[i]) {
|
||||||
|
if (varval[f[i]] != varval[i] * val[i])
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
else varval[i] = varval[f[i]] * val[i];
|
||||||
|
}
|
||||||
|
len = 0;
|
||||||
|
|
||||||
|
for (int i = 1; i <= clauses; i++) {
|
||||||
|
if (clause_delete[i]) continue;
|
||||||
|
int l = clause[i].size(), oril = l;
|
||||||
|
for (int j = 0; j < l; j++) {
|
||||||
|
int v = toiidx(clause[i][j]), fa = f[v];
|
||||||
|
a[j] = tolit(sign(clause[i][j]) * val[v] * fa);
|
||||||
|
}
|
||||||
|
int t = 0;
|
||||||
|
for (int j = 0; j < l; j++) {
|
||||||
|
int x = varval[toiidx(a[j])];
|
||||||
|
if (x) {
|
||||||
|
int k = x * sign(a[j]);
|
||||||
|
if (k == 1) {
|
||||||
|
if (!clause_delete[i]) simplify = 1;
|
||||||
|
clause_delete[i] = 1, a[t++] = a[j];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else a[t++] = a[j];
|
||||||
|
}
|
||||||
|
if (t == 0) return false;
|
||||||
|
if (t != l) simplify = 1, l = t;
|
||||||
|
t = 0;
|
||||||
|
for (int j = 0; j < l; j++) {
|
||||||
|
if (resseen[a[j]] == i) continue;
|
||||||
|
resseen[a[j]] = i, a[t++] = a[j];
|
||||||
|
}
|
||||||
|
if (t != l) simplify = 1, l = t;
|
||||||
|
for (int j = 0; j < l; j++)
|
||||||
|
if (resseen[negative(a[j])] == i && !clause_delete[i]) {
|
||||||
|
clause_delete[i] = 1, simplify = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int j = 0; j < l; j++) resseen[a[j]] = 0;
|
||||||
|
|
||||||
|
if (l == 1) {
|
||||||
|
if (sign(a[0]) * varval[toiidx(a[0])] == -1) return false;
|
||||||
|
varval[toiidx(a[0])] = sign(a[0]);
|
||||||
|
simplify = 1;
|
||||||
|
}
|
||||||
|
if (!clause_delete[i] && l == 2 && oril != 2) {
|
||||||
|
nxtc[++len] = i;
|
||||||
|
ll id1 = mapv(a[0], a[1]),
|
||||||
|
id2 = mapv(a[1], a[0]);
|
||||||
|
C->insert(id1, i);
|
||||||
|
C->insert(id2, i);
|
||||||
|
}
|
||||||
|
else if (!clause_delete[i] && l == 2 && oril == 2) {
|
||||||
|
if (a[0] == clause[i][0] && a[1] == clause[i][1]) ;
|
||||||
|
else if (a[1] == clause[i][0] && a[0] == clause[i][1]) ;
|
||||||
|
else {
|
||||||
|
nxtc[++len] = i;
|
||||||
|
ll id1 = mapv(a[0], a[1]),
|
||||||
|
id2 = mapv(a[1], a[0]);
|
||||||
|
C->insert(id1, i);
|
||||||
|
C->insert(id2, i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
clause[i].clear();
|
||||||
|
for (int j = 0; j < l; j++)
|
||||||
|
clause[i].push(a[j]);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 1; i <= vars; i++) {
|
||||||
|
int x = find(i);
|
||||||
|
if (varval[i] && x != i) {
|
||||||
|
if (varval[x]) {
|
||||||
|
if (varval[x] != varval[i] * val[i])
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
else varval[x] = varval[i] * val[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (int i = 1; i <= vars; i++)
|
||||||
|
if (varval[f[i]]) {
|
||||||
|
if (varval[i]) {
|
||||||
|
if (varval[f[i]] != varval[i] * val[i])
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
else varval[i] = varval[f[i]] * val[i];
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// printf("c turns: %d\n", turn);
|
||||||
|
|
||||||
|
for (int i = 1; i <= clauses; i++) {
|
||||||
|
if (clause_delete[i]) continue;
|
||||||
|
int l = clause[i].size();
|
||||||
|
for (int j = 0; j < l; j++) {
|
||||||
|
clause[i][j] = toeidx(clause[i][j]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
update_var_clause_label();
|
||||||
|
for (int i = 1; i <= orivars; i++) {
|
||||||
|
if (mapval[i]) continue;
|
||||||
|
int v = mapto[i], fa = find(v);
|
||||||
|
if (varval[v] || varval[fa]) {
|
||||||
|
mapval[i] = varval[v];
|
||||||
|
mapto[i] = 0;
|
||||||
|
}
|
||||||
|
else if (color[fa]) mapto[i] = color[fa] * val[v];
|
||||||
|
else {mapval[i] = val[v], mapto[i] = 0;}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
332
preprocess/card.cpp
Normal file
332
preprocess/card.cpp
Normal file
@ -0,0 +1,332 @@
|
|||||||
|
#include "preprocess.hpp"
|
||||||
|
#include <algorithm>
|
||||||
|
#include <cmath>
|
||||||
|
|
||||||
|
int preprocess::search_almost_one() {
|
||||||
|
HashMap *C = new HashMap();
|
||||||
|
nlit = 2 * vars + 2;
|
||||||
|
occur = new vec<int>[nlit];
|
||||||
|
for (int i = 1; i <= clauses; i++) {
|
||||||
|
clause_delete[i] = 0;
|
||||||
|
if (clause[i].size() != 2) continue;
|
||||||
|
int x = tolit(clause[i][0]);
|
||||||
|
int y = tolit(clause[i][1]);
|
||||||
|
ll id1 = mapv(x, y);
|
||||||
|
ll id2 = mapv(y, x);
|
||||||
|
C->insert(id1, i);
|
||||||
|
C->insert(id2, i);
|
||||||
|
occur[x].push(y);
|
||||||
|
occur[y].push(x);
|
||||||
|
}
|
||||||
|
for (int i = 1; i <= vars; i++)
|
||||||
|
seen[tolit(i)] = seen[tolit(-i)] = 0;
|
||||||
|
int t = 0;
|
||||||
|
vec<int> ino, nei;
|
||||||
|
for (int i = 0; i < vars * 2; i++) {
|
||||||
|
if (seen[i] || !occur[i].size()) continue;
|
||||||
|
seen[i] = 1;
|
||||||
|
nei.clear();
|
||||||
|
for (int j = 0; j < occur[i].size(); j++)
|
||||||
|
if (!seen[occur[i][j]])
|
||||||
|
nei.push(occur[i][j]);
|
||||||
|
do {
|
||||||
|
ino.clear();
|
||||||
|
ino.push(i);
|
||||||
|
for (int j = 0; j < nei.size(); j++) {
|
||||||
|
int v = nei[j], flag = 1;
|
||||||
|
for (int k = 0; k < ino.size(); k++) {
|
||||||
|
ll id = mapv(v, ino[k]);
|
||||||
|
int d1 = C->get(id, 0);
|
||||||
|
if (!d1) {flag = 0; break;}
|
||||||
|
q[k] = d1;
|
||||||
|
}
|
||||||
|
if (flag) {
|
||||||
|
for (int k = 0; k < ino.size(); k++) {
|
||||||
|
clause_delete[q[k]] = 1;
|
||||||
|
ll id1 = mapv(v, ino[k]), id2 = mapv(ino[k], v);
|
||||||
|
C->erase(id1);
|
||||||
|
C->erase(id2);
|
||||||
|
}
|
||||||
|
ino.push(v);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (ino.size() >= 2) {
|
||||||
|
card_one.push();
|
||||||
|
for (int j = 0; j < ino.size(); j++) {
|
||||||
|
card_one[card_one.size() - 1].push(-toeidx(ino[j]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} while (ino.size() != 1);
|
||||||
|
}
|
||||||
|
for (int i = 0; i < nlit; i++)
|
||||||
|
occur[i].clear(true);
|
||||||
|
delete []occur;
|
||||||
|
return card_one.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
void preprocess::upd_occur(int v, int s) {
|
||||||
|
int x = abs(v);
|
||||||
|
int t = 0;
|
||||||
|
if (v > 0) {
|
||||||
|
for (int j = 0; j < occurp[x].size(); j++)
|
||||||
|
if (occurp[x][j] != s) occurp[x][t++] = occurp[x][j];
|
||||||
|
assert(t == occurp[x].size() - 1);
|
||||||
|
occurp[x].setsize(t);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
for (int j = 0; j < occurn[x].size(); j++)
|
||||||
|
if (occurn[x][j] != s) occurn[x][t++] = occurn[x][j];
|
||||||
|
assert(t == occurn[x].size() - 1);
|
||||||
|
occurn[x].setsize(t);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int preprocess::scc_almost_one() {
|
||||||
|
for (int i = 1; i <= vars; i++) {
|
||||||
|
occurp[i].clear();
|
||||||
|
occurn[i].clear();
|
||||||
|
}
|
||||||
|
cdel.growTo(card_one.size(), 0);
|
||||||
|
for (int i = 0; i < card_one.size(); i++) {
|
||||||
|
for (int j = 0; j < card_one[i].size(); j++)
|
||||||
|
if (card_one[i][j] > 0)
|
||||||
|
occurp[card_one[i][j]].push(i);
|
||||||
|
else
|
||||||
|
occurn[-card_one[i][j]].push(i);
|
||||||
|
}
|
||||||
|
int flag = 1;
|
||||||
|
do {
|
||||||
|
flag = 0;
|
||||||
|
for (int i = 1; i <= vars; i++) {
|
||||||
|
if (!occurp[i].size() || !occurn[i].size()) continue;
|
||||||
|
if (card_one.size() + occurp[i].size() * occurp[i].size() > 1e7 / vars) return 0;
|
||||||
|
flag = 1;
|
||||||
|
for (int ip = 0; ip < occurp[i].size(); ip++)
|
||||||
|
cdel[occurp[i][ip]] = 1;
|
||||||
|
for (int in = 0; in < occurn[i].size(); in++)
|
||||||
|
cdel[occurn[i][in]] = 1;
|
||||||
|
for (int ip = 0; ip < occurp[i].size(); ip++) {
|
||||||
|
int op = occurp[i][ip];
|
||||||
|
for (int in = 0; in < occurn[i].size(); in++) {
|
||||||
|
int on = occurn[i][in];
|
||||||
|
card_one.push();
|
||||||
|
cdel.push(0);
|
||||||
|
int id = card_one.size() - 1;
|
||||||
|
for (int j = 0; j < card_one[op].size(); j++) {
|
||||||
|
int v = card_one[op][j];
|
||||||
|
if (abs(v) != i) {
|
||||||
|
card_one[id].push(v);
|
||||||
|
if (v > 0) occurp[v].push(id);
|
||||||
|
else occurn[-v].push(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (int j = 0; j < card_one[on].size(); j++) {
|
||||||
|
int v = card_one[on][j];
|
||||||
|
if (abs(v) != i) {
|
||||||
|
card_one[id].push(v);
|
||||||
|
if (v > 0) occurp[v].push(id);
|
||||||
|
else occurn[-v].push(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (int ip = 0; ip < occurp[i].size(); ip++) {
|
||||||
|
int op = occurp[i][ip];
|
||||||
|
for (int j = 0; j < card_one[op].size(); j++)
|
||||||
|
upd_occur(card_one[op][j], op);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int in = 0; in < occurn[i].size(); in++) {
|
||||||
|
int on = occurn[i][in];
|
||||||
|
for (int j = 0; j < card_one[on].size(); j++)
|
||||||
|
upd_occur(card_one[on][j], on);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} while(flag);
|
||||||
|
int t = 0;
|
||||||
|
for (int i = 0 ; i < card_one.size(); i++) {
|
||||||
|
if (cdel[i]) continue;
|
||||||
|
++t;
|
||||||
|
}
|
||||||
|
return t;
|
||||||
|
}
|
||||||
|
|
||||||
|
int preprocess::check_card(int id) { //0: wrong -1:useless 1:normal
|
||||||
|
int ps = 0, ns = 0, t = -1;
|
||||||
|
double poss = 0, negs = 0;
|
||||||
|
for (int j = 1; j <= vars; j++) {
|
||||||
|
if (fabs(mat[id][j]) < 1e-6) continue;
|
||||||
|
t = j;
|
||||||
|
if (mat[id][j] > 0) ++ps, poss += mat[id][j];
|
||||||
|
if (mat[id][j] < 0) ++ns, negs += mat[id][j];
|
||||||
|
}
|
||||||
|
if (ns + ps == 1) {
|
||||||
|
double r = mat[id][0] / mat[id][t];
|
||||||
|
if (ps) {
|
||||||
|
if (fabs(r) < 1e-6);
|
||||||
|
else if (r < 0) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (ns) {
|
||||||
|
if (fabs(r - 1) < 1e-6);
|
||||||
|
else if (r > 1) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (ns + ps == 0) {
|
||||||
|
if (mat[id][0] < -(1e-6)) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (poss <= mat[id][0]) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (negs >= mat[id][0]) {
|
||||||
|
if (negs == mat[id][0]) {
|
||||||
|
//unit
|
||||||
|
}
|
||||||
|
else return 0;
|
||||||
|
}
|
||||||
|
if (mat[id][0] == 0) {
|
||||||
|
if (ps == 0) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
else if (ns == 0) {
|
||||||
|
//unit
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int preprocess::card_elimination() {
|
||||||
|
//sigma aixi <= b
|
||||||
|
vec<int> row_size;
|
||||||
|
for (int i = 0; i < card_one.size(); i++) {
|
||||||
|
if (cdel[i]) continue;
|
||||||
|
int b = 1;
|
||||||
|
mat.push();
|
||||||
|
row_size.push(card_one[i].size());
|
||||||
|
int id = mat.size() - 1;
|
||||||
|
mat[id].growTo(vars + 1, 0);
|
||||||
|
for (int j = 0; j < card_one[i].size(); j++) {
|
||||||
|
if (card_one[i][j] < 0) b--;
|
||||||
|
mat[id][abs(card_one[i][j])] += pnsign(card_one[i][j]);
|
||||||
|
}
|
||||||
|
mat[id][0] = b;
|
||||||
|
}
|
||||||
|
for (int i = 0; i < card_one.size(); i++)
|
||||||
|
card_one[i].clear(true);
|
||||||
|
card_one.clear(true);
|
||||||
|
cdel.clear(true);
|
||||||
|
for (int i = 1; i <= clauses; i++) {
|
||||||
|
if (clause_delete[i]) continue;
|
||||||
|
int b = 1;
|
||||||
|
for (int j = 0; j < clause[i].size(); j++)
|
||||||
|
if (clause[i][j] < 0) b--;
|
||||||
|
//convert >= to <=
|
||||||
|
mat.push();
|
||||||
|
row_size.push(clause[i].size());
|
||||||
|
int id = mat.size() - 1;
|
||||||
|
mat[id].growTo(vars + 1, 0);
|
||||||
|
for (int j = 0; j < clause[i].size(); j++) {
|
||||||
|
mat[id][abs(clause[i][j])] += -pnsign(clause[i][j]);
|
||||||
|
}
|
||||||
|
mat[id][0] = -b;
|
||||||
|
}
|
||||||
|
int row = mat.size();
|
||||||
|
vec<int> mat_del, upp, low, var_score1, var_score2;
|
||||||
|
mat_del.growTo(row, 0);
|
||||||
|
var_score1.growTo(vars + 1, 0);
|
||||||
|
var_score2.growTo(vars + 1, 0);
|
||||||
|
for (int v = 1; v <= vars; v++) {
|
||||||
|
upp.clear();
|
||||||
|
low.clear();
|
||||||
|
for (int i = 0; i < row; i++) {
|
||||||
|
if (fabs(mat[i][v]) < 1e-6) continue;
|
||||||
|
if (mat[i][v] > 0)
|
||||||
|
upp.push(i);
|
||||||
|
else
|
||||||
|
low.push(i);
|
||||||
|
}
|
||||||
|
var_score1[v] = upp.size() * low.size();
|
||||||
|
for (int i = 0; i < upp.size(); i++)
|
||||||
|
for (int j = 0; j < low.size(); j++)
|
||||||
|
var_score2[v] += row_size[upp[i]] * row_size[low[j]];
|
||||||
|
}
|
||||||
|
vec<int> elim;
|
||||||
|
elim.growTo(vars + 1, 0);
|
||||||
|
for (int turn = 1; turn <= vars; turn++) {
|
||||||
|
int v = 0;
|
||||||
|
for (int i = 1; i <= vars; i++) {
|
||||||
|
if (elim[i]) continue;
|
||||||
|
if (!v) v = i;
|
||||||
|
else {
|
||||||
|
if (var_score1[i] < var_score1[v]) v = i;
|
||||||
|
else if (var_score1[i] == var_score1[v] && var_score2[i] < var_score2[v])
|
||||||
|
v = i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
elim[v] = 1;
|
||||||
|
upp.clear();
|
||||||
|
low.clear();
|
||||||
|
for (int i = 0; i < row; i++) {
|
||||||
|
if (mat_del[i]) continue;
|
||||||
|
if (fabs(mat[i][v]) < 1e-6) continue;
|
||||||
|
mat_del[i] = 1;
|
||||||
|
if (mat[i][v] > 0) {
|
||||||
|
upp.push(i);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
low.push(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (mat.size() + upp.size() * low.size() > 1e7/vars || mat.size() > 1e3) return 1;
|
||||||
|
for (int iu = 0; iu < upp.size(); iu++) {
|
||||||
|
int u = upp[iu];
|
||||||
|
for (int il = 0; il < low.size(); il++) {
|
||||||
|
int l = low[il];
|
||||||
|
double b = mat[u][0] / mat[u][v] + mat[l][0] / (-mat[l][v]);
|
||||||
|
mat.push();
|
||||||
|
mat_del.push(0);
|
||||||
|
int id = mat.size() - 1;
|
||||||
|
mat[id].growTo(vars + 1, 0);
|
||||||
|
for (int j = 0; j <= vars; j++)
|
||||||
|
mat[id][j] = mat[u][j] / mat[u][v] + mat[l][j] / (-mat[l][v]);
|
||||||
|
|
||||||
|
int check_res = check_card(id);
|
||||||
|
if (check_res == 0) return 0;
|
||||||
|
if (check_res == -1) mat.pop();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
row = mat.size();
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int preprocess::preprocess_card() {
|
||||||
|
int sone = search_almost_one();
|
||||||
|
// printf("c [CE] almost one cons: %d\n", sone);
|
||||||
|
if (!sone) return 1;
|
||||||
|
int scc = scc_almost_one();
|
||||||
|
int sz = card_one.size();
|
||||||
|
for (int i = 1; i <= clauses; i++)
|
||||||
|
if (!clause_delete[i]) ++sz;
|
||||||
|
if (sz > 1e7 / vars || !scc || sz > 1e3) {
|
||||||
|
for (int i = 0; i < card_one.size(); i++)
|
||||||
|
card_one[i].clear(true);
|
||||||
|
card_one.clear(true);
|
||||||
|
cdel.clear(true);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
// printf("c [CE] scc cons: %d\n", scc);
|
||||||
|
int res = card_elimination();
|
||||||
|
for (int i = 0; i < mat.size(); i++)
|
||||||
|
mat[i].clear(true);
|
||||||
|
mat.clear(true);
|
||||||
|
return res;
|
||||||
|
}
|
254
preprocess/gauss.cpp
Normal file
254
preprocess/gauss.cpp
Normal file
@ -0,0 +1,254 @@
|
|||||||
|
#include "preprocess.hpp"
|
||||||
|
#include <algorithm>
|
||||||
|
#include "m4ri/m4ri.h"
|
||||||
|
#define MAX_XOR 6
|
||||||
|
|
||||||
|
bool cmpvar(int x, int y) {
|
||||||
|
return abs(x) < abs(y);
|
||||||
|
}
|
||||||
|
|
||||||
|
int preprocess::cal_dup_val(int i) {
|
||||||
|
for (int j = 0; j < clause[i].size(); j++) a[j] = clause[i][j];
|
||||||
|
std::sort(a, a + clause[i].size(), cmpvar);
|
||||||
|
int v = 0;
|
||||||
|
for (int j = 0; j < clause[i].size(); j++)
|
||||||
|
if (a[j] < 0) v |= (1 << j);
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
int preprocess::search_xors() {
|
||||||
|
vec<int> xorsp;
|
||||||
|
vec<bool> dup_table;
|
||||||
|
for (int i = 1; i <= vars; i++) {
|
||||||
|
seen[i] = 0;
|
||||||
|
occurp[i].clear();
|
||||||
|
occurn[i].clear();
|
||||||
|
}
|
||||||
|
for (int i = 1; i <= clauses; i++) {
|
||||||
|
abstract[i] = clause_delete[i] = nxtc[i] = 0;
|
||||||
|
int l = clause[i].size();
|
||||||
|
for (int j = 0; j < l; j++) {
|
||||||
|
if (clause[i][j] > 0) occurp[clause[i][j]].push(i);
|
||||||
|
else occurn[-clause[i][j]].push(i);
|
||||||
|
abstract[i] |= 1 << (abs(clause[i][j]) & 31);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (int i = 1; i <= clauses; i++) {
|
||||||
|
if (nxtc[i] || clause_delete[i]) continue;
|
||||||
|
nxtc[i] = 1;
|
||||||
|
int l = clause[i].size();
|
||||||
|
if (l <= 2 || l > MAX_XOR) continue;
|
||||||
|
int required_num = 1 << (l - 2), skip = 0, mino = clauses + 1, mino_id = 0;
|
||||||
|
for (int j = 0; j < l; j++) {
|
||||||
|
int idx = abs(clause[i][j]);
|
||||||
|
if (occurp[idx].size() < required_num || occurn[idx].size() < required_num) {
|
||||||
|
skip = 1; break;
|
||||||
|
}
|
||||||
|
if (occurp[idx].size() + occurn[idx].size() < mino) {
|
||||||
|
mino = occurp[idx].size() + occurn[idx].size();
|
||||||
|
mino_id = idx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (skip) continue;
|
||||||
|
xorsp.clear();
|
||||||
|
xorsp.push(i);
|
||||||
|
for (int j = 0; j < occurp[mino_id].size(); j++) {
|
||||||
|
int o = occurp[mino_id][j];
|
||||||
|
if (!clause_delete[o] && !nxtc[o] && clause[o].size() == l && abstract[o] == abstract[i])
|
||||||
|
xorsp.push(o);
|
||||||
|
}
|
||||||
|
for (int j = 0; j < occurn[mino_id].size(); j++) {
|
||||||
|
int o = occurn[mino_id][j];
|
||||||
|
if (!clause_delete[o] && !nxtc[o] && clause[o].size() == l && abstract[o] == abstract[i])
|
||||||
|
xorsp.push(o);
|
||||||
|
}
|
||||||
|
if (xorsp.size() < 2 * required_num) continue;
|
||||||
|
|
||||||
|
int rhs[2] = {0, 0};
|
||||||
|
for (int j = 0; j < l; j++)
|
||||||
|
seen[abs(clause[i][j])] = i;
|
||||||
|
dup_table.clear();
|
||||||
|
dup_table.growTo(1 << MAX_XOR, false);
|
||||||
|
|
||||||
|
for (int j = 0; j < xorsp.size(); j++) {
|
||||||
|
int o = xorsp[j], dup_v;
|
||||||
|
bool xor_sign = true;
|
||||||
|
for (int k = 0; k < clause[o].size(); k++) {
|
||||||
|
if (!seen[abs(clause[o][k])]) goto Next;
|
||||||
|
if (clause[o][k] < 0) xor_sign = !xor_sign;
|
||||||
|
}
|
||||||
|
dup_v = cal_dup_val(o);
|
||||||
|
if (dup_table[dup_v]) continue;
|
||||||
|
dup_table[dup_v] = true;
|
||||||
|
rhs[xor_sign]++;
|
||||||
|
if (j) nxtc[o] = 1;
|
||||||
|
Next:;
|
||||||
|
}
|
||||||
|
assert(rhs[0] <= 2 * required_num);
|
||||||
|
assert(rhs[1] <= 2 * required_num);
|
||||||
|
if (rhs[0] == 2 * required_num)
|
||||||
|
xors.push(xorgate(i, 0, l));
|
||||||
|
if (rhs[1] == 2 * required_num)
|
||||||
|
xors.push(xorgate(i, 1, l));
|
||||||
|
}
|
||||||
|
return xors.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool cmpxorgate(xorgate a, xorgate b) {
|
||||||
|
return a.sz > b.sz;
|
||||||
|
}
|
||||||
|
|
||||||
|
int preprocess::ecc_var() {
|
||||||
|
scc_id.clear();
|
||||||
|
scc_id.growTo(vars + 1, -1);
|
||||||
|
scc.clear();
|
||||||
|
//sort(xors.data, xors.data + xors.sz, cmpxorgate);
|
||||||
|
vec<int> xids;
|
||||||
|
|
||||||
|
for (int i = 0; i < xors.size(); i++) {
|
||||||
|
int x = xors[i].c;
|
||||||
|
xids.clear();
|
||||||
|
for (int j = 0; j < clause[x].size(); j++)
|
||||||
|
if (scc_id[abs(clause[x][j])] != -1)
|
||||||
|
xids.push(scc_id[abs(clause[x][j])]);
|
||||||
|
|
||||||
|
if (xids.size() == 0) {
|
||||||
|
scc.push();
|
||||||
|
for (int j = 0; j < clause[x].size(); j++) {
|
||||||
|
scc_id[abs(clause[x][j])] = scc.size() - 1;
|
||||||
|
scc[scc.size() - 1].push(abs(clause[x][j]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (xids.size() == 1) {
|
||||||
|
int id = xids[0];
|
||||||
|
for (int j = 0; j < clause[x].size(); j++) {
|
||||||
|
if (scc_id[abs(clause[x][j])] == -1) {
|
||||||
|
scc_id[abs(clause[x][j])] = id;
|
||||||
|
scc[id].push(abs(clause[x][j]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
int id_max = -1; int sz_max = 0;
|
||||||
|
for (int j = 0; j < xids.size(); j++)
|
||||||
|
if (scc[xids[j]].size() > sz_max)
|
||||||
|
sz_max = scc[xids[j]].size(), id_max = xids[j];
|
||||||
|
for (int j = 0; j < xids.size(); j++) {
|
||||||
|
if (xids[j] != id_max) {
|
||||||
|
vec<int>& v = scc[xids[j]];
|
||||||
|
for (int k = 0; k < v.size(); k++) {
|
||||||
|
scc_id[v[k]] = id_max;
|
||||||
|
scc[id_max].push(v[k]);
|
||||||
|
}
|
||||||
|
v.clear();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for (int j = 0; j < clause[x].size(); j++) {
|
||||||
|
if (scc_id[abs(clause[x][j])] == -1) {
|
||||||
|
scc_id[abs(clause[x][j])] = id_max;
|
||||||
|
scc[id_max].push(abs(clause[x][j]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return scc.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
int preprocess::ecc_xor() {
|
||||||
|
for (int i = 0; i < scc.size(); i++) seen[i] = -1;
|
||||||
|
for (int i = 0; i < xors.size(); i++) {
|
||||||
|
int id = scc_id[abs(clause[xors[i].c][0])];
|
||||||
|
if (seen[id] == -1) xor_scc.push(), seen[id] = xor_scc.size() - 1;
|
||||||
|
int id2 = seen[id];
|
||||||
|
xor_scc[id2].push(i);
|
||||||
|
}
|
||||||
|
return xor_scc.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
int preprocess::gauss_elimination() {
|
||||||
|
gauss_eli_unit = gauss_eli_binary = 0;
|
||||||
|
vec<int> v2mzd(vars + 1, -1);
|
||||||
|
vec<int> mzd2v;
|
||||||
|
for (int i = 0; i < xor_scc.size(); i++) {
|
||||||
|
if (xor_scc[i].size() == 1) continue;
|
||||||
|
int id = scc_id[abs(clause[xors[xor_scc[i][0]].c][0])];
|
||||||
|
assert(scc[id].size() > 3);
|
||||||
|
if (scc[id].size() > 1e7 / xor_scc[i].size()) continue;
|
||||||
|
mzd2v.clear();
|
||||||
|
std::sort(scc[id].data, scc[id].data + scc[id].size(), cmpvar);
|
||||||
|
for (int j = 0; j < scc[id].size(); j++) {
|
||||||
|
assert(scc[id][j] > 0);
|
||||||
|
assert(scc[id][j] <= vars);
|
||||||
|
v2mzd[scc[id][j]] = j;
|
||||||
|
mzd2v.push(scc[id][j]);
|
||||||
|
}
|
||||||
|
int cols = scc[id].size() + 1;
|
||||||
|
mzd_t* mat = mzd_init(xor_scc[i].size(), cols);
|
||||||
|
for (int row = 0; row < xor_scc[i].size(); row++) {
|
||||||
|
int k = xors[xor_scc[i][row]].c;
|
||||||
|
for (int j = 0; j < clause[k].size(); j++)
|
||||||
|
mzd_write_bit(mat, row, v2mzd[abs(clause[k][j])], 1);
|
||||||
|
if (xors[xor_scc[i][row]].rhs)
|
||||||
|
mzd_write_bit(mat, row, cols - 1, 1);
|
||||||
|
}
|
||||||
|
mzd_echelonize(mat, true);
|
||||||
|
mzd_free(mat);
|
||||||
|
for (int row = 0, rhs; row < xor_scc[i].size(); row++) {
|
||||||
|
vec<int> ones;
|
||||||
|
for (int col = 0; col < cols - 1; col++)
|
||||||
|
if (mzd_read_bit(mat, row, col)) {
|
||||||
|
if (ones.size() == 2) goto NextRow;
|
||||||
|
ones.push(mzd2v[col]);
|
||||||
|
}
|
||||||
|
|
||||||
|
rhs = mzd_read_bit(mat, row, cols - 1);
|
||||||
|
if (ones.size() == 1) {
|
||||||
|
++gauss_eli_unit;
|
||||||
|
clause.push();
|
||||||
|
++clauses;
|
||||||
|
clause[clauses].push(ones[0] * (rhs ? 1 : -1));
|
||||||
|
}
|
||||||
|
else if (ones.size() == 2) {
|
||||||
|
++gauss_eli_binary;
|
||||||
|
assert(clauses == clause.size() - 1);
|
||||||
|
int p = ones[0], q = rhs ? ones[1] : -ones[1];
|
||||||
|
clause.push();
|
||||||
|
++clauses;
|
||||||
|
clause[clauses].push(p);
|
||||||
|
clause[clauses].push(q);
|
||||||
|
clause.push();
|
||||||
|
++clauses;
|
||||||
|
clause[clauses].push(-p);
|
||||||
|
clause[clauses].push(-q);
|
||||||
|
}
|
||||||
|
else if (rhs) {return false;}
|
||||||
|
NextRow:;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool preprocess::preprocess_gauss() {
|
||||||
|
int nxors = search_xors();
|
||||||
|
// printf("c [GE] XORs: %d (time: 0.00)\n", nxors);
|
||||||
|
if (!nxors) return true;
|
||||||
|
int nvarscc = ecc_var();
|
||||||
|
// printf("c [GE] VAR SCC: %d\n", nvarscc);
|
||||||
|
int nxorscc = ecc_xor();
|
||||||
|
// printf("c [GE] XOR SCCs: %d (time: 0.00)\n", nxorscc);
|
||||||
|
int res = gauss_elimination();
|
||||||
|
// printf("c [GE] unary xor: %d, bin xor: %d, bin added\n", gauss_eli_unit, gauss_eli_binary);
|
||||||
|
// if (!res) {printf("c [GE] UNSAT\n");}
|
||||||
|
xors.clear(true);
|
||||||
|
scc_id.clear(true);
|
||||||
|
for (int i = 0; i < scc.size(); i++)
|
||||||
|
scc[i].clear(true);
|
||||||
|
scc.clear(true);
|
||||||
|
for (int i = 0; i < xor_scc.size(); i++)
|
||||||
|
xor_scc[i].clear(true);
|
||||||
|
xor_scc.clear(true);
|
||||||
|
if (!res) return false;
|
||||||
|
clause_delete.growTo(clauses + 1, 0);
|
||||||
|
nxtc.growTo(clauses + 1, 0);
|
||||||
|
return true;
|
||||||
|
}
|
BIN
preprocess/m4ri-20140914/.libs/libm4ri-0.0.20140914.so
Executable file
BIN
preprocess/m4ri-20140914/.libs/libm4ri-0.0.20140914.so
Executable file
Binary file not shown.
BIN
preprocess/m4ri-20140914/.libs/libm4ri.a
Normal file
BIN
preprocess/m4ri-20140914/.libs/libm4ri.a
Normal file
Binary file not shown.
1
preprocess/m4ri-20140914/.libs/libm4ri.la
Symbolic link
1
preprocess/m4ri-20140914/.libs/libm4ri.la
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../libm4ri.la
|
41
preprocess/m4ri-20140914/.libs/libm4ri.lai
Normal file
41
preprocess/m4ri-20140914/.libs/libm4ri.lai
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
# libm4ri.la - a libtool library file
|
||||||
|
# Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1.10
|
||||||
|
#
|
||||||
|
# Please DO NOT delete this file!
|
||||||
|
# It is necessary for linking the library.
|
||||||
|
|
||||||
|
# The name that we can dlopen(3).
|
||||||
|
dlname='libm4ri-0.0.20140914.so'
|
||||||
|
|
||||||
|
# Names of this library.
|
||||||
|
library_names='libm4ri-0.0.20140914.so libm4ri-0.0.20140914.so libm4ri.so'
|
||||||
|
|
||||||
|
# The name of the static archive.
|
||||||
|
old_library='libm4ri.a'
|
||||||
|
|
||||||
|
# Linker flags that can not go in dependency_libs.
|
||||||
|
inherited_linker_flags=''
|
||||||
|
|
||||||
|
# Libraries that this one depends upon.
|
||||||
|
dependency_libs=''
|
||||||
|
|
||||||
|
# Names of additional weak libraries provided by this library
|
||||||
|
weak_library_names=''
|
||||||
|
|
||||||
|
# Version information for libm4ri.
|
||||||
|
current=0
|
||||||
|
age=0
|
||||||
|
revision=0
|
||||||
|
|
||||||
|
# Is this an already installed library?
|
||||||
|
installed=yes
|
||||||
|
|
||||||
|
# Should we warn about portability when linking against -modules?
|
||||||
|
shouldnotlink=no
|
||||||
|
|
||||||
|
# Files to dlopen/dlpreopen
|
||||||
|
dlopen=''
|
||||||
|
dlpreopen=''
|
||||||
|
|
||||||
|
# Directory that this library needs to be installed in:
|
||||||
|
libdir='/usr/local/lib'
|
1
preprocess/m4ri-20140914/.libs/libm4ri.so
Symbolic link
1
preprocess/m4ri-20140914/.libs/libm4ri.so
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
libm4ri-0.0.20140914.so
|
37
preprocess/m4ri-20140914/AUTHORS
Normal file
37
preprocess/m4ri-20140914/AUTHORS
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
* Tim Abbott: Debian-isation & advice on correct libtool versioning;
|
||||||
|
|
||||||
|
* Martin Albrecht: maintainer, release manager, peformance tuning
|
||||||
|
(M4RM, M4RI, Strassen, PLE), initial M4RM implementation,
|
||||||
|
parallelisation, PLE factorisation (MMPF algorithm);
|
||||||
|
|
||||||
|
* Gregory Bard: initial author, M4RI algorithm and initial
|
||||||
|
implementation;
|
||||||
|
|
||||||
|
* Marco Bodrato: new Strassen-like sequence for matrix multiplication
|
||||||
|
and squaring which improves performance for squaring;
|
||||||
|
|
||||||
|
* Michael Brickenstein: PolyBoRi author, standard conformity
|
||||||
|
contributions for ANSIC, test data, discussion/suggestion of
|
||||||
|
performance improvements, fast vector-matrix products;
|
||||||
|
|
||||||
|
* Alexander Dreyer: PolyBoRi author, standard conformity
|
||||||
|
contributions for ANSIC;
|
||||||
|
|
||||||
|
* Jean-Guillaume Dumas: linear system resolution;
|
||||||
|
|
||||||
|
* William Hart: many performance improvements for matrix
|
||||||
|
multiplication and in general;
|
||||||
|
|
||||||
|
* David Harvey: parallel parity function used in classical
|
||||||
|
multiplication;
|
||||||
|
|
||||||
|
* David Kirkby: portability issues (Solaris, HP Unix);
|
||||||
|
|
||||||
|
* Clément Pernet: PLS factorisation, triangular system solving
|
||||||
|
(TRSM);
|
||||||
|
|
||||||
|
* Wael Said: test cases, feedback;
|
||||||
|
|
||||||
|
* Carlo Wood: bit-level optimisation (transpose, column swaps),
|
||||||
|
refactoring, benchmark(et)ing framework, test code, build system
|
||||||
|
clean-up;
|
341
preprocess/m4ri-20140914/COPYING
Normal file
341
preprocess/m4ri-20140914/COPYING
Normal file
@ -0,0 +1,341 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 2, June 1991
|
||||||
|
|
||||||
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||||
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The licenses for most software are designed to take away your
|
||||||
|
freedom to share and change it. By contrast, the GNU General Public
|
||||||
|
License is intended to guarantee your freedom to share and change free
|
||||||
|
software--to make sure the software is free for all its users. This
|
||||||
|
General Public License applies to most of the Free Software
|
||||||
|
Foundation's software and to any other program whose authors commit to
|
||||||
|
using it. (Some other Free Software Foundation software is covered by
|
||||||
|
the GNU Library General Public License instead.) You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
this service if you wish), that you receive source code or can get it
|
||||||
|
if you want it, that you can change the software or use pieces of it
|
||||||
|
in new free programs; and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to make restrictions that forbid
|
||||||
|
anyone to deny you these rights or to ask you to surrender the rights.
|
||||||
|
These restrictions translate to certain responsibilities for you if you
|
||||||
|
distribute copies of the software, or if you modify it.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must give the recipients all the rights that
|
||||||
|
you have. You must make sure that they, too, receive or can get the
|
||||||
|
source code. And you must show them these terms so they know their
|
||||||
|
rights.
|
||||||
|
|
||||||
|
We protect your rights with two steps: (1) copyright the software, and
|
||||||
|
(2) offer you this license which gives you legal permission to copy,
|
||||||
|
distribute and/or modify the software.
|
||||||
|
|
||||||
|
Also, for each author's protection and ours, we want to make certain
|
||||||
|
that everyone understands that there is no warranty for this free
|
||||||
|
software. If the software is modified by someone else and passed on, we
|
||||||
|
want its recipients to know that what they have is not the original, so
|
||||||
|
that any problems introduced by others will not reflect on the original
|
||||||
|
authors' reputations.
|
||||||
|
|
||||||
|
Finally, any free program is threatened constantly by software
|
||||||
|
patents. We wish to avoid the danger that redistributors of a free
|
||||||
|
program will individually obtain patent licenses, in effect making the
|
||||||
|
program proprietary. To prevent this, we have made it clear that any
|
||||||
|
patent must be licensed for everyone's free use or not licensed at all.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. This License applies to any program or other work which contains
|
||||||
|
a notice placed by the copyright holder saying it may be distributed
|
||||||
|
under the terms of this General Public License. The "Program", below,
|
||||||
|
refers to any such program or work, and a "work based on the Program"
|
||||||
|
means either the Program or any derivative work under copyright law:
|
||||||
|
that is to say, a work containing the Program or a portion of it,
|
||||||
|
either verbatim or with modifications and/or translated into another
|
||||||
|
language. (Hereinafter, translation is included without limitation in
|
||||||
|
the term "modification".) Each licensee is addressed as "you".
|
||||||
|
|
||||||
|
Activities other than copying, distribution and modification are not
|
||||||
|
covered by this License; they are outside its scope. The act of
|
||||||
|
running the Program is not restricted, and the output from the Program
|
||||||
|
is covered only if its contents constitute a work based on the
|
||||||
|
Program (independent of having been made by running the Program).
|
||||||
|
Whether that is true depends on what the Program does.
|
||||||
|
|
||||||
|
1. You may copy and distribute verbatim copies of the Program's
|
||||||
|
source code as you receive it, in any medium, provided that you
|
||||||
|
conspicuously and appropriately publish on each copy an appropriate
|
||||||
|
copyright notice and disclaimer of warranty; keep intact all the
|
||||||
|
notices that refer to this License and to the absence of any warranty;
|
||||||
|
and give any other recipients of the Program a copy of this License
|
||||||
|
along with the Program.
|
||||||
|
|
||||||
|
You may charge a fee for the physical act of transferring a copy, and
|
||||||
|
you may at your option offer warranty protection in exchange for a fee.
|
||||||
|
|
||||||
|
2. You may modify your copy or copies of the Program or any portion
|
||||||
|
of it, thus forming a work based on the Program, and copy and
|
||||||
|
distribute such modifications or work under the terms of Section 1
|
||||||
|
above, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) You must cause the modified files to carry prominent notices
|
||||||
|
stating that you changed the files and the date of any change.
|
||||||
|
|
||||||
|
b) You must cause any work that you distribute or publish, that in
|
||||||
|
whole or in part contains or is derived from the Program or any
|
||||||
|
part thereof, to be licensed as a whole at no charge to all third
|
||||||
|
parties under the terms of this License.
|
||||||
|
|
||||||
|
c) If the modified program normally reads commands interactively
|
||||||
|
when run, you must cause it, when started running for such
|
||||||
|
interactive use in the most ordinary way, to print or display an
|
||||||
|
announcement including an appropriate copyright notice and a
|
||||||
|
notice that there is no warranty (or else, saying that you provide
|
||||||
|
a warranty) and that users may redistribute the program under
|
||||||
|
these conditions, and telling the user how to view a copy of this
|
||||||
|
License. (Exception: if the Program itself is interactive but
|
||||||
|
does not normally print such an announcement, your work based on
|
||||||
|
the Program is not required to print an announcement.)
|
||||||
|
|
||||||
|
These requirements apply to the modified work as a whole. If
|
||||||
|
identifiable sections of that work are not derived from the Program,
|
||||||
|
and can be reasonably considered independent and separate works in
|
||||||
|
themselves, then this License, and its terms, do not apply to those
|
||||||
|
sections when you distribute them as separate works. But when you
|
||||||
|
distribute the same sections as part of a whole which is a work based
|
||||||
|
on the Program, the distribution of the whole must be on the terms of
|
||||||
|
this License, whose permissions for other licensees extend to the
|
||||||
|
entire whole, and thus to each and every part regardless of who wrote it.
|
||||||
|
|
||||||
|
Thus, it is not the intent of this section to claim rights or contest
|
||||||
|
your rights to work written entirely by you; rather, the intent is to
|
||||||
|
exercise the right to control the distribution of derivative or
|
||||||
|
collective works based on the Program.
|
||||||
|
|
||||||
|
In addition, mere aggregation of another work not based on the Program
|
||||||
|
with the Program (or with a work based on the Program) on a volume of
|
||||||
|
a storage or distribution medium does not bring the other work under
|
||||||
|
the scope of this License.
|
||||||
|
|
||||||
|
3. You may copy and distribute the Program (or a work based on it,
|
||||||
|
under Section 2) in object code or executable form under the terms of
|
||||||
|
Sections 1 and 2 above provided that you also do one of the following:
|
||||||
|
|
||||||
|
a) Accompany it with the complete corresponding machine-readable
|
||||||
|
source code, which must be distributed under the terms of Sections
|
||||||
|
1 and 2 above on a medium customarily used for software interchange; or,
|
||||||
|
|
||||||
|
b) Accompany it with a written offer, valid for at least three
|
||||||
|
years, to give any third party, for a charge no more than your
|
||||||
|
cost of physically performing source distribution, a complete
|
||||||
|
machine-readable copy of the corresponding source code, to be
|
||||||
|
distributed under the terms of Sections 1 and 2 above on a medium
|
||||||
|
customarily used for software interchange; or,
|
||||||
|
|
||||||
|
c) Accompany it with the information you received as to the offer
|
||||||
|
to distribute corresponding source code. (This alternative is
|
||||||
|
allowed only for noncommercial distribution and only if you
|
||||||
|
received the program in object code or executable form with such
|
||||||
|
an offer, in accord with Subsection b above.)
|
||||||
|
|
||||||
|
The source code for a work means the preferred form of the work for
|
||||||
|
making modifications to it. For an executable work, complete source
|
||||||
|
code means all the source code for all modules it contains, plus any
|
||||||
|
associated interface definition files, plus the scripts used to
|
||||||
|
control compilation and installation of the executable. However, as a
|
||||||
|
special exception, the source code distributed need not include
|
||||||
|
anything that is normally distributed (in either source or binary
|
||||||
|
form) with the major components (compiler, kernel, and so on) of the
|
||||||
|
operating system on which the executable runs, unless that component
|
||||||
|
itself accompanies the executable.
|
||||||
|
|
||||||
|
If distribution of executable or object code is made by offering
|
||||||
|
access to copy from a designated place, then offering equivalent
|
||||||
|
access to copy the source code from the same place counts as
|
||||||
|
distribution of the source code, even though third parties are not
|
||||||
|
compelled to copy the source along with the object code.
|
||||||
|
|
||||||
|
4. You may not copy, modify, sublicense, or distribute the Program
|
||||||
|
except as expressly provided under this License. Any attempt
|
||||||
|
otherwise to copy, modify, sublicense or distribute the Program is
|
||||||
|
void, and will automatically terminate your rights under this License.
|
||||||
|
However, parties who have received copies, or rights, from you under
|
||||||
|
this License will not have their licenses terminated so long as such
|
||||||
|
parties remain in full compliance.
|
||||||
|
|
||||||
|
5. You are not required to accept this License, since you have not
|
||||||
|
signed it. However, nothing else grants you permission to modify or
|
||||||
|
distribute the Program or its derivative works. These actions are
|
||||||
|
prohibited by law if you do not accept this License. Therefore, by
|
||||||
|
modifying or distributing the Program (or any work based on the
|
||||||
|
Program), you indicate your acceptance of this License to do so, and
|
||||||
|
all its terms and conditions for copying, distributing or modifying
|
||||||
|
the Program or works based on it.
|
||||||
|
|
||||||
|
6. Each time you redistribute the Program (or any work based on the
|
||||||
|
Program), the recipient automatically receives a license from the
|
||||||
|
original licensor to copy, distribute or modify the Program subject to
|
||||||
|
these terms and conditions. You may not impose any further
|
||||||
|
restrictions on the recipients' exercise of the rights granted herein.
|
||||||
|
You are not responsible for enforcing compliance by third parties to
|
||||||
|
this License.
|
||||||
|
|
||||||
|
7. If, as a consequence of a court judgment or allegation of patent
|
||||||
|
infringement or for any other reason (not limited to patent issues),
|
||||||
|
conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot
|
||||||
|
distribute so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you
|
||||||
|
may not distribute the Program at all. For example, if a patent
|
||||||
|
license would not permit royalty-free redistribution of the Program by
|
||||||
|
all those who receive copies directly or indirectly through you, then
|
||||||
|
the only way you could satisfy both it and this License would be to
|
||||||
|
refrain entirely from distribution of the Program.
|
||||||
|
|
||||||
|
If any portion of this section is held invalid or unenforceable under
|
||||||
|
any particular circumstance, the balance of the section is intended to
|
||||||
|
apply and the section as a whole is intended to apply in other
|
||||||
|
circumstances.
|
||||||
|
|
||||||
|
It is not the purpose of this section to induce you to infringe any
|
||||||
|
patents or other property right claims or to contest validity of any
|
||||||
|
such claims; this section has the sole purpose of protecting the
|
||||||
|
integrity of the free software distribution system, which is
|
||||||
|
implemented by public license practices. Many people have made
|
||||||
|
generous contributions to the wide range of software distributed
|
||||||
|
through that system in reliance on consistent application of that
|
||||||
|
system; it is up to the author/donor to decide if he or she is willing
|
||||||
|
to distribute software through any other system and a licensee cannot
|
||||||
|
impose that choice.
|
||||||
|
|
||||||
|
This section is intended to make thoroughly clear what is believed to
|
||||||
|
be a consequence of the rest of this License.
|
||||||
|
|
||||||
|
8. If the distribution and/or use of the Program is restricted in
|
||||||
|
certain countries either by patents or by copyrighted interfaces, the
|
||||||
|
original copyright holder who places the Program under this License
|
||||||
|
may add an explicit geographical distribution limitation excluding
|
||||||
|
those countries, so that distribution is permitted only in or among
|
||||||
|
countries not thus excluded. In such case, this License incorporates
|
||||||
|
the limitation as if written in the body of this License.
|
||||||
|
|
||||||
|
9. The Free Software Foundation may publish revised and/or new versions
|
||||||
|
of the General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the Program
|
||||||
|
specifies a version number of this License which applies to it and "any
|
||||||
|
later version", you have the option of following the terms and conditions
|
||||||
|
either of that version or of any later version published by the Free
|
||||||
|
Software Foundation. If the Program does not specify a version number of
|
||||||
|
this License, you may choose any version ever published by the Free Software
|
||||||
|
Foundation.
|
||||||
|
|
||||||
|
10. If you wish to incorporate parts of the Program into other free
|
||||||
|
programs whose distribution conditions are different, write to the author
|
||||||
|
to ask for permission. For software which is copyrighted by the Free
|
||||||
|
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||||
|
make exceptions for this. Our decision will be guided by the two goals
|
||||||
|
of preserving the free status of all derivatives of our free software and
|
||||||
|
of promoting the sharing and reuse of software generally.
|
||||||
|
|
||||||
|
NO WARRANTY
|
||||||
|
|
||||||
|
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||||
|
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||||
|
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||||
|
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||||
|
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||||
|
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||||
|
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||||
|
REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||||
|
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||||
|
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||||
|
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||||
|
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||||
|
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||||
|
POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
convey the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) 19yy <name of author>
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation; either version 2 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program is interactive, make it output a short notice like this
|
||||||
|
when it starts in an interactive mode:
|
||||||
|
|
||||||
|
Gnomovision version 69, Copyright (C) 19yy name of author
|
||||||
|
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, the commands you use may
|
||||||
|
be called something other than `show w' and `show c'; they could even be
|
||||||
|
mouse-clicks or menu items--whatever suits your program.
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or your
|
||||||
|
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||||
|
necessary. Here is a sample; alter the names:
|
||||||
|
|
||||||
|
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||||
|
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||||
|
|
||||||
|
<signature of Ty Coon>, 1 April 1989
|
||||||
|
Ty Coon, President of Vice
|
||||||
|
|
||||||
|
This General Public License does not permit incorporating your program into
|
||||||
|
proprietary programs. If your program is a subroutine library, you may
|
||||||
|
consider it more useful to permit linking proprietary applications with the
|
||||||
|
library. If this is what you want to do, use the GNU Library General
|
||||||
|
Public License instead of this License.
|
0
preprocess/m4ri-20140914/ChangeLog
Normal file
0
preprocess/m4ri-20140914/ChangeLog
Normal file
370
preprocess/m4ri-20140914/INSTALL
Normal file
370
preprocess/m4ri-20140914/INSTALL
Normal file
@ -0,0 +1,370 @@
|
|||||||
|
Installation Instructions
|
||||||
|
*************************
|
||||||
|
|
||||||
|
Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation,
|
||||||
|
Inc.
|
||||||
|
|
||||||
|
Copying and distribution of this file, with or without modification,
|
||||||
|
are permitted in any medium without royalty provided the copyright
|
||||||
|
notice and this notice are preserved. This file is offered as-is,
|
||||||
|
without warranty of any kind.
|
||||||
|
|
||||||
|
Basic Installation
|
||||||
|
==================
|
||||||
|
|
||||||
|
Briefly, the shell command `./configure && make && make install'
|
||||||
|
should configure, build, and install this package. The following
|
||||||
|
more-detailed instructions are generic; see the `README' file for
|
||||||
|
instructions specific to this package. Some packages provide this
|
||||||
|
`INSTALL' file but do not implement all of the features documented
|
||||||
|
below. The lack of an optional feature in a given package is not
|
||||||
|
necessarily a bug. More recommendations for GNU packages can be found
|
||||||
|
in *note Makefile Conventions: (standards)Makefile Conventions.
|
||||||
|
|
||||||
|
The `configure' shell script attempts to guess correct values for
|
||||||
|
various system-dependent variables used during compilation. It uses
|
||||||
|
those values to create a `Makefile' in each directory of the package.
|
||||||
|
It may also create one or more `.h' files containing system-dependent
|
||||||
|
definitions. Finally, it creates a shell script `config.status' that
|
||||||
|
you can run in the future to recreate the current configuration, and a
|
||||||
|
file `config.log' containing compiler output (useful mainly for
|
||||||
|
debugging `configure').
|
||||||
|
|
||||||
|
It can also use an optional file (typically called `config.cache'
|
||||||
|
and enabled with `--cache-file=config.cache' or simply `-C') that saves
|
||||||
|
the results of its tests to speed up reconfiguring. Caching is
|
||||||
|
disabled by default to prevent problems with accidental use of stale
|
||||||
|
cache files.
|
||||||
|
|
||||||
|
If you need to do unusual things to compile the package, please try
|
||||||
|
to figure out how `configure' could check whether to do them, and mail
|
||||||
|
diffs or instructions to the address given in the `README' so they can
|
||||||
|
be considered for the next release. If you are using the cache, and at
|
||||||
|
some point `config.cache' contains results you don't want to keep, you
|
||||||
|
may remove or edit it.
|
||||||
|
|
||||||
|
The file `configure.ac' (or `configure.in') is used to create
|
||||||
|
`configure' by a program called `autoconf'. You need `configure.ac' if
|
||||||
|
you want to change it or regenerate `configure' using a newer version
|
||||||
|
of `autoconf'.
|
||||||
|
|
||||||
|
The simplest way to compile this package is:
|
||||||
|
|
||||||
|
1. `cd' to the directory containing the package's source code and type
|
||||||
|
`./configure' to configure the package for your system.
|
||||||
|
|
||||||
|
Running `configure' might take a while. While running, it prints
|
||||||
|
some messages telling which features it is checking for.
|
||||||
|
|
||||||
|
2. Type `make' to compile the package.
|
||||||
|
|
||||||
|
3. Optionally, type `make check' to run any self-tests that come with
|
||||||
|
the package, generally using the just-built uninstalled binaries.
|
||||||
|
|
||||||
|
4. Type `make install' to install the programs and any data files and
|
||||||
|
documentation. When installing into a prefix owned by root, it is
|
||||||
|
recommended that the package be configured and built as a regular
|
||||||
|
user, and only the `make install' phase executed with root
|
||||||
|
privileges.
|
||||||
|
|
||||||
|
5. Optionally, type `make installcheck' to repeat any self-tests, but
|
||||||
|
this time using the binaries in their final installed location.
|
||||||
|
This target does not install anything. Running this target as a
|
||||||
|
regular user, particularly if the prior `make install' required
|
||||||
|
root privileges, verifies that the installation completed
|
||||||
|
correctly.
|
||||||
|
|
||||||
|
6. You can remove the program binaries and object files from the
|
||||||
|
source code directory by typing `make clean'. To also remove the
|
||||||
|
files that `configure' created (so you can compile the package for
|
||||||
|
a different kind of computer), type `make distclean'. There is
|
||||||
|
also a `make maintainer-clean' target, but that is intended mainly
|
||||||
|
for the package's developers. If you use it, you may have to get
|
||||||
|
all sorts of other programs in order to regenerate files that came
|
||||||
|
with the distribution.
|
||||||
|
|
||||||
|
7. Often, you can also type `make uninstall' to remove the installed
|
||||||
|
files again. In practice, not all packages have tested that
|
||||||
|
uninstallation works correctly, even though it is required by the
|
||||||
|
GNU Coding Standards.
|
||||||
|
|
||||||
|
8. Some packages, particularly those that use Automake, provide `make
|
||||||
|
distcheck', which can by used by developers to test that all other
|
||||||
|
targets like `make install' and `make uninstall' work correctly.
|
||||||
|
This target is generally not run by end users.
|
||||||
|
|
||||||
|
Compilers and Options
|
||||||
|
=====================
|
||||||
|
|
||||||
|
Some systems require unusual options for compilation or linking that
|
||||||
|
the `configure' script does not know about. Run `./configure --help'
|
||||||
|
for details on some of the pertinent environment variables.
|
||||||
|
|
||||||
|
You can give `configure' initial values for configuration parameters
|
||||||
|
by setting variables in the command line or in the environment. Here
|
||||||
|
is an example:
|
||||||
|
|
||||||
|
./configure CC=c99 CFLAGS=-g LIBS=-lposix
|
||||||
|
|
||||||
|
*Note Defining Variables::, for more details.
|
||||||
|
|
||||||
|
Compiling For Multiple Architectures
|
||||||
|
====================================
|
||||||
|
|
||||||
|
You can compile the package for more than one kind of computer at the
|
||||||
|
same time, by placing the object files for each architecture in their
|
||||||
|
own directory. To do this, you can use GNU `make'. `cd' to the
|
||||||
|
directory where you want the object files and executables to go and run
|
||||||
|
the `configure' script. `configure' automatically checks for the
|
||||||
|
source code in the directory that `configure' is in and in `..'. This
|
||||||
|
is known as a "VPATH" build.
|
||||||
|
|
||||||
|
With a non-GNU `make', it is safer to compile the package for one
|
||||||
|
architecture at a time in the source code directory. After you have
|
||||||
|
installed the package for one architecture, use `make distclean' before
|
||||||
|
reconfiguring for another architecture.
|
||||||
|
|
||||||
|
On MacOS X 10.5 and later systems, you can create libraries and
|
||||||
|
executables that work on multiple system types--known as "fat" or
|
||||||
|
"universal" binaries--by specifying multiple `-arch' options to the
|
||||||
|
compiler but only a single `-arch' option to the preprocessor. Like
|
||||||
|
this:
|
||||||
|
|
||||||
|
./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
|
||||||
|
CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
|
||||||
|
CPP="gcc -E" CXXCPP="g++ -E"
|
||||||
|
|
||||||
|
This is not guaranteed to produce working output in all cases, you
|
||||||
|
may have to build one architecture at a time and combine the results
|
||||||
|
using the `lipo' tool if you have problems.
|
||||||
|
|
||||||
|
Installation Names
|
||||||
|
==================
|
||||||
|
|
||||||
|
By default, `make install' installs the package's commands under
|
||||||
|
`/usr/local/bin', include files under `/usr/local/include', etc. You
|
||||||
|
can specify an installation prefix other than `/usr/local' by giving
|
||||||
|
`configure' the option `--prefix=PREFIX', where PREFIX must be an
|
||||||
|
absolute file name.
|
||||||
|
|
||||||
|
You can specify separate installation prefixes for
|
||||||
|
architecture-specific files and architecture-independent files. If you
|
||||||
|
pass the option `--exec-prefix=PREFIX' to `configure', the package uses
|
||||||
|
PREFIX as the prefix for installing programs and libraries.
|
||||||
|
Documentation and other data files still use the regular prefix.
|
||||||
|
|
||||||
|
In addition, if you use an unusual directory layout you can give
|
||||||
|
options like `--bindir=DIR' to specify different values for particular
|
||||||
|
kinds of files. Run `configure --help' for a list of the directories
|
||||||
|
you can set and what kinds of files go in them. In general, the
|
||||||
|
default for these options is expressed in terms of `${prefix}', so that
|
||||||
|
specifying just `--prefix' will affect all of the other directory
|
||||||
|
specifications that were not explicitly provided.
|
||||||
|
|
||||||
|
The most portable way to affect installation locations is to pass the
|
||||||
|
correct locations to `configure'; however, many packages provide one or
|
||||||
|
both of the following shortcuts of passing variable assignments to the
|
||||||
|
`make install' command line to change installation locations without
|
||||||
|
having to reconfigure or recompile.
|
||||||
|
|
||||||
|
The first method involves providing an override variable for each
|
||||||
|
affected directory. For example, `make install
|
||||||
|
prefix=/alternate/directory' will choose an alternate location for all
|
||||||
|
directory configuration variables that were expressed in terms of
|
||||||
|
`${prefix}'. Any directories that were specified during `configure',
|
||||||
|
but not in terms of `${prefix}', must each be overridden at install
|
||||||
|
time for the entire installation to be relocated. The approach of
|
||||||
|
makefile variable overrides for each directory variable is required by
|
||||||
|
the GNU Coding Standards, and ideally causes no recompilation.
|
||||||
|
However, some platforms have known limitations with the semantics of
|
||||||
|
shared libraries that end up requiring recompilation when using this
|
||||||
|
method, particularly noticeable in packages that use GNU Libtool.
|
||||||
|
|
||||||
|
The second method involves providing the `DESTDIR' variable. For
|
||||||
|
example, `make install DESTDIR=/alternate/directory' will prepend
|
||||||
|
`/alternate/directory' before all installation names. The approach of
|
||||||
|
`DESTDIR' overrides is not required by the GNU Coding Standards, and
|
||||||
|
does not work on platforms that have drive letters. On the other hand,
|
||||||
|
it does better at avoiding recompilation issues, and works well even
|
||||||
|
when some directory options were not specified in terms of `${prefix}'
|
||||||
|
at `configure' time.
|
||||||
|
|
||||||
|
Optional Features
|
||||||
|
=================
|
||||||
|
|
||||||
|
If the package supports it, you can cause programs to be installed
|
||||||
|
with an extra prefix or suffix on their names by giving `configure' the
|
||||||
|
option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
|
||||||
|
|
||||||
|
Some packages pay attention to `--enable-FEATURE' options to
|
||||||
|
`configure', where FEATURE indicates an optional part of the package.
|
||||||
|
They may also pay attention to `--with-PACKAGE' options, where PACKAGE
|
||||||
|
is something like `gnu-as' or `x' (for the X Window System). The
|
||||||
|
`README' should mention any `--enable-' and `--with-' options that the
|
||||||
|
package recognizes.
|
||||||
|
|
||||||
|
For packages that use the X Window System, `configure' can usually
|
||||||
|
find the X include and library files automatically, but if it doesn't,
|
||||||
|
you can use the `configure' options `--x-includes=DIR' and
|
||||||
|
`--x-libraries=DIR' to specify their locations.
|
||||||
|
|
||||||
|
Some packages offer the ability to configure how verbose the
|
||||||
|
execution of `make' will be. For these packages, running `./configure
|
||||||
|
--enable-silent-rules' sets the default to minimal output, which can be
|
||||||
|
overridden with `make V=1'; while running `./configure
|
||||||
|
--disable-silent-rules' sets the default to verbose, which can be
|
||||||
|
overridden with `make V=0'.
|
||||||
|
|
||||||
|
Particular systems
|
||||||
|
==================
|
||||||
|
|
||||||
|
On HP-UX, the default C compiler is not ANSI C compatible. If GNU
|
||||||
|
CC is not installed, it is recommended to use the following options in
|
||||||
|
order to use an ANSI C compiler:
|
||||||
|
|
||||||
|
./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
|
||||||
|
|
||||||
|
and if that doesn't work, install pre-built binaries of GCC for HP-UX.
|
||||||
|
|
||||||
|
HP-UX `make' updates targets which have the same time stamps as
|
||||||
|
their prerequisites, which makes it generally unusable when shipped
|
||||||
|
generated files such as `configure' are involved. Use GNU `make'
|
||||||
|
instead.
|
||||||
|
|
||||||
|
On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
|
||||||
|
parse its `<wchar.h>' header file. The option `-nodtk' can be used as
|
||||||
|
a workaround. If GNU CC is not installed, it is therefore recommended
|
||||||
|
to try
|
||||||
|
|
||||||
|
./configure CC="cc"
|
||||||
|
|
||||||
|
and if that doesn't work, try
|
||||||
|
|
||||||
|
./configure CC="cc -nodtk"
|
||||||
|
|
||||||
|
On Solaris, don't put `/usr/ucb' early in your `PATH'. This
|
||||||
|
directory contains several dysfunctional programs; working variants of
|
||||||
|
these programs are available in `/usr/bin'. So, if you need `/usr/ucb'
|
||||||
|
in your `PATH', put it _after_ `/usr/bin'.
|
||||||
|
|
||||||
|
On Haiku, software installed for all users goes in `/boot/common',
|
||||||
|
not `/usr/local'. It is recommended to use the following options:
|
||||||
|
|
||||||
|
./configure --prefix=/boot/common
|
||||||
|
|
||||||
|
Specifying the System Type
|
||||||
|
==========================
|
||||||
|
|
||||||
|
There may be some features `configure' cannot figure out
|
||||||
|
automatically, but needs to determine by the type of machine the package
|
||||||
|
will run on. Usually, assuming the package is built to be run on the
|
||||||
|
_same_ architectures, `configure' can figure that out, but if it prints
|
||||||
|
a message saying it cannot guess the machine type, give it the
|
||||||
|
`--build=TYPE' option. TYPE can either be a short name for the system
|
||||||
|
type, such as `sun4', or a canonical name which has the form:
|
||||||
|
|
||||||
|
CPU-COMPANY-SYSTEM
|
||||||
|
|
||||||
|
where SYSTEM can have one of these forms:
|
||||||
|
|
||||||
|
OS
|
||||||
|
KERNEL-OS
|
||||||
|
|
||||||
|
See the file `config.sub' for the possible values of each field. If
|
||||||
|
`config.sub' isn't included in this package, then this package doesn't
|
||||||
|
need to know the machine type.
|
||||||
|
|
||||||
|
If you are _building_ compiler tools for cross-compiling, you should
|
||||||
|
use the option `--target=TYPE' to select the type of system they will
|
||||||
|
produce code for.
|
||||||
|
|
||||||
|
If you want to _use_ a cross compiler, that generates code for a
|
||||||
|
platform different from the build platform, you should specify the
|
||||||
|
"host" platform (i.e., that on which the generated programs will
|
||||||
|
eventually be run) with `--host=TYPE'.
|
||||||
|
|
||||||
|
Sharing Defaults
|
||||||
|
================
|
||||||
|
|
||||||
|
If you want to set default values for `configure' scripts to share,
|
||||||
|
you can create a site shell script called `config.site' that gives
|
||||||
|
default values for variables like `CC', `cache_file', and `prefix'.
|
||||||
|
`configure' looks for `PREFIX/share/config.site' if it exists, then
|
||||||
|
`PREFIX/etc/config.site' if it exists. Or, you can set the
|
||||||
|
`CONFIG_SITE' environment variable to the location of the site script.
|
||||||
|
A warning: not all `configure' scripts look for a site script.
|
||||||
|
|
||||||
|
Defining Variables
|
||||||
|
==================
|
||||||
|
|
||||||
|
Variables not defined in a site shell script can be set in the
|
||||||
|
environment passed to `configure'. However, some packages may run
|
||||||
|
configure again during the build, and the customized values of these
|
||||||
|
variables may be lost. In order to avoid this problem, you should set
|
||||||
|
them in the `configure' command line, using `VAR=value'. For example:
|
||||||
|
|
||||||
|
./configure CC=/usr/local2/bin/gcc
|
||||||
|
|
||||||
|
causes the specified `gcc' to be used as the C compiler (unless it is
|
||||||
|
overridden in the site shell script).
|
||||||
|
|
||||||
|
Unfortunately, this technique does not work for `CONFIG_SHELL' due to
|
||||||
|
an Autoconf limitation. Until the limitation is lifted, you can use
|
||||||
|
this workaround:
|
||||||
|
|
||||||
|
CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
|
||||||
|
|
||||||
|
`configure' Invocation
|
||||||
|
======================
|
||||||
|
|
||||||
|
`configure' recognizes the following options to control how it
|
||||||
|
operates.
|
||||||
|
|
||||||
|
`--help'
|
||||||
|
`-h'
|
||||||
|
Print a summary of all of the options to `configure', and exit.
|
||||||
|
|
||||||
|
`--help=short'
|
||||||
|
`--help=recursive'
|
||||||
|
Print a summary of the options unique to this package's
|
||||||
|
`configure', and exit. The `short' variant lists options used
|
||||||
|
only in the top level, while the `recursive' variant lists options
|
||||||
|
also present in any nested packages.
|
||||||
|
|
||||||
|
`--version'
|
||||||
|
`-V'
|
||||||
|
Print the version of Autoconf used to generate the `configure'
|
||||||
|
script, and exit.
|
||||||
|
|
||||||
|
`--cache-file=FILE'
|
||||||
|
Enable the cache: use and save the results of the tests in FILE,
|
||||||
|
traditionally `config.cache'. FILE defaults to `/dev/null' to
|
||||||
|
disable caching.
|
||||||
|
|
||||||
|
`--config-cache'
|
||||||
|
`-C'
|
||||||
|
Alias for `--cache-file=config.cache'.
|
||||||
|
|
||||||
|
`--quiet'
|
||||||
|
`--silent'
|
||||||
|
`-q'
|
||||||
|
Do not print messages saying which checks are being made. To
|
||||||
|
suppress all normal output, redirect it to `/dev/null' (any error
|
||||||
|
messages will still be shown).
|
||||||
|
|
||||||
|
`--srcdir=DIR'
|
||||||
|
Look for the package's source code in directory DIR. Usually
|
||||||
|
`configure' can determine that directory automatically.
|
||||||
|
|
||||||
|
`--prefix=DIR'
|
||||||
|
Use DIR as the installation prefix. *note Installation Names::
|
||||||
|
for more details, including other options available for fine-tuning
|
||||||
|
the installation locations.
|
||||||
|
|
||||||
|
`--no-create'
|
||||||
|
`-n'
|
||||||
|
Run the configure checks, but stop before creating any output
|
||||||
|
files.
|
||||||
|
|
||||||
|
`configure' also accepts some other, not widely useful, options. Run
|
||||||
|
`configure --help' for more details.
|
1900
preprocess/m4ri-20140914/Makefile
Normal file
1900
preprocess/m4ri-20140914/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
113
preprocess/m4ri-20140914/Makefile.am
Normal file
113
preprocess/m4ri-20140914/Makefile.am
Normal file
@ -0,0 +1,113 @@
|
|||||||
|
AUTOMAKE_OPTIONS = foreign subdir-objects
|
||||||
|
ACLOCAL_AMFLAGS = -I m4
|
||||||
|
|
||||||
|
AM_CFLAGS=${SIMD_CFLAGS} ${OPENMP_CFLAGS} ${DEBUG_FLAGS}
|
||||||
|
|
||||||
|
lib_LTLIBRARIES = libm4ri.la
|
||||||
|
|
||||||
|
libm4ri_la_SOURCES = \
|
||||||
|
m4ri/brilliantrussian.c \
|
||||||
|
m4ri/misc.c \
|
||||||
|
m4ri/mzd.c \
|
||||||
|
m4ri/graycode.c \
|
||||||
|
m4ri/strassen.c \
|
||||||
|
m4ri/mzp.c \
|
||||||
|
m4ri/triangular.c \
|
||||||
|
m4ri/triangular_russian.c \
|
||||||
|
m4ri/ple.c \
|
||||||
|
m4ri/ple_russian.c \
|
||||||
|
m4ri/solve.c \
|
||||||
|
m4ri/echelonform.c \
|
||||||
|
m4ri/mmc.c \
|
||||||
|
m4ri/debug_dump.c \
|
||||||
|
m4ri/io.c \
|
||||||
|
m4ri/djb.c \
|
||||||
|
m4ri/mp.c
|
||||||
|
|
||||||
|
BUILT_SOURCES = m4ri/m4ri_config.h
|
||||||
|
|
||||||
|
pkgincludesubdir = $(includedir)/m4ri
|
||||||
|
pkgincludesub_HEADERS = m4ri/m4ri.h \
|
||||||
|
m4ri/brilliantrussian.h \
|
||||||
|
m4ri/misc.h \
|
||||||
|
m4ri/mzd.h \
|
||||||
|
m4ri/graycode.h \
|
||||||
|
m4ri/strassen.h \
|
||||||
|
m4ri/parity.h \
|
||||||
|
m4ri/mzp.h \
|
||||||
|
m4ri/triangular.h \
|
||||||
|
m4ri/triangular_russian.h \
|
||||||
|
m4ri/ple.h \
|
||||||
|
m4ri/ple_russian.h \
|
||||||
|
m4ri/ple_russian_template.h \
|
||||||
|
m4ri/solve.h \
|
||||||
|
m4ri/echelonform.h \
|
||||||
|
m4ri/xor.h \
|
||||||
|
m4ri/xor_template.h \
|
||||||
|
m4ri/mmc.h \
|
||||||
|
m4ri/debug_dump.h \
|
||||||
|
m4ri/io.h \
|
||||||
|
m4ri/djb.h \
|
||||||
|
m4ri/mp.h
|
||||||
|
|
||||||
|
nodist_pkgincludesub_HEADERS = m4ri/m4ri_config.h
|
||||||
|
|
||||||
|
EXTRA_DIST=m4ri/Doxyfile
|
||||||
|
|
||||||
|
pkgconfigdir = $(libdir)/pkgconfig
|
||||||
|
pkgconfig_DATA = m4ri.pc
|
||||||
|
|
||||||
|
libm4ri_la_LDFLAGS = -release 0.0.$(RELEASE) -no-undefined
|
||||||
|
libm4ri_la_LIBADD = $(LIBPNG_LIBADD)
|
||||||
|
|
||||||
|
check_PROGRAMS=test_multiplication test_elimination test_trsm test_ple test_solve test_kernel test_random test_smallops test_transpose test_colswap test_invert test_misc
|
||||||
|
test_multiplication_SOURCES=testsuite/test_multiplication.c
|
||||||
|
test_multiplication_LDFLAGS=-lm4ri -lm
|
||||||
|
test_multiplication_CFLAGS=$(AM_CFLAGS)
|
||||||
|
|
||||||
|
test_elimination_SOURCES=testsuite/test_elimination.c
|
||||||
|
test_elimination_LDFLAGS=-lm4ri -lm
|
||||||
|
test_elimination_CFLAGS=$(AM_CFLAGS)
|
||||||
|
|
||||||
|
test_trsm_SOURCES=testsuite/test_trsm.c
|
||||||
|
test_trsm_LDFLAGS=-lm4ri -lm
|
||||||
|
test_trsm_CFLAGS=$(AM_CFLAGS)
|
||||||
|
|
||||||
|
test_ple_SOURCES=testsuite/test_ple.c
|
||||||
|
test_ple_LDFLAGS=-lm4ri -lm
|
||||||
|
test_ple_CFLAGS=$(AM_CFLAGS)
|
||||||
|
|
||||||
|
test_solve_SOURCES=testsuite/test_solve.c
|
||||||
|
test_solve_LDFLAGS=-lm4ri -lm
|
||||||
|
test_solve_CFLAGS=$(AM_CFLAGS)
|
||||||
|
|
||||||
|
test_kernel_SOURCES=testsuite/test_kernel.c
|
||||||
|
test_kernel_LDFLAGS=-lm4ri -lm
|
||||||
|
test_kernel_CFLAGS=$(AM_CFLAGS)
|
||||||
|
|
||||||
|
test_random_SOURCES=testsuite/test_random.c
|
||||||
|
test_random_LDFLAGS=-lm4ri -lm
|
||||||
|
test_random_CFLAGS=$(AM_CFLAGS)
|
||||||
|
|
||||||
|
test_smallops_SOURCES=testsuite/test_smallops.c testsuite/testing.c testsuite/testing.h
|
||||||
|
test_smallops_LDFLAGS=-lm4ri -lm
|
||||||
|
test_smallops_CFLAGS=$(AM_CFLAGS)
|
||||||
|
|
||||||
|
test_transpose_SOURCES=testsuite/test_transpose.c
|
||||||
|
test_transpose_LDFLAGS=-lm4ri -lm
|
||||||
|
test_transpose_CFLAGS=$(AM_CFLAGS)
|
||||||
|
|
||||||
|
test_colswap_SOURCES=testsuite/test_colswap.c
|
||||||
|
test_colswap_LDFLAGS=-lm4ri -lm
|
||||||
|
test_colswap_CFLAGS=$(AM_CFLAGS)
|
||||||
|
|
||||||
|
test_invert_SOURCES=testsuite/test_invert.c
|
||||||
|
test_invert_LDFLAGS=-lm4ri -lm
|
||||||
|
test_invert_CFLAGS=$(AM_CFLAGS)
|
||||||
|
|
||||||
|
test_misc_SOURCES=testsuite/test_misc.c
|
||||||
|
test_misc_LDFLAGS=-lm4ri -lm
|
||||||
|
test_misc_CFLAGS=$(AM_CFLAGS)
|
||||||
|
|
||||||
|
TESTS = test_multiplication test_elimination test_trsm test_ple test_solve test_kernel test_random test_smallops test_transpose test_colswap test_invert test_misc
|
||||||
|
|
1900
preprocess/m4ri-20140914/Makefile.in
Normal file
1900
preprocess/m4ri-20140914/Makefile.in
Normal file
File diff suppressed because it is too large
Load Diff
0
preprocess/m4ri-20140914/NEWS
Normal file
0
preprocess/m4ri-20140914/NEWS
Normal file
1202
preprocess/m4ri-20140914/aclocal.m4
vendored
Normal file
1202
preprocess/m4ri-20140914/aclocal.m4
vendored
Normal file
File diff suppressed because it is too large
Load Diff
347
preprocess/m4ri-20140914/compile
Executable file
347
preprocess/m4ri-20140914/compile
Executable file
@ -0,0 +1,347 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
# Wrapper for compilers which do not understand '-c -o'.
|
||||||
|
|
||||||
|
scriptversion=2012-10-14.11; # UTC
|
||||||
|
|
||||||
|
# Copyright (C) 1999-2013 Free Software Foundation, Inc.
|
||||||
|
# Written by Tom Tromey <tromey@cygnus.com>.
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
# As a special exception to the GNU General Public License, if you
|
||||||
|
# distribute this file as part of a program that contains a
|
||||||
|
# configuration script generated by Autoconf, you may include it under
|
||||||
|
# the same distribution terms that you use for the rest of that program.
|
||||||
|
|
||||||
|
# This file is maintained in Automake, please report
|
||||||
|
# bugs to <bug-automake@gnu.org> or send patches to
|
||||||
|
# <automake-patches@gnu.org>.
|
||||||
|
|
||||||
|
nl='
|
||||||
|
'
|
||||||
|
|
||||||
|
# We need space, tab and new line, in precisely that order. Quoting is
|
||||||
|
# there to prevent tools from complaining about whitespace usage.
|
||||||
|
IFS=" "" $nl"
|
||||||
|
|
||||||
|
file_conv=
|
||||||
|
|
||||||
|
# func_file_conv build_file lazy
|
||||||
|
# Convert a $build file to $host form and store it in $file
|
||||||
|
# Currently only supports Windows hosts. If the determined conversion
|
||||||
|
# type is listed in (the comma separated) LAZY, no conversion will
|
||||||
|
# take place.
|
||||||
|
func_file_conv ()
|
||||||
|
{
|
||||||
|
file=$1
|
||||||
|
case $file in
|
||||||
|
/ | /[!/]*) # absolute file, and not a UNC file
|
||||||
|
if test -z "$file_conv"; then
|
||||||
|
# lazily determine how to convert abs files
|
||||||
|
case `uname -s` in
|
||||||
|
MINGW*)
|
||||||
|
file_conv=mingw
|
||||||
|
;;
|
||||||
|
CYGWIN*)
|
||||||
|
file_conv=cygwin
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
file_conv=wine
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
case $file_conv/,$2, in
|
||||||
|
*,$file_conv,*)
|
||||||
|
;;
|
||||||
|
mingw/*)
|
||||||
|
file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
|
||||||
|
;;
|
||||||
|
cygwin/*)
|
||||||
|
file=`cygpath -m "$file" || echo "$file"`
|
||||||
|
;;
|
||||||
|
wine/*)
|
||||||
|
file=`winepath -w "$file" || echo "$file"`
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
# func_cl_dashL linkdir
|
||||||
|
# Make cl look for libraries in LINKDIR
|
||||||
|
func_cl_dashL ()
|
||||||
|
{
|
||||||
|
func_file_conv "$1"
|
||||||
|
if test -z "$lib_path"; then
|
||||||
|
lib_path=$file
|
||||||
|
else
|
||||||
|
lib_path="$lib_path;$file"
|
||||||
|
fi
|
||||||
|
linker_opts="$linker_opts -LIBPATH:$file"
|
||||||
|
}
|
||||||
|
|
||||||
|
# func_cl_dashl library
|
||||||
|
# Do a library search-path lookup for cl
|
||||||
|
func_cl_dashl ()
|
||||||
|
{
|
||||||
|
lib=$1
|
||||||
|
found=no
|
||||||
|
save_IFS=$IFS
|
||||||
|
IFS=';'
|
||||||
|
for dir in $lib_path $LIB
|
||||||
|
do
|
||||||
|
IFS=$save_IFS
|
||||||
|
if $shared && test -f "$dir/$lib.dll.lib"; then
|
||||||
|
found=yes
|
||||||
|
lib=$dir/$lib.dll.lib
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
if test -f "$dir/$lib.lib"; then
|
||||||
|
found=yes
|
||||||
|
lib=$dir/$lib.lib
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
if test -f "$dir/lib$lib.a"; then
|
||||||
|
found=yes
|
||||||
|
lib=$dir/lib$lib.a
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
IFS=$save_IFS
|
||||||
|
|
||||||
|
if test "$found" != yes; then
|
||||||
|
lib=$lib.lib
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# func_cl_wrapper cl arg...
|
||||||
|
# Adjust compile command to suit cl
|
||||||
|
func_cl_wrapper ()
|
||||||
|
{
|
||||||
|
# Assume a capable shell
|
||||||
|
lib_path=
|
||||||
|
shared=:
|
||||||
|
linker_opts=
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
if test -n "$eat"; then
|
||||||
|
eat=
|
||||||
|
else
|
||||||
|
case $1 in
|
||||||
|
-o)
|
||||||
|
# configure might choose to run compile as 'compile cc -o foo foo.c'.
|
||||||
|
eat=1
|
||||||
|
case $2 in
|
||||||
|
*.o | *.[oO][bB][jJ])
|
||||||
|
func_file_conv "$2"
|
||||||
|
set x "$@" -Fo"$file"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
func_file_conv "$2"
|
||||||
|
set x "$@" -Fe"$file"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
-I)
|
||||||
|
eat=1
|
||||||
|
func_file_conv "$2" mingw
|
||||||
|
set x "$@" -I"$file"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
-I*)
|
||||||
|
func_file_conv "${1#-I}" mingw
|
||||||
|
set x "$@" -I"$file"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
-l)
|
||||||
|
eat=1
|
||||||
|
func_cl_dashl "$2"
|
||||||
|
set x "$@" "$lib"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
-l*)
|
||||||
|
func_cl_dashl "${1#-l}"
|
||||||
|
set x "$@" "$lib"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
-L)
|
||||||
|
eat=1
|
||||||
|
func_cl_dashL "$2"
|
||||||
|
;;
|
||||||
|
-L*)
|
||||||
|
func_cl_dashL "${1#-L}"
|
||||||
|
;;
|
||||||
|
-static)
|
||||||
|
shared=false
|
||||||
|
;;
|
||||||
|
-Wl,*)
|
||||||
|
arg=${1#-Wl,}
|
||||||
|
save_ifs="$IFS"; IFS=','
|
||||||
|
for flag in $arg; do
|
||||||
|
IFS="$save_ifs"
|
||||||
|
linker_opts="$linker_opts $flag"
|
||||||
|
done
|
||||||
|
IFS="$save_ifs"
|
||||||
|
;;
|
||||||
|
-Xlinker)
|
||||||
|
eat=1
|
||||||
|
linker_opts="$linker_opts $2"
|
||||||
|
;;
|
||||||
|
-*)
|
||||||
|
set x "$@" "$1"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*.cc | *.CC | *.cxx | *.CXX | *.[cC]++)
|
||||||
|
func_file_conv "$1"
|
||||||
|
set x "$@" -Tp"$file"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO])
|
||||||
|
func_file_conv "$1" mingw
|
||||||
|
set x "$@" "$file"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set x "$@" "$1"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
if test -n "$linker_opts"; then
|
||||||
|
linker_opts="-link$linker_opts"
|
||||||
|
fi
|
||||||
|
exec "$@" $linker_opts
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
eat=
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
'')
|
||||||
|
echo "$0: No command. Try '$0 --help' for more information." 1>&2
|
||||||
|
exit 1;
|
||||||
|
;;
|
||||||
|
-h | --h*)
|
||||||
|
cat <<\EOF
|
||||||
|
Usage: compile [--help] [--version] PROGRAM [ARGS]
|
||||||
|
|
||||||
|
Wrapper for compilers which do not understand '-c -o'.
|
||||||
|
Remove '-o dest.o' from ARGS, run PROGRAM with the remaining
|
||||||
|
arguments, and rename the output as expected.
|
||||||
|
|
||||||
|
If you are trying to build a whole package this is not the
|
||||||
|
right script to run: please start by reading the file 'INSTALL'.
|
||||||
|
|
||||||
|
Report bugs to <bug-automake@gnu.org>.
|
||||||
|
EOF
|
||||||
|
exit $?
|
||||||
|
;;
|
||||||
|
-v | --v*)
|
||||||
|
echo "compile $scriptversion"
|
||||||
|
exit $?
|
||||||
|
;;
|
||||||
|
cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
|
||||||
|
func_cl_wrapper "$@" # Doesn't return...
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
ofile=
|
||||||
|
cfile=
|
||||||
|
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
if test -n "$eat"; then
|
||||||
|
eat=
|
||||||
|
else
|
||||||
|
case $1 in
|
||||||
|
-o)
|
||||||
|
# configure might choose to run compile as 'compile cc -o foo foo.c'.
|
||||||
|
# So we strip '-o arg' only if arg is an object.
|
||||||
|
eat=1
|
||||||
|
case $2 in
|
||||||
|
*.o | *.obj)
|
||||||
|
ofile=$2
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set x "$@" -o "$2"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
*.c)
|
||||||
|
cfile=$1
|
||||||
|
set x "$@" "$1"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set x "$@" "$1"
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
if test -z "$ofile" || test -z "$cfile"; then
|
||||||
|
# If no '-o' option was seen then we might have been invoked from a
|
||||||
|
# pattern rule where we don't need one. That is ok -- this is a
|
||||||
|
# normal compilation that the losing compiler can handle. If no
|
||||||
|
# '.c' file was seen then we are probably linking. That is also
|
||||||
|
# ok.
|
||||||
|
exec "$@"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Name of file we expect compiler to create.
|
||||||
|
cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'`
|
||||||
|
|
||||||
|
# Create the lock directory.
|
||||||
|
# Note: use '[/\\:.-]' here to ensure that we don't use the same name
|
||||||
|
# that we are using for the .o file. Also, base the name on the expected
|
||||||
|
# object file name, since that is what matters with a parallel build.
|
||||||
|
lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d
|
||||||
|
while true; do
|
||||||
|
if mkdir "$lockdir" >/dev/null 2>&1; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
# FIXME: race condition here if user kills between mkdir and trap.
|
||||||
|
trap "rmdir '$lockdir'; exit 1" 1 2 15
|
||||||
|
|
||||||
|
# Run the compile.
|
||||||
|
"$@"
|
||||||
|
ret=$?
|
||||||
|
|
||||||
|
if test -f "$cofile"; then
|
||||||
|
test "$cofile" = "$ofile" || mv "$cofile" "$ofile"
|
||||||
|
elif test -f "${cofile}bj"; then
|
||||||
|
test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
|
||||||
|
fi
|
||||||
|
|
||||||
|
rmdir "$lockdir"
|
||||||
|
exit $ret
|
||||||
|
|
||||||
|
# Local Variables:
|
||||||
|
# mode: shell-script
|
||||||
|
# sh-indentation: 2
|
||||||
|
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||||
|
# time-stamp-start: "scriptversion="
|
||||||
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||||
|
# time-stamp-time-zone: "UTC"
|
||||||
|
# time-stamp-end: "; # UTC"
|
||||||
|
# End:
|
1420
preprocess/m4ri-20140914/config.guess
vendored
Executable file
1420
preprocess/m4ri-20140914/config.guess
vendored
Executable file
File diff suppressed because it is too large
Load Diff
1033
preprocess/m4ri-20140914/config.log
Normal file
1033
preprocess/m4ri-20140914/config.log
Normal file
File diff suppressed because it is too large
Load Diff
2081
preprocess/m4ri-20140914/config.status
Executable file
2081
preprocess/m4ri-20140914/config.status
Executable file
File diff suppressed because it is too large
Load Diff
1794
preprocess/m4ri-20140914/config.sub
vendored
Executable file
1794
preprocess/m4ri-20140914/config.sub
vendored
Executable file
File diff suppressed because it is too large
Load Diff
16103
preprocess/m4ri-20140914/configure
vendored
Executable file
16103
preprocess/m4ri-20140914/configure
vendored
Executable file
File diff suppressed because it is too large
Load Diff
244
preprocess/m4ri-20140914/configure.ac
Normal file
244
preprocess/m4ri-20140914/configure.ac
Normal file
@ -0,0 +1,244 @@
|
|||||||
|
AC_INIT(m4ri,20140914)
|
||||||
|
|
||||||
|
AC_CANONICAL_HOST
|
||||||
|
|
||||||
|
AC_CONFIG_SRCDIR(m4ri/brilliantrussian.c)
|
||||||
|
|
||||||
|
AM_INIT_AUTOMAKE
|
||||||
|
|
||||||
|
dnl Include maintainer mode targets.
|
||||||
|
AM_MAINTAINER_MODE
|
||||||
|
|
||||||
|
dnl Needed when reconfiguring with 'autoreconf -i -s'
|
||||||
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
|
|
||||||
|
dnl Compiling with per-target flags (test_elimination.c) requires AM_PROG_CC_C_O.
|
||||||
|
AM_PROG_CC_C_O
|
||||||
|
|
||||||
|
AC_PROG_LIBTOOL
|
||||||
|
|
||||||
|
AC_PROG_INSTALL
|
||||||
|
|
||||||
|
AC_CONFIG_HEADERS(m4ri/config.h)
|
||||||
|
|
||||||
|
AC_PROG_CC_C99()
|
||||||
|
if test "$ac_cv_prog_cc_c99" = "no"; then
|
||||||
|
AC_MSG_ERROR([C99 support is required but not found.])
|
||||||
|
fi
|
||||||
|
|
||||||
|
# SSE2 support
|
||||||
|
AC_ARG_ENABLE([sse2],
|
||||||
|
AS_HELP_STRING([--disable-sse2], [don't use SSE2 instruction set.]),
|
||||||
|
, [if test "$m4ri_wrapword" = "yes"; then enable_sse2="no"; else enable_sse2="yes"; fi])
|
||||||
|
|
||||||
|
AS_IF([test "x$enable_sse2" != "xno"], [
|
||||||
|
if test "$m4ri_wrapword" = "yes"; then
|
||||||
|
AC_MSG_ERROR([SSE2 cannot be supported when wrapping word in a C++ class.])
|
||||||
|
fi
|
||||||
|
case $host_cpu in i[[3456]]86*|x86_64*)
|
||||||
|
AX_EXT()
|
||||||
|
esac
|
||||||
|
])
|
||||||
|
if test x"$ax_cv_have_sse2_ext" = x"yes"; then
|
||||||
|
M4RI_HAVE_SSE2=1
|
||||||
|
else
|
||||||
|
M4RI_HAVE_SSE2=0
|
||||||
|
fi
|
||||||
|
AC_SUBST(M4RI_HAVE_SSE2)
|
||||||
|
|
||||||
|
|
||||||
|
AC_ARG_WITH(papi,
|
||||||
|
AS_HELP_STRING([--with-papi@<:@=PATH@:>@], [The PAPI install prefix, if configure can't find it.]),
|
||||||
|
[m4ri_config_papi=$withval])
|
||||||
|
|
||||||
|
AC_ARG_WITH(cachesize,
|
||||||
|
AS_HELP_STRING([--with-cachesize@<:@=VALUE@:>@], [L1,L2 and L3 cache sizes in bytes, separated by a colon. Overrides cache tuning.]),[m4ri_config_cachesize=$withval])
|
||||||
|
|
||||||
|
AC_CHECK_HEADER([mm_malloc.h],AC_DEFINE(HAVE_MM_MALLOC,,[Support aligned allocations]),)
|
||||||
|
if test "$ac_cv_header_mm_malloc_h" = "yes"; then
|
||||||
|
M4RI_HAVE_MM_MALLOC=1
|
||||||
|
else
|
||||||
|
M4RI_HAVE_MM_MALLOC=0
|
||||||
|
fi
|
||||||
|
AC_SUBST(M4RI_HAVE_MM_MALLOC)
|
||||||
|
|
||||||
|
# Correctly working posix_memalign
|
||||||
|
AX_FUNC_POSIX_MEMALIGN
|
||||||
|
if test "$ax_cv_func_posix_memalign_works" = "yes"; then
|
||||||
|
M4RI_HAVE_POSIX_MEMALIGN=1
|
||||||
|
else
|
||||||
|
M4RI_HAVE_POSIX_MEMALIGN=0
|
||||||
|
fi
|
||||||
|
AC_SUBST(M4RI_HAVE_POSIX_MEMALIGN)
|
||||||
|
|
||||||
|
# OpenMP support
|
||||||
|
AC_ARG_ENABLE([openmp],
|
||||||
|
AS_HELP_STRING( [--enable-openmp],[add support for OpenMP multicore support.]))
|
||||||
|
|
||||||
|
AS_IF([test "x$enable_openmp" = "xyes"], [
|
||||||
|
AX_OPENMP()
|
||||||
|
])
|
||||||
|
AC_SUBST(OPENMP_CFLAGS)
|
||||||
|
if test -n "$OPENMP_CFLAGS"; then
|
||||||
|
M4RI_HAVE_OPENMP=1
|
||||||
|
else
|
||||||
|
M4RI_HAVE_OPENMP=0
|
||||||
|
fi
|
||||||
|
AC_SUBST(M4RI_HAVE_OPENMP)
|
||||||
|
|
||||||
|
# Debugging support
|
||||||
|
AC_ARG_ENABLE([debug],
|
||||||
|
AS_HELP_STRING([--enable-debug], [Enable assert() statements for debugging.]))
|
||||||
|
|
||||||
|
AC_ARG_ENABLE([debug-dump],
|
||||||
|
AS_HELP_STRING([--enable-debug-dump], [Dump output at exit of every function.]))
|
||||||
|
|
||||||
|
if test "x$enable_debug_dump" = "xyes"; then
|
||||||
|
M4RI_DEBUG_DUMP=1
|
||||||
|
else
|
||||||
|
M4RI_DEBUG_DUMP=0
|
||||||
|
fi
|
||||||
|
AC_SUBST(M4RI_DEBUG_DUMP)
|
||||||
|
|
||||||
|
AC_ARG_ENABLE([debug-mzd],
|
||||||
|
AS_HELP_STRING([--enable-debug-mzd], [Add consistency checks on matrix structures.]))
|
||||||
|
|
||||||
|
if test "x$enable_debug_mzd" = "xyes"; then
|
||||||
|
M4RI_DEBUG_MZD=1
|
||||||
|
else
|
||||||
|
M4RI_DEBUG_MZD=0
|
||||||
|
fi
|
||||||
|
AC_SUBST(M4RI_DEBUG_MZD)
|
||||||
|
|
||||||
|
if test "x$enable_debug" = x"yes"; then
|
||||||
|
DEBUG_FLAGS="-g"
|
||||||
|
AC_SUBST(DEBUG_FLAGS)
|
||||||
|
else
|
||||||
|
if test "x$enable_debug_mzd" != "xyes"; then
|
||||||
|
AC_DEFINE(NDEBUG,1,[Define whether debugging is enabled])
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For the testsuite. Detect if PAPI is installed. See http://icl.cs.utk.edu/papi/ .
|
||||||
|
|
||||||
|
if test -z "$m4ri_config_papi"; then
|
||||||
|
AC_CHECK_LIB(papi, PAPI_start_counters,
|
||||||
|
[
|
||||||
|
AX_GUESS_PATH_LIB(papi)
|
||||||
|
AX_GUESS_PATH_HEADER(papi.h)
|
||||||
|
if test -n "$LIBPAPI_PATH"; then
|
||||||
|
PAPI_LDFLAGS="-Wl,-rpath,$LIBPAPI_PATH"
|
||||||
|
PAPI_LIBS="-L$LIBPAPI_PATH -lpapi"
|
||||||
|
else
|
||||||
|
PAPI_LIBS="-lpapi"
|
||||||
|
if ! test -e "/usr/lib/libpapi.so"; then
|
||||||
|
AC_MSG_WARN([Could not find libpapi.so. Use --with-papi=<install_prefix> or set LD_LIBRARY_PATH correctly before running benchmark applications.])
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
if test -n "$PAPI_H_PATH"; then
|
||||||
|
PAPI_CFLAGS="-I$PAPI_H_PATH"
|
||||||
|
AC_DEFINE_UNQUOTED([HAVE_LIBPAPI], 1, [Define when libpapi is available.])
|
||||||
|
else
|
||||||
|
AC_MSG_WARN([Could not find papi.h; Use --with-papi=<install_prefix> or add -I<install_prefix>/include to either CPPFLAGS
|
||||||
|
or CFLAGS, or turn off papi all together by configuring with --without-papi.])
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test x"$m4ri_config_papi" != x"no" && test -n "$m4ri_config_papi"; then
|
||||||
|
LIBPAPI_PATH="`realpath -s $m4ri_config_papi/lib`"
|
||||||
|
PAPI_H_PATH="`realpath -s $m4ri_config_papi/include`"
|
||||||
|
PAPI_CFLAGS="-I$PAPI_H_PATH"
|
||||||
|
PAPI_LDFLAGS="-Wl,-rpath,$LIBPAPI_PATH"
|
||||||
|
PAPI_LIBS="-L$LIBPAPI_PATH -lpapi"
|
||||||
|
AC_DEFINE_UNQUOTED([HAVE_LIBPAPI], 1, [Define when libpapi is available.])
|
||||||
|
fi
|
||||||
|
|
||||||
|
AC_SUBST(PAPI_LIBS)
|
||||||
|
AC_SUBST(PAPI_LDFLAGS)
|
||||||
|
AC_SUBST(PAPI_CFLAGS)
|
||||||
|
|
||||||
|
AC_ARG_ENABLE([cachetune],
|
||||||
|
AS_HELP_STRING([--enable-cachetune],[calculate cache size from timing information (deprecated).]))
|
||||||
|
|
||||||
|
# Cache Sizes
|
||||||
|
if test -z $m4ri_config_cachesize; then
|
||||||
|
AX_CACHE_SIZE()
|
||||||
|
AS_IF([test "x$enable_cachetune" = "xyes"], [AC_MSG_WARN(--enable-cachetune is deprecated since it usually does not provide optimal parameters.) AX_CACHE_SIZE_TUNE()])
|
||||||
|
else
|
||||||
|
AS_IF([test "x$enable_cachetune" = "xyes"], [AC_MSG_WARN(Ignoring cache tuning since --with-cachesize was given.)])
|
||||||
|
|
||||||
|
ax_l1_size=`echo $m4ri_config_cachesize | cut -d ":" -f 1`
|
||||||
|
ax_l2_size=`echo $m4ri_config_cachesize | cut -d ":" -f 2`
|
||||||
|
ax_l3_size=`echo $m4ri_config_cachesize | cut -d ":" -f 3`
|
||||||
|
|
||||||
|
M4RI_CPU_L1_CACHE=${ax_l1_size}
|
||||||
|
M4RI_CPU_L2_CACHE=${ax_l2_size}
|
||||||
|
M4RI_CPU_L3_CACHE=${ax_l3_size}
|
||||||
|
AC_SUBST(M4RI_CPU_L1_CACHE)
|
||||||
|
AC_SUBST(M4RI_CPU_L2_CACHE)
|
||||||
|
AC_SUBST(M4RI_CPU_L3_CACHE)
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
# PNG
|
||||||
|
|
||||||
|
have_libpng="no"
|
||||||
|
AC_ARG_ENABLE([png],
|
||||||
|
[AC_HELP_STRING([--disable-png], [disable PNG support @<:@default=enabled@:>@])],
|
||||||
|
[
|
||||||
|
if test "x${enableval}" = "xyes" ; then
|
||||||
|
want_png="yes"
|
||||||
|
else
|
||||||
|
want_png="no"
|
||||||
|
fi
|
||||||
|
],
|
||||||
|
[want_png="yes"])
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([whether to build with PNG support])
|
||||||
|
AC_MSG_RESULT([${want_png}])
|
||||||
|
|
||||||
|
if test "x${want_png}" = "xyes" ; then
|
||||||
|
PKG_CHECK_MODULES([PNG], [libpng],
|
||||||
|
[have_libpng="yes"; LIBPNG_LIBADD=`pkg-config --libs libpng`],
|
||||||
|
[have_libpng="no"])
|
||||||
|
if ! test "x${have_libpng}" = "xyes" ; then
|
||||||
|
AC_CHECK_LIB([png],
|
||||||
|
[png_create_write_struct],
|
||||||
|
[have_libpng="yes"; LIBPNG_LIBADD="-lpng"],
|
||||||
|
[AC_CHECK_LIB([png14],
|
||||||
|
[png_create_write_struct],
|
||||||
|
[have_libpng="yes"; LIBPNG_LIBADD="-lpng14"],
|
||||||
|
[AC_CHECK_LIB([png12],
|
||||||
|
[png_create_write_struct],
|
||||||
|
[have_libpng="yes"; LIBPNG_LIBADD="-lpng12"],
|
||||||
|
[AC_CHECK_LIB([png10],
|
||||||
|
[png_create_write_struct],
|
||||||
|
[have_libpng="yes"; LIBPNG_LIBADD="-lpng10"],
|
||||||
|
[have_libpng="no"])
|
||||||
|
])
|
||||||
|
])
|
||||||
|
])
|
||||||
|
fi
|
||||||
|
if test "x${have_libpng}" = "xno" ; then
|
||||||
|
AC_MSG_WARN([Can not find a usuable PNG library. Make sure that CPPFLAGS and LDFLAGS are correctly set.])
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "x${have_libpng}" = "xyes" ; then
|
||||||
|
M4RI_HAVE_LIBPNG=1
|
||||||
|
AC_SUBST(M4RI_HAVE_LIBPNG)
|
||||||
|
AC_SUBST(LIBPNG_LIBADD)
|
||||||
|
else
|
||||||
|
M4RI_HAVE_LIBPNG=0
|
||||||
|
AC_SUBST(M4RI_HAVE_LIBPNG)
|
||||||
|
fi
|
||||||
|
|
||||||
|
RELEASE="AC_PACKAGE_VERSION"
|
||||||
|
AC_SUBST(RELEASE)
|
||||||
|
|
||||||
|
AC_PROG_MAKE_SET
|
||||||
|
|
||||||
|
AC_CONFIG_FILES([Makefile testsuite/Makefile m4ri/m4ri_config.h m4ri.pc])
|
||||||
|
AC_OUTPUT
|
||||||
|
|
791
preprocess/m4ri-20140914/depcomp
Executable file
791
preprocess/m4ri-20140914/depcomp
Executable file
@ -0,0 +1,791 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
# depcomp - compile a program generating dependencies as side-effects
|
||||||
|
|
||||||
|
scriptversion=2013-05-30.07; # UTC
|
||||||
|
|
||||||
|
# Copyright (C) 1999-2013 Free Software Foundation, Inc.
|
||||||
|
|
||||||
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
# As a special exception to the GNU General Public License, if you
|
||||||
|
# distribute this file as part of a program that contains a
|
||||||
|
# configuration script generated by Autoconf, you may include it under
|
||||||
|
# the same distribution terms that you use for the rest of that program.
|
||||||
|
|
||||||
|
# Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
'')
|
||||||
|
echo "$0: No command. Try '$0 --help' for more information." 1>&2
|
||||||
|
exit 1;
|
||||||
|
;;
|
||||||
|
-h | --h*)
|
||||||
|
cat <<\EOF
|
||||||
|
Usage: depcomp [--help] [--version] PROGRAM [ARGS]
|
||||||
|
|
||||||
|
Run PROGRAMS ARGS to compile a file, generating dependencies
|
||||||
|
as side-effects.
|
||||||
|
|
||||||
|
Environment variables:
|
||||||
|
depmode Dependency tracking mode.
|
||||||
|
source Source file read by 'PROGRAMS ARGS'.
|
||||||
|
object Object file output by 'PROGRAMS ARGS'.
|
||||||
|
DEPDIR directory where to store dependencies.
|
||||||
|
depfile Dependency file to output.
|
||||||
|
tmpdepfile Temporary file to use when outputting dependencies.
|
||||||
|
libtool Whether libtool is used (yes/no).
|
||||||
|
|
||||||
|
Report bugs to <bug-automake@gnu.org>.
|
||||||
|
EOF
|
||||||
|
exit $?
|
||||||
|
;;
|
||||||
|
-v | --v*)
|
||||||
|
echo "depcomp $scriptversion"
|
||||||
|
exit $?
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Get the directory component of the given path, and save it in the
|
||||||
|
# global variables '$dir'. Note that this directory component will
|
||||||
|
# be either empty or ending with a '/' character. This is deliberate.
|
||||||
|
set_dir_from ()
|
||||||
|
{
|
||||||
|
case $1 in
|
||||||
|
*/*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;;
|
||||||
|
*) dir=;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
# Get the suffix-stripped basename of the given path, and save it the
|
||||||
|
# global variable '$base'.
|
||||||
|
set_base_from ()
|
||||||
|
{
|
||||||
|
base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'`
|
||||||
|
}
|
||||||
|
|
||||||
|
# If no dependency file was actually created by the compiler invocation,
|
||||||
|
# we still have to create a dummy depfile, to avoid errors with the
|
||||||
|
# Makefile "include basename.Plo" scheme.
|
||||||
|
make_dummy_depfile ()
|
||||||
|
{
|
||||||
|
echo "#dummy" > "$depfile"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Factor out some common post-processing of the generated depfile.
|
||||||
|
# Requires the auxiliary global variable '$tmpdepfile' to be set.
|
||||||
|
aix_post_process_depfile ()
|
||||||
|
{
|
||||||
|
# If the compiler actually managed to produce a dependency file,
|
||||||
|
# post-process it.
|
||||||
|
if test -f "$tmpdepfile"; then
|
||||||
|
# Each line is of the form 'foo.o: dependency.h'.
|
||||||
|
# Do two passes, one to just change these to
|
||||||
|
# $object: dependency.h
|
||||||
|
# and one to simply output
|
||||||
|
# dependency.h:
|
||||||
|
# which is needed to avoid the deleted-header problem.
|
||||||
|
{ sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile"
|
||||||
|
sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
|
||||||
|
} > "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
else
|
||||||
|
make_dummy_depfile
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# A tabulation character.
|
||||||
|
tab=' '
|
||||||
|
# A newline character.
|
||||||
|
nl='
|
||||||
|
'
|
||||||
|
# Character ranges might be problematic outside the C locale.
|
||||||
|
# These definitions help.
|
||||||
|
upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ
|
||||||
|
lower=abcdefghijklmnopqrstuvwxyz
|
||||||
|
digits=0123456789
|
||||||
|
alpha=${upper}${lower}
|
||||||
|
|
||||||
|
if test -z "$depmode" || test -z "$source" || test -z "$object"; then
|
||||||
|
echo "depcomp: Variables source, object and depmode must be set" 1>&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po.
|
||||||
|
depfile=${depfile-`echo "$object" |
|
||||||
|
sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
|
||||||
|
tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
|
||||||
|
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
|
||||||
|
# Avoid interferences from the environment.
|
||||||
|
gccflag= dashmflag=
|
||||||
|
|
||||||
|
# Some modes work just like other modes, but use different flags. We
|
||||||
|
# parameterize here, but still list the modes in the big case below,
|
||||||
|
# to make depend.m4 easier to write. Note that we *cannot* use a case
|
||||||
|
# here, because this file can only contain one case statement.
|
||||||
|
if test "$depmode" = hp; then
|
||||||
|
# HP compiler uses -M and no extra arg.
|
||||||
|
gccflag=-M
|
||||||
|
depmode=gcc
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$depmode" = dashXmstdout; then
|
||||||
|
# This is just like dashmstdout with a different argument.
|
||||||
|
dashmflag=-xM
|
||||||
|
depmode=dashmstdout
|
||||||
|
fi
|
||||||
|
|
||||||
|
cygpath_u="cygpath -u -f -"
|
||||||
|
if test "$depmode" = msvcmsys; then
|
||||||
|
# This is just like msvisualcpp but w/o cygpath translation.
|
||||||
|
# Just convert the backslash-escaped backslashes to single forward
|
||||||
|
# slashes to satisfy depend.m4
|
||||||
|
cygpath_u='sed s,\\\\,/,g'
|
||||||
|
depmode=msvisualcpp
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$depmode" = msvc7msys; then
|
||||||
|
# This is just like msvc7 but w/o cygpath translation.
|
||||||
|
# Just convert the backslash-escaped backslashes to single forward
|
||||||
|
# slashes to satisfy depend.m4
|
||||||
|
cygpath_u='sed s,\\\\,/,g'
|
||||||
|
depmode=msvc7
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$depmode" = xlc; then
|
||||||
|
# IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information.
|
||||||
|
gccflag=-qmakedep=gcc,-MF
|
||||||
|
depmode=gcc
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$depmode" in
|
||||||
|
gcc3)
|
||||||
|
## gcc 3 implements dependency tracking that does exactly what
|
||||||
|
## we want. Yay! Note: for some reason libtool 1.4 doesn't like
|
||||||
|
## it if -MD -MP comes after the -MF stuff. Hmm.
|
||||||
|
## Unfortunately, FreeBSD c89 acceptance of flags depends upon
|
||||||
|
## the command line argument order; so add the flags where they
|
||||||
|
## appear in depend2.am. Note that the slowdown incurred here
|
||||||
|
## affects only configure: in makefiles, %FASTDEP% shortcuts this.
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
case $arg in
|
||||||
|
-c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
|
||||||
|
*) set fnord "$@" "$arg" ;;
|
||||||
|
esac
|
||||||
|
shift # fnord
|
||||||
|
shift # $arg
|
||||||
|
done
|
||||||
|
"$@"
|
||||||
|
stat=$?
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
mv "$tmpdepfile" "$depfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
gcc)
|
||||||
|
## Note that this doesn't just cater to obsosete pre-3.x GCC compilers.
|
||||||
|
## but also to in-use compilers like IMB xlc/xlC and the HP C compiler.
|
||||||
|
## (see the conditional assignment to $gccflag above).
|
||||||
|
## There are various ways to get dependency output from gcc. Here's
|
||||||
|
## why we pick this rather obscure method:
|
||||||
|
## - Don't want to use -MD because we'd like the dependencies to end
|
||||||
|
## up in a subdir. Having to rename by hand is ugly.
|
||||||
|
## (We might end up doing this anyway to support other compilers.)
|
||||||
|
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
|
||||||
|
## -MM, not -M (despite what the docs say). Also, it might not be
|
||||||
|
## supported by the other compilers which use the 'gcc' depmode.
|
||||||
|
## - Using -M directly means running the compiler twice (even worse
|
||||||
|
## than renaming).
|
||||||
|
if test -z "$gccflag"; then
|
||||||
|
gccflag=-MD,
|
||||||
|
fi
|
||||||
|
"$@" -Wp,"$gccflag$tmpdepfile"
|
||||||
|
stat=$?
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
rm -f "$depfile"
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
# The second -e expression handles DOS-style file names with drive
|
||||||
|
# letters.
|
||||||
|
sed -e 's/^[^:]*: / /' \
|
||||||
|
-e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
|
||||||
|
## This next piece of magic avoids the "deleted header file" problem.
|
||||||
|
## The problem is that when a header file which appears in a .P file
|
||||||
|
## is deleted, the dependency causes make to die (because there is
|
||||||
|
## typically no way to rebuild the header). We avoid this by adding
|
||||||
|
## dummy dependencies for each header file. Too bad gcc doesn't do
|
||||||
|
## this for us directly.
|
||||||
|
## Some versions of gcc put a space before the ':'. On the theory
|
||||||
|
## that the space means something, we add a space to the output as
|
||||||
|
## well. hp depmode also adds that space, but also prefixes the VPATH
|
||||||
|
## to the object. Take care to not repeat it in the output.
|
||||||
|
## Some versions of the HPUX 10.20 sed can't process this invocation
|
||||||
|
## correctly. Breaking it into two sed invocations is a workaround.
|
||||||
|
tr ' ' "$nl" < "$tmpdepfile" \
|
||||||
|
| sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
|
||||||
|
| sed -e 's/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
hp)
|
||||||
|
# This case exists only to let depend.m4 do its work. It works by
|
||||||
|
# looking at the text of this script. This case will never be run,
|
||||||
|
# since it is checked for above.
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
sgi)
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
"$@" "-Wp,-MDupdate,$tmpdepfile"
|
||||||
|
else
|
||||||
|
"$@" -MDupdate "$tmpdepfile"
|
||||||
|
fi
|
||||||
|
stat=$?
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
rm -f "$depfile"
|
||||||
|
|
||||||
|
if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
# Clip off the initial element (the dependent). Don't try to be
|
||||||
|
# clever and replace this with sed code, as IRIX sed won't handle
|
||||||
|
# lines with more than a fixed number of characters (4096 in
|
||||||
|
# IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines;
|
||||||
|
# the IRIX cc adds comments like '#:fec' to the end of the
|
||||||
|
# dependency line.
|
||||||
|
tr ' ' "$nl" < "$tmpdepfile" \
|
||||||
|
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \
|
||||||
|
| tr "$nl" ' ' >> "$depfile"
|
||||||
|
echo >> "$depfile"
|
||||||
|
# The second pass generates a dummy entry for each header file.
|
||||||
|
tr ' ' "$nl" < "$tmpdepfile" \
|
||||||
|
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
|
||||||
|
>> "$depfile"
|
||||||
|
else
|
||||||
|
make_dummy_depfile
|
||||||
|
fi
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
xlc)
|
||||||
|
# This case exists only to let depend.m4 do its work. It works by
|
||||||
|
# looking at the text of this script. This case will never be run,
|
||||||
|
# since it is checked for above.
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
aix)
|
||||||
|
# The C for AIX Compiler uses -M and outputs the dependencies
|
||||||
|
# in a .u file. In older versions, this file always lives in the
|
||||||
|
# current directory. Also, the AIX compiler puts '$object:' at the
|
||||||
|
# start of each line; $object doesn't have directory information.
|
||||||
|
# Version 6 uses the directory in both cases.
|
||||||
|
set_dir_from "$object"
|
||||||
|
set_base_from "$object"
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
tmpdepfile1=$dir$base.u
|
||||||
|
tmpdepfile2=$base.u
|
||||||
|
tmpdepfile3=$dir.libs/$base.u
|
||||||
|
"$@" -Wc,-M
|
||||||
|
else
|
||||||
|
tmpdepfile1=$dir$base.u
|
||||||
|
tmpdepfile2=$dir$base.u
|
||||||
|
tmpdepfile3=$dir$base.u
|
||||||
|
"$@" -M
|
||||||
|
fi
|
||||||
|
stat=$?
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
|
||||||
|
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||||
|
do
|
||||||
|
test -f "$tmpdepfile" && break
|
||||||
|
done
|
||||||
|
aix_post_process_depfile
|
||||||
|
;;
|
||||||
|
|
||||||
|
tcc)
|
||||||
|
# tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26
|
||||||
|
# FIXME: That version still under development at the moment of writing.
|
||||||
|
# Make that this statement remains true also for stable, released
|
||||||
|
# versions.
|
||||||
|
# It will wrap lines (doesn't matter whether long or short) with a
|
||||||
|
# trailing '\', as in:
|
||||||
|
#
|
||||||
|
# foo.o : \
|
||||||
|
# foo.c \
|
||||||
|
# foo.h \
|
||||||
|
#
|
||||||
|
# It will put a trailing '\' even on the last line, and will use leading
|
||||||
|
# spaces rather than leading tabs (at least since its commit 0394caf7
|
||||||
|
# "Emit spaces for -MD").
|
||||||
|
"$@" -MD -MF "$tmpdepfile"
|
||||||
|
stat=$?
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
rm -f "$depfile"
|
||||||
|
# Each non-empty line is of the form 'foo.o : \' or ' dep.h \'.
|
||||||
|
# We have to change lines of the first kind to '$object: \'.
|
||||||
|
sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile"
|
||||||
|
# And for each line of the second kind, we have to emit a 'dep.h:'
|
||||||
|
# dummy dependency, to avoid the deleted-header problem.
|
||||||
|
sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
## The order of this option in the case statement is important, since the
|
||||||
|
## shell code in configure will try each of these formats in the order
|
||||||
|
## listed in this file. A plain '-MD' option would be understood by many
|
||||||
|
## compilers, so we must ensure this comes after the gcc and icc options.
|
||||||
|
pgcc)
|
||||||
|
# Portland's C compiler understands '-MD'.
|
||||||
|
# Will always output deps to 'file.d' where file is the root name of the
|
||||||
|
# source file under compilation, even if file resides in a subdirectory.
|
||||||
|
# The object file name does not affect the name of the '.d' file.
|
||||||
|
# pgcc 10.2 will output
|
||||||
|
# foo.o: sub/foo.c sub/foo.h
|
||||||
|
# and will wrap long lines using '\' :
|
||||||
|
# foo.o: sub/foo.c ... \
|
||||||
|
# sub/foo.h ... \
|
||||||
|
# ...
|
||||||
|
set_dir_from "$object"
|
||||||
|
# Use the source, not the object, to determine the base name, since
|
||||||
|
# that's sadly what pgcc will do too.
|
||||||
|
set_base_from "$source"
|
||||||
|
tmpdepfile=$base.d
|
||||||
|
|
||||||
|
# For projects that build the same source file twice into different object
|
||||||
|
# files, the pgcc approach of using the *source* file root name can cause
|
||||||
|
# problems in parallel builds. Use a locking strategy to avoid stomping on
|
||||||
|
# the same $tmpdepfile.
|
||||||
|
lockdir=$base.d-lock
|
||||||
|
trap "
|
||||||
|
echo '$0: caught signal, cleaning up...' >&2
|
||||||
|
rmdir '$lockdir'
|
||||||
|
exit 1
|
||||||
|
" 1 2 13 15
|
||||||
|
numtries=100
|
||||||
|
i=$numtries
|
||||||
|
while test $i -gt 0; do
|
||||||
|
# mkdir is a portable test-and-set.
|
||||||
|
if mkdir "$lockdir" 2>/dev/null; then
|
||||||
|
# This process acquired the lock.
|
||||||
|
"$@" -MD
|
||||||
|
stat=$?
|
||||||
|
# Release the lock.
|
||||||
|
rmdir "$lockdir"
|
||||||
|
break
|
||||||
|
else
|
||||||
|
# If the lock is being held by a different process, wait
|
||||||
|
# until the winning process is done or we timeout.
|
||||||
|
while test -d "$lockdir" && test $i -gt 0; do
|
||||||
|
sleep 1
|
||||||
|
i=`expr $i - 1`
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
i=`expr $i - 1`
|
||||||
|
done
|
||||||
|
trap - 1 2 13 15
|
||||||
|
if test $i -le 0; then
|
||||||
|
echo "$0: failed to acquire lock after $numtries attempts" >&2
|
||||||
|
echo "$0: check lockdir '$lockdir'" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
rm -f "$depfile"
|
||||||
|
# Each line is of the form `foo.o: dependent.h',
|
||||||
|
# or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.
|
||||||
|
# Do two passes, one to just change these to
|
||||||
|
# `$object: dependent.h' and one to simply `dependent.h:'.
|
||||||
|
sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
|
||||||
|
# Some versions of the HPUX 10.20 sed can't process this invocation
|
||||||
|
# correctly. Breaking it into two sed invocations is a workaround.
|
||||||
|
sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \
|
||||||
|
| sed -e 's/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
hp2)
|
||||||
|
# The "hp" stanza above does not work with aCC (C++) and HP's ia64
|
||||||
|
# compilers, which have integrated preprocessors. The correct option
|
||||||
|
# to use with these is +Maked; it writes dependencies to a file named
|
||||||
|
# 'foo.d', which lands next to the object file, wherever that
|
||||||
|
# happens to be.
|
||||||
|
# Much of this is similar to the tru64 case; see comments there.
|
||||||
|
set_dir_from "$object"
|
||||||
|
set_base_from "$object"
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
tmpdepfile1=$dir$base.d
|
||||||
|
tmpdepfile2=$dir.libs/$base.d
|
||||||
|
"$@" -Wc,+Maked
|
||||||
|
else
|
||||||
|
tmpdepfile1=$dir$base.d
|
||||||
|
tmpdepfile2=$dir$base.d
|
||||||
|
"$@" +Maked
|
||||||
|
fi
|
||||||
|
stat=$?
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile1" "$tmpdepfile2"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
|
||||||
|
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2"
|
||||||
|
do
|
||||||
|
test -f "$tmpdepfile" && break
|
||||||
|
done
|
||||||
|
if test -f "$tmpdepfile"; then
|
||||||
|
sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile"
|
||||||
|
# Add 'dependent.h:' lines.
|
||||||
|
sed -ne '2,${
|
||||||
|
s/^ *//
|
||||||
|
s/ \\*$//
|
||||||
|
s/$/:/
|
||||||
|
p
|
||||||
|
}' "$tmpdepfile" >> "$depfile"
|
||||||
|
else
|
||||||
|
make_dummy_depfile
|
||||||
|
fi
|
||||||
|
rm -f "$tmpdepfile" "$tmpdepfile2"
|
||||||
|
;;
|
||||||
|
|
||||||
|
tru64)
|
||||||
|
# The Tru64 compiler uses -MD to generate dependencies as a side
|
||||||
|
# effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'.
|
||||||
|
# At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
|
||||||
|
# dependencies in 'foo.d' instead, so we check for that too.
|
||||||
|
# Subdirectories are respected.
|
||||||
|
set_dir_from "$object"
|
||||||
|
set_base_from "$object"
|
||||||
|
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
# Libtool generates 2 separate objects for the 2 libraries. These
|
||||||
|
# two compilations output dependencies in $dir.libs/$base.o.d and
|
||||||
|
# in $dir$base.o.d. We have to check for both files, because
|
||||||
|
# one of the two compilations can be disabled. We should prefer
|
||||||
|
# $dir$base.o.d over $dir.libs/$base.o.d because the latter is
|
||||||
|
# automatically cleaned when .libs/ is deleted, while ignoring
|
||||||
|
# the former would cause a distcleancheck panic.
|
||||||
|
tmpdepfile1=$dir$base.o.d # libtool 1.5
|
||||||
|
tmpdepfile2=$dir.libs/$base.o.d # Likewise.
|
||||||
|
tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504
|
||||||
|
"$@" -Wc,-MD
|
||||||
|
else
|
||||||
|
tmpdepfile1=$dir$base.d
|
||||||
|
tmpdepfile2=$dir$base.d
|
||||||
|
tmpdepfile3=$dir$base.d
|
||||||
|
"$@" -MD
|
||||||
|
fi
|
||||||
|
|
||||||
|
stat=$?
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
|
||||||
|
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||||
|
do
|
||||||
|
test -f "$tmpdepfile" && break
|
||||||
|
done
|
||||||
|
# Same post-processing that is required for AIX mode.
|
||||||
|
aix_post_process_depfile
|
||||||
|
;;
|
||||||
|
|
||||||
|
msvc7)
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
showIncludes=-Wc,-showIncludes
|
||||||
|
else
|
||||||
|
showIncludes=-showIncludes
|
||||||
|
fi
|
||||||
|
"$@" $showIncludes > "$tmpdepfile"
|
||||||
|
stat=$?
|
||||||
|
grep -v '^Note: including file: ' "$tmpdepfile"
|
||||||
|
if test $stat -ne 0; then
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
exit $stat
|
||||||
|
fi
|
||||||
|
rm -f "$depfile"
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
# The first sed program below extracts the file names and escapes
|
||||||
|
# backslashes for cygpath. The second sed program outputs the file
|
||||||
|
# name when reading, but also accumulates all include files in the
|
||||||
|
# hold buffer in order to output them again at the end. This only
|
||||||
|
# works with sed implementations that can handle large buffers.
|
||||||
|
sed < "$tmpdepfile" -n '
|
||||||
|
/^Note: including file: *\(.*\)/ {
|
||||||
|
s//\1/
|
||||||
|
s/\\/\\\\/g
|
||||||
|
p
|
||||||
|
}' | $cygpath_u | sort -u | sed -n '
|
||||||
|
s/ /\\ /g
|
||||||
|
s/\(.*\)/'"$tab"'\1 \\/p
|
||||||
|
s/.\(.*\) \\/\1:/
|
||||||
|
H
|
||||||
|
$ {
|
||||||
|
s/.*/'"$tab"'/
|
||||||
|
G
|
||||||
|
p
|
||||||
|
}' >> "$depfile"
|
||||||
|
echo >> "$depfile" # make sure the fragment doesn't end with a backslash
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
msvc7msys)
|
||||||
|
# This case exists only to let depend.m4 do its work. It works by
|
||||||
|
# looking at the text of this script. This case will never be run,
|
||||||
|
# since it is checked for above.
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
#nosideeffect)
|
||||||
|
# This comment above is used by automake to tell side-effect
|
||||||
|
# dependency tracking mechanisms from slower ones.
|
||||||
|
|
||||||
|
dashmstdout)
|
||||||
|
# Important note: in order to support this mode, a compiler *must*
|
||||||
|
# always write the preprocessed file to stdout, regardless of -o.
|
||||||
|
"$@" || exit $?
|
||||||
|
|
||||||
|
# Remove the call to Libtool.
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
while test "X$1" != 'X--mode=compile'; do
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Remove '-o $object'.
|
||||||
|
IFS=" "
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
case $arg in
|
||||||
|
-o)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
$object)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set fnord "$@" "$arg"
|
||||||
|
shift # fnord
|
||||||
|
shift # $arg
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
test -z "$dashmflag" && dashmflag=-M
|
||||||
|
# Require at least two characters before searching for ':'
|
||||||
|
# in the target name. This is to cope with DOS-style filenames:
|
||||||
|
# a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise.
|
||||||
|
"$@" $dashmflag |
|
||||||
|
sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
|
||||||
|
rm -f "$depfile"
|
||||||
|
cat < "$tmpdepfile" > "$depfile"
|
||||||
|
# Some versions of the HPUX 10.20 sed can't process this sed invocation
|
||||||
|
# correctly. Breaking it into two sed invocations is a workaround.
|
||||||
|
tr ' ' "$nl" < "$tmpdepfile" \
|
||||||
|
| sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
|
||||||
|
| sed -e 's/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
dashXmstdout)
|
||||||
|
# This case only exists to satisfy depend.m4. It is never actually
|
||||||
|
# run, as this mode is specially recognized in the preamble.
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
makedepend)
|
||||||
|
"$@" || exit $?
|
||||||
|
# Remove any Libtool call
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
while test "X$1" != 'X--mode=compile'; do
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
# X makedepend
|
||||||
|
shift
|
||||||
|
cleared=no eat=no
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
case $cleared in
|
||||||
|
no)
|
||||||
|
set ""; shift
|
||||||
|
cleared=yes ;;
|
||||||
|
esac
|
||||||
|
if test $eat = yes; then
|
||||||
|
eat=no
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
case "$arg" in
|
||||||
|
-D*|-I*)
|
||||||
|
set fnord "$@" "$arg"; shift ;;
|
||||||
|
# Strip any option that makedepend may not understand. Remove
|
||||||
|
# the object too, otherwise makedepend will parse it as a source file.
|
||||||
|
-arch)
|
||||||
|
eat=yes ;;
|
||||||
|
-*|$object)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set fnord "$@" "$arg"; shift ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
obj_suffix=`echo "$object" | sed 's/^.*\././'`
|
||||||
|
touch "$tmpdepfile"
|
||||||
|
${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
|
||||||
|
rm -f "$depfile"
|
||||||
|
# makedepend may prepend the VPATH from the source file name to the object.
|
||||||
|
# No need to regex-escape $object, excess matching of '.' is harmless.
|
||||||
|
sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile"
|
||||||
|
# Some versions of the HPUX 10.20 sed can't process the last invocation
|
||||||
|
# correctly. Breaking it into two sed invocations is a workaround.
|
||||||
|
sed '1,2d' "$tmpdepfile" \
|
||||||
|
| tr ' ' "$nl" \
|
||||||
|
| sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
|
||||||
|
| sed -e 's/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile" "$tmpdepfile".bak
|
||||||
|
;;
|
||||||
|
|
||||||
|
cpp)
|
||||||
|
# Important note: in order to support this mode, a compiler *must*
|
||||||
|
# always write the preprocessed file to stdout.
|
||||||
|
"$@" || exit $?
|
||||||
|
|
||||||
|
# Remove the call to Libtool.
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
while test "X$1" != 'X--mode=compile'; do
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Remove '-o $object'.
|
||||||
|
IFS=" "
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
case $arg in
|
||||||
|
-o)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
$object)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set fnord "$@" "$arg"
|
||||||
|
shift # fnord
|
||||||
|
shift # $arg
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
"$@" -E \
|
||||||
|
| sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
|
||||||
|
-e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
|
||||||
|
| sed '$ s: \\$::' > "$tmpdepfile"
|
||||||
|
rm -f "$depfile"
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
cat < "$tmpdepfile" >> "$depfile"
|
||||||
|
sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
msvisualcpp)
|
||||||
|
# Important note: in order to support this mode, a compiler *must*
|
||||||
|
# always write the preprocessed file to stdout.
|
||||||
|
"$@" || exit $?
|
||||||
|
|
||||||
|
# Remove the call to Libtool.
|
||||||
|
if test "$libtool" = yes; then
|
||||||
|
while test "X$1" != 'X--mode=compile'; do
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
|
IFS=" "
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
case "$arg" in
|
||||||
|
-o)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
$object)
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
"-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
|
||||||
|
set fnord "$@"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
set fnord "$@" "$arg"
|
||||||
|
shift
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
"$@" -E 2>/dev/null |
|
||||||
|
sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile"
|
||||||
|
rm -f "$depfile"
|
||||||
|
echo "$object : \\" > "$depfile"
|
||||||
|
sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
|
||||||
|
echo "$tab" >> "$depfile"
|
||||||
|
sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile"
|
||||||
|
rm -f "$tmpdepfile"
|
||||||
|
;;
|
||||||
|
|
||||||
|
msvcmsys)
|
||||||
|
# This case exists only to let depend.m4 do its work. It works by
|
||||||
|
# looking at the text of this script. This case will never be run,
|
||||||
|
# since it is checked for above.
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
|
||||||
|
none)
|
||||||
|
exec "$@"
|
||||||
|
;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "Unknown depmode $depmode" 1>&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
|
||||||
|
# Local Variables:
|
||||||
|
# mode: shell-script
|
||||||
|
# sh-indentation: 2
|
||||||
|
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||||
|
# time-stamp-start: "scriptversion="
|
||||||
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||||
|
# time-stamp-time-zone: "UTC"
|
||||||
|
# time-stamp-end: "; # UTC"
|
||||||
|
# End:
|
527
preprocess/m4ri-20140914/install-sh
Executable file
527
preprocess/m4ri-20140914/install-sh
Executable file
@ -0,0 +1,527 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# install - install a program, script, or datafile
|
||||||
|
|
||||||
|
scriptversion=2011-11-20.07; # UTC
|
||||||
|
|
||||||
|
# This originates from X11R5 (mit/util/scripts/install.sh), which was
|
||||||
|
# later released in X11R6 (xc/config/util/install.sh) with the
|
||||||
|
# following copyright and license.
|
||||||
|
#
|
||||||
|
# Copyright (C) 1994 X Consortium
|
||||||
|
#
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
# of this software and associated documentation files (the "Software"), to
|
||||||
|
# deal in the Software without restriction, including without limitation the
|
||||||
|
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||||
|
# sell copies of the Software, and to permit persons to whom the Software is
|
||||||
|
# furnished to do so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in
|
||||||
|
# all copies or substantial portions of the Software.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
||||||
|
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
|
||||||
|
# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
#
|
||||||
|
# Except as contained in this notice, the name of the X Consortium shall not
|
||||||
|
# be used in advertising or otherwise to promote the sale, use or other deal-
|
||||||
|
# ings in this Software without prior written authorization from the X Consor-
|
||||||
|
# tium.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# FSF changes to this file are in the public domain.
|
||||||
|
#
|
||||||
|
# Calling this script install-sh is preferred over install.sh, to prevent
|
||||||
|
# 'make' implicit rules from creating a file called install from it
|
||||||
|
# when there is no Makefile.
|
||||||
|
#
|
||||||
|
# This script is compatible with the BSD install script, but was written
|
||||||
|
# from scratch.
|
||||||
|
|
||||||
|
nl='
|
||||||
|
'
|
||||||
|
IFS=" "" $nl"
|
||||||
|
|
||||||
|
# set DOITPROG to echo to test this script
|
||||||
|
|
||||||
|
# Don't use :- since 4.3BSD and earlier shells don't like it.
|
||||||
|
doit=${DOITPROG-}
|
||||||
|
if test -z "$doit"; then
|
||||||
|
doit_exec=exec
|
||||||
|
else
|
||||||
|
doit_exec=$doit
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Put in absolute file names if you don't have them in your path;
|
||||||
|
# or use environment vars.
|
||||||
|
|
||||||
|
chgrpprog=${CHGRPPROG-chgrp}
|
||||||
|
chmodprog=${CHMODPROG-chmod}
|
||||||
|
chownprog=${CHOWNPROG-chown}
|
||||||
|
cmpprog=${CMPPROG-cmp}
|
||||||
|
cpprog=${CPPROG-cp}
|
||||||
|
mkdirprog=${MKDIRPROG-mkdir}
|
||||||
|
mvprog=${MVPROG-mv}
|
||||||
|
rmprog=${RMPROG-rm}
|
||||||
|
stripprog=${STRIPPROG-strip}
|
||||||
|
|
||||||
|
posix_glob='?'
|
||||||
|
initialize_posix_glob='
|
||||||
|
test "$posix_glob" != "?" || {
|
||||||
|
if (set -f) 2>/dev/null; then
|
||||||
|
posix_glob=
|
||||||
|
else
|
||||||
|
posix_glob=:
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
'
|
||||||
|
|
||||||
|
posix_mkdir=
|
||||||
|
|
||||||
|
# Desired mode of installed file.
|
||||||
|
mode=0755
|
||||||
|
|
||||||
|
chgrpcmd=
|
||||||
|
chmodcmd=$chmodprog
|
||||||
|
chowncmd=
|
||||||
|
mvcmd=$mvprog
|
||||||
|
rmcmd="$rmprog -f"
|
||||||
|
stripcmd=
|
||||||
|
|
||||||
|
src=
|
||||||
|
dst=
|
||||||
|
dir_arg=
|
||||||
|
dst_arg=
|
||||||
|
|
||||||
|
copy_on_change=false
|
||||||
|
no_target_directory=
|
||||||
|
|
||||||
|
usage="\
|
||||||
|
Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
|
||||||
|
or: $0 [OPTION]... SRCFILES... DIRECTORY
|
||||||
|
or: $0 [OPTION]... -t DIRECTORY SRCFILES...
|
||||||
|
or: $0 [OPTION]... -d DIRECTORIES...
|
||||||
|
|
||||||
|
In the 1st form, copy SRCFILE to DSTFILE.
|
||||||
|
In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
|
||||||
|
In the 4th, create DIRECTORIES.
|
||||||
|
|
||||||
|
Options:
|
||||||
|
--help display this help and exit.
|
||||||
|
--version display version info and exit.
|
||||||
|
|
||||||
|
-c (ignored)
|
||||||
|
-C install only if different (preserve the last data modification time)
|
||||||
|
-d create directories instead of installing files.
|
||||||
|
-g GROUP $chgrpprog installed files to GROUP.
|
||||||
|
-m MODE $chmodprog installed files to MODE.
|
||||||
|
-o USER $chownprog installed files to USER.
|
||||||
|
-s $stripprog installed files.
|
||||||
|
-t DIRECTORY install into DIRECTORY.
|
||||||
|
-T report an error if DSTFILE is a directory.
|
||||||
|
|
||||||
|
Environment variables override the default commands:
|
||||||
|
CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
|
||||||
|
RMPROG STRIPPROG
|
||||||
|
"
|
||||||
|
|
||||||
|
while test $# -ne 0; do
|
||||||
|
case $1 in
|
||||||
|
-c) ;;
|
||||||
|
|
||||||
|
-C) copy_on_change=true;;
|
||||||
|
|
||||||
|
-d) dir_arg=true;;
|
||||||
|
|
||||||
|
-g) chgrpcmd="$chgrpprog $2"
|
||||||
|
shift;;
|
||||||
|
|
||||||
|
--help) echo "$usage"; exit $?;;
|
||||||
|
|
||||||
|
-m) mode=$2
|
||||||
|
case $mode in
|
||||||
|
*' '* | *' '* | *'
|
||||||
|
'* | *'*'* | *'?'* | *'['*)
|
||||||
|
echo "$0: invalid mode: $mode" >&2
|
||||||
|
exit 1;;
|
||||||
|
esac
|
||||||
|
shift;;
|
||||||
|
|
||||||
|
-o) chowncmd="$chownprog $2"
|
||||||
|
shift;;
|
||||||
|
|
||||||
|
-s) stripcmd=$stripprog;;
|
||||||
|
|
||||||
|
-t) dst_arg=$2
|
||||||
|
# Protect names problematic for 'test' and other utilities.
|
||||||
|
case $dst_arg in
|
||||||
|
-* | [=\(\)!]) dst_arg=./$dst_arg;;
|
||||||
|
esac
|
||||||
|
shift;;
|
||||||
|
|
||||||
|
-T) no_target_directory=true;;
|
||||||
|
|
||||||
|
--version) echo "$0 $scriptversion"; exit $?;;
|
||||||
|
|
||||||
|
--) shift
|
||||||
|
break;;
|
||||||
|
|
||||||
|
-*) echo "$0: invalid option: $1" >&2
|
||||||
|
exit 1;;
|
||||||
|
|
||||||
|
*) break;;
|
||||||
|
esac
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
|
||||||
|
# When -d is used, all remaining arguments are directories to create.
|
||||||
|
# When -t is used, the destination is already specified.
|
||||||
|
# Otherwise, the last argument is the destination. Remove it from $@.
|
||||||
|
for arg
|
||||||
|
do
|
||||||
|
if test -n "$dst_arg"; then
|
||||||
|
# $@ is not empty: it contains at least $arg.
|
||||||
|
set fnord "$@" "$dst_arg"
|
||||||
|
shift # fnord
|
||||||
|
fi
|
||||||
|
shift # arg
|
||||||
|
dst_arg=$arg
|
||||||
|
# Protect names problematic for 'test' and other utilities.
|
||||||
|
case $dst_arg in
|
||||||
|
-* | [=\(\)!]) dst_arg=./$dst_arg;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test $# -eq 0; then
|
||||||
|
if test -z "$dir_arg"; then
|
||||||
|
echo "$0: no input file specified." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
# It's OK to call 'install-sh -d' without argument.
|
||||||
|
# This can happen when creating conditional directories.
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -z "$dir_arg"; then
|
||||||
|
do_exit='(exit $ret); exit $ret'
|
||||||
|
trap "ret=129; $do_exit" 1
|
||||||
|
trap "ret=130; $do_exit" 2
|
||||||
|
trap "ret=141; $do_exit" 13
|
||||||
|
trap "ret=143; $do_exit" 15
|
||||||
|
|
||||||
|
# Set umask so as not to create temps with too-generous modes.
|
||||||
|
# However, 'strip' requires both read and write access to temps.
|
||||||
|
case $mode in
|
||||||
|
# Optimize common cases.
|
||||||
|
*644) cp_umask=133;;
|
||||||
|
*755) cp_umask=22;;
|
||||||
|
|
||||||
|
*[0-7])
|
||||||
|
if test -z "$stripcmd"; then
|
||||||
|
u_plus_rw=
|
||||||
|
else
|
||||||
|
u_plus_rw='% 200'
|
||||||
|
fi
|
||||||
|
cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
|
||||||
|
*)
|
||||||
|
if test -z "$stripcmd"; then
|
||||||
|
u_plus_rw=
|
||||||
|
else
|
||||||
|
u_plus_rw=,u+rw
|
||||||
|
fi
|
||||||
|
cp_umask=$mode$u_plus_rw;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
for src
|
||||||
|
do
|
||||||
|
# Protect names problematic for 'test' and other utilities.
|
||||||
|
case $src in
|
||||||
|
-* | [=\(\)!]) src=./$src;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if test -n "$dir_arg"; then
|
||||||
|
dst=$src
|
||||||
|
dstdir=$dst
|
||||||
|
test -d "$dstdir"
|
||||||
|
dstdir_status=$?
|
||||||
|
else
|
||||||
|
|
||||||
|
# Waiting for this to be detected by the "$cpprog $src $dsttmp" command
|
||||||
|
# might cause directories to be created, which would be especially bad
|
||||||
|
# if $src (and thus $dsttmp) contains '*'.
|
||||||
|
if test ! -f "$src" && test ! -d "$src"; then
|
||||||
|
echo "$0: $src does not exist." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -z "$dst_arg"; then
|
||||||
|
echo "$0: no destination specified." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
dst=$dst_arg
|
||||||
|
|
||||||
|
# If destination is a directory, append the input filename; won't work
|
||||||
|
# if double slashes aren't ignored.
|
||||||
|
if test -d "$dst"; then
|
||||||
|
if test -n "$no_target_directory"; then
|
||||||
|
echo "$0: $dst_arg: Is a directory" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
dstdir=$dst
|
||||||
|
dst=$dstdir/`basename "$src"`
|
||||||
|
dstdir_status=0
|
||||||
|
else
|
||||||
|
# Prefer dirname, but fall back on a substitute if dirname fails.
|
||||||
|
dstdir=`
|
||||||
|
(dirname "$dst") 2>/dev/null ||
|
||||||
|
expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
||||||
|
X"$dst" : 'X\(//\)[^/]' \| \
|
||||||
|
X"$dst" : 'X\(//\)$' \| \
|
||||||
|
X"$dst" : 'X\(/\)' \| . 2>/dev/null ||
|
||||||
|
echo X"$dst" |
|
||||||
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
||||||
|
s//\1/
|
||||||
|
q
|
||||||
|
}
|
||||||
|
/^X\(\/\/\)[^/].*/{
|
||||||
|
s//\1/
|
||||||
|
q
|
||||||
|
}
|
||||||
|
/^X\(\/\/\)$/{
|
||||||
|
s//\1/
|
||||||
|
q
|
||||||
|
}
|
||||||
|
/^X\(\/\).*/{
|
||||||
|
s//\1/
|
||||||
|
q
|
||||||
|
}
|
||||||
|
s/.*/./; q'
|
||||||
|
`
|
||||||
|
|
||||||
|
test -d "$dstdir"
|
||||||
|
dstdir_status=$?
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
obsolete_mkdir_used=false
|
||||||
|
|
||||||
|
if test $dstdir_status != 0; then
|
||||||
|
case $posix_mkdir in
|
||||||
|
'')
|
||||||
|
# Create intermediate dirs using mode 755 as modified by the umask.
|
||||||
|
# This is like FreeBSD 'install' as of 1997-10-28.
|
||||||
|
umask=`umask`
|
||||||
|
case $stripcmd.$umask in
|
||||||
|
# Optimize common cases.
|
||||||
|
*[2367][2367]) mkdir_umask=$umask;;
|
||||||
|
.*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;
|
||||||
|
|
||||||
|
*[0-7])
|
||||||
|
mkdir_umask=`expr $umask + 22 \
|
||||||
|
- $umask % 100 % 40 + $umask % 20 \
|
||||||
|
- $umask % 10 % 4 + $umask % 2
|
||||||
|
`;;
|
||||||
|
*) mkdir_umask=$umask,go-w;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# With -d, create the new directory with the user-specified mode.
|
||||||
|
# Otherwise, rely on $mkdir_umask.
|
||||||
|
if test -n "$dir_arg"; then
|
||||||
|
mkdir_mode=-m$mode
|
||||||
|
else
|
||||||
|
mkdir_mode=
|
||||||
|
fi
|
||||||
|
|
||||||
|
posix_mkdir=false
|
||||||
|
case $umask in
|
||||||
|
*[123567][0-7][0-7])
|
||||||
|
# POSIX mkdir -p sets u+wx bits regardless of umask, which
|
||||||
|
# is incompatible with FreeBSD 'install' when (umask & 300) != 0.
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
|
||||||
|
trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0
|
||||||
|
|
||||||
|
if (umask $mkdir_umask &&
|
||||||
|
exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1
|
||||||
|
then
|
||||||
|
if test -z "$dir_arg" || {
|
||||||
|
# Check for POSIX incompatibilities with -m.
|
||||||
|
# HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
|
||||||
|
# other-writable bit of parent directory when it shouldn't.
|
||||||
|
# FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
|
||||||
|
ls_ld_tmpdir=`ls -ld "$tmpdir"`
|
||||||
|
case $ls_ld_tmpdir in
|
||||||
|
d????-?r-*) different_mode=700;;
|
||||||
|
d????-?--*) different_mode=755;;
|
||||||
|
*) false;;
|
||||||
|
esac &&
|
||||||
|
$mkdirprog -m$different_mode -p -- "$tmpdir" && {
|
||||||
|
ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
|
||||||
|
test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
then posix_mkdir=:
|
||||||
|
fi
|
||||||
|
rmdir "$tmpdir/d" "$tmpdir"
|
||||||
|
else
|
||||||
|
# Remove any dirs left behind by ancient mkdir implementations.
|
||||||
|
rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null
|
||||||
|
fi
|
||||||
|
trap '' 0;;
|
||||||
|
esac;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if
|
||||||
|
$posix_mkdir && (
|
||||||
|
umask $mkdir_umask &&
|
||||||
|
$doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
|
||||||
|
)
|
||||||
|
then :
|
||||||
|
else
|
||||||
|
|
||||||
|
# The umask is ridiculous, or mkdir does not conform to POSIX,
|
||||||
|
# or it failed possibly due to a race condition. Create the
|
||||||
|
# directory the slow way, step by step, checking for races as we go.
|
||||||
|
|
||||||
|
case $dstdir in
|
||||||
|
/*) prefix='/';;
|
||||||
|
[-=\(\)!]*) prefix='./';;
|
||||||
|
*) prefix='';;
|
||||||
|
esac
|
||||||
|
|
||||||
|
eval "$initialize_posix_glob"
|
||||||
|
|
||||||
|
oIFS=$IFS
|
||||||
|
IFS=/
|
||||||
|
$posix_glob set -f
|
||||||
|
set fnord $dstdir
|
||||||
|
shift
|
||||||
|
$posix_glob set +f
|
||||||
|
IFS=$oIFS
|
||||||
|
|
||||||
|
prefixes=
|
||||||
|
|
||||||
|
for d
|
||||||
|
do
|
||||||
|
test X"$d" = X && continue
|
||||||
|
|
||||||
|
prefix=$prefix$d
|
||||||
|
if test -d "$prefix"; then
|
||||||
|
prefixes=
|
||||||
|
else
|
||||||
|
if $posix_mkdir; then
|
||||||
|
(umask=$mkdir_umask &&
|
||||||
|
$doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
|
||||||
|
# Don't fail if two instances are running concurrently.
|
||||||
|
test -d "$prefix" || exit 1
|
||||||
|
else
|
||||||
|
case $prefix in
|
||||||
|
*\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
|
||||||
|
*) qprefix=$prefix;;
|
||||||
|
esac
|
||||||
|
prefixes="$prefixes '$qprefix'"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
prefix=$prefix/
|
||||||
|
done
|
||||||
|
|
||||||
|
if test -n "$prefixes"; then
|
||||||
|
# Don't fail if two instances are running concurrently.
|
||||||
|
(umask $mkdir_umask &&
|
||||||
|
eval "\$doit_exec \$mkdirprog $prefixes") ||
|
||||||
|
test -d "$dstdir" || exit 1
|
||||||
|
obsolete_mkdir_used=true
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -n "$dir_arg"; then
|
||||||
|
{ test -z "$chowncmd" || $doit $chowncmd "$dst"; } &&
|
||||||
|
{ test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } &&
|
||||||
|
{ test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false ||
|
||||||
|
test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1
|
||||||
|
else
|
||||||
|
|
||||||
|
# Make a couple of temp file names in the proper directory.
|
||||||
|
dsttmp=$dstdir/_inst.$$_
|
||||||
|
rmtmp=$dstdir/_rm.$$_
|
||||||
|
|
||||||
|
# Trap to clean up those temp files at exit.
|
||||||
|
trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
|
||||||
|
|
||||||
|
# Copy the file name to the temp name.
|
||||||
|
(umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") &&
|
||||||
|
|
||||||
|
# and set any options; do chmod last to preserve setuid bits.
|
||||||
|
#
|
||||||
|
# If any of these fail, we abort the whole thing. If we want to
|
||||||
|
# ignore errors from any of these, just make sure not to ignore
|
||||||
|
# errors from the above "$doit $cpprog $src $dsttmp" command.
|
||||||
|
#
|
||||||
|
{ test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } &&
|
||||||
|
{ test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } &&
|
||||||
|
{ test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } &&
|
||||||
|
{ test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
|
||||||
|
|
||||||
|
# If -C, don't bother to copy if it wouldn't change the file.
|
||||||
|
if $copy_on_change &&
|
||||||
|
old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` &&
|
||||||
|
new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` &&
|
||||||
|
|
||||||
|
eval "$initialize_posix_glob" &&
|
||||||
|
$posix_glob set -f &&
|
||||||
|
set X $old && old=:$2:$4:$5:$6 &&
|
||||||
|
set X $new && new=:$2:$4:$5:$6 &&
|
||||||
|
$posix_glob set +f &&
|
||||||
|
|
||||||
|
test "$old" = "$new" &&
|
||||||
|
$cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
|
||||||
|
then
|
||||||
|
rm -f "$dsttmp"
|
||||||
|
else
|
||||||
|
# Rename the file to the real destination.
|
||||||
|
$doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
|
||||||
|
|
||||||
|
# The rename failed, perhaps because mv can't rename something else
|
||||||
|
# to itself, or perhaps because mv is so ancient that it does not
|
||||||
|
# support -f.
|
||||||
|
{
|
||||||
|
# Now remove or move aside any old file at destination location.
|
||||||
|
# We try this two ways since rm can't unlink itself on some
|
||||||
|
# systems and the destination file might be busy for other
|
||||||
|
# reasons. In this case, the final cleanup might fail but the new
|
||||||
|
# file should still install successfully.
|
||||||
|
{
|
||||||
|
test ! -f "$dst" ||
|
||||||
|
$doit $rmcmd -f "$dst" 2>/dev/null ||
|
||||||
|
{ $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
|
||||||
|
{ $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }
|
||||||
|
} ||
|
||||||
|
{ echo "$0: cannot unlink or rename $dst" >&2
|
||||||
|
(exit 1); exit 1
|
||||||
|
}
|
||||||
|
} &&
|
||||||
|
|
||||||
|
# Now rename the file to the real destination.
|
||||||
|
$doit $mvcmd "$dsttmp" "$dst"
|
||||||
|
}
|
||||||
|
fi || exit 1
|
||||||
|
|
||||||
|
trap '' 0
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
# Local variables:
|
||||||
|
# eval: (add-hook 'write-file-hooks 'time-stamp)
|
||||||
|
# time-stamp-start: "scriptversion="
|
||||||
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||||
|
# time-stamp-time-zone: "UTC"
|
||||||
|
# time-stamp-end: "; # UTC"
|
||||||
|
# End:
|
41
preprocess/m4ri-20140914/libm4ri.la
Normal file
41
preprocess/m4ri-20140914/libm4ri.la
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
# libm4ri.la - a libtool library file
|
||||||
|
# Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1.10
|
||||||
|
#
|
||||||
|
# Please DO NOT delete this file!
|
||||||
|
# It is necessary for linking the library.
|
||||||
|
|
||||||
|
# The name that we can dlopen(3).
|
||||||
|
dlname='libm4ri-0.0.20140914.so'
|
||||||
|
|
||||||
|
# Names of this library.
|
||||||
|
library_names='libm4ri-0.0.20140914.so libm4ri-0.0.20140914.so libm4ri.so'
|
||||||
|
|
||||||
|
# The name of the static archive.
|
||||||
|
old_library='libm4ri.a'
|
||||||
|
|
||||||
|
# Linker flags that can not go in dependency_libs.
|
||||||
|
inherited_linker_flags=''
|
||||||
|
|
||||||
|
# Libraries that this one depends upon.
|
||||||
|
dependency_libs=''
|
||||||
|
|
||||||
|
# Names of additional weak libraries provided by this library
|
||||||
|
weak_library_names=''
|
||||||
|
|
||||||
|
# Version information for libm4ri.
|
||||||
|
current=0
|
||||||
|
age=0
|
||||||
|
revision=0
|
||||||
|
|
||||||
|
# Is this an already installed library?
|
||||||
|
installed=no
|
||||||
|
|
||||||
|
# Should we warn about portability when linking against -modules?
|
||||||
|
shouldnotlink=no
|
||||||
|
|
||||||
|
# Files to dlopen/dlpreopen
|
||||||
|
dlopen=''
|
||||||
|
dlpreopen=''
|
||||||
|
|
||||||
|
# Directory that this library needs to be installed in:
|
||||||
|
libdir='/usr/local/lib'
|
10083
preprocess/m4ri-20140914/libtool
Executable file
10083
preprocess/m4ri-20140914/libtool
Executable file
File diff suppressed because it is too large
Load Diff
9661
preprocess/m4ri-20140914/ltmain.sh
Normal file
9661
preprocess/m4ri-20140914/ltmain.sh
Normal file
File diff suppressed because it is too large
Load Diff
140
preprocess/m4ri-20140914/m4/ax_cache_size.m4
Normal file
140
preprocess/m4ri-20140914/m4/ax_cache_size.m4
Normal file
@ -0,0 +1,140 @@
|
|||||||
|
# ===========================================================================
|
||||||
|
# http://autoconf-archive.cryp.to/ax_cache_size.html
|
||||||
|
# ===========================================================================
|
||||||
|
#
|
||||||
|
# SYNOPSIS
|
||||||
|
#
|
||||||
|
# AX_CACHE_SIZE
|
||||||
|
#
|
||||||
|
# DESCRIPTION
|
||||||
|
#
|
||||||
|
# Find L1 and L2 caches size by reading the corresponding file on UNIX or
|
||||||
|
# by requesting cpuid. The results are available in the substituted variables
|
||||||
|
# M4RI_CPU_L1_CACHE and M4RI_CPU_L2_CACHE.
|
||||||
|
#
|
||||||
|
# This macro depends on AX_GCC_X86_CPUID, AC_PROG_SED, and AX_CPU_VENDOR.
|
||||||
|
#
|
||||||
|
# LAST MODIFICATION
|
||||||
|
#
|
||||||
|
# 2011-04-11
|
||||||
|
#
|
||||||
|
# COPYLEFT
|
||||||
|
#
|
||||||
|
# Copyright (c) 2008 Christophe Tournayre <turn3r@users.sourceforge.net>
|
||||||
|
#
|
||||||
|
# Patched by:
|
||||||
|
#
|
||||||
|
# Copyright (c) 2008 Martin Albrecht <M.R.Albrecht@rhul.ac.uk>
|
||||||
|
# Copyright (c) 2008 Arnaud Bergeron <abergeron@gmail.com>
|
||||||
|
#
|
||||||
|
# Copying and distribution of this file, with or without modification, are
|
||||||
|
# permitted in any medium without royalty provided the copyright notice
|
||||||
|
# and this notice are preserved.
|
||||||
|
|
||||||
|
AC_DEFUN([AX_CACHE_SIZE],
|
||||||
|
[
|
||||||
|
AC_REQUIRE([AC_PROG_SED])
|
||||||
|
AC_REQUIRE([AX_GCC_X86_CPUID])
|
||||||
|
AC_REQUIRE([AX_CPU_VENDOR])
|
||||||
|
|
||||||
|
AX_CPU_VENDOR
|
||||||
|
|
||||||
|
ax_l1_size=
|
||||||
|
ax_l2_size=
|
||||||
|
|
||||||
|
#Check if the variable is present
|
||||||
|
if test -e /sys/devices/system/cpu/cpu0/cache/index0/size; then
|
||||||
|
for idx in `seq 0 3`; do
|
||||||
|
if test -e /sys/devices/system/cpu/cpu0/cache/index$idx/size ; then
|
||||||
|
level=`cat /sys/devices/system/cpu/cpu0/cache/index$idx/level`
|
||||||
|
size=`cat /sys/devices/system/cpu/cpu0/cache/index$idx/size`
|
||||||
|
eval CPU0\_L$level\_CACHE="$size"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
ax_l1_size=$CPU0_L1_CACHE
|
||||||
|
ax_l2_size=$CPU0_L2_CACHE
|
||||||
|
ax_l3_size=$CPU0_L3_CACHE
|
||||||
|
|
||||||
|
else
|
||||||
|
if test "x$ax_cv_cpu_vendor" != "xUnknown"; then
|
||||||
|
#Or use CPUID
|
||||||
|
AX_GCC_X86_CPUID(0x80000000)
|
||||||
|
cpu_exthigh=`echo $ax_cv_gcc_x86_cpuid_0x80000000 | cut -d ":" -f 1`
|
||||||
|
if test "x$cpu_exthi" > "x80000004"; then
|
||||||
|
AX_GCC_X86_CPUID(0x80000005) # For L1 cache
|
||||||
|
l1_hexval=`echo $ax_cv_gcc_x86_cpuid_0x80000005 | cut -d ":" -f 4`
|
||||||
|
ax_l1_size=$((0x$l1_hexval >> 24))
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "x$cpu_exthi" > "x80000005"; then
|
||||||
|
AX_GCC_X86_CPUID(0x80000006) # For L2 cache
|
||||||
|
l2_hexval=`echo $ax_cv_gcc_x86_cpuid_0x80000006 | cut -d ":" -f 3`
|
||||||
|
ax_l2_size=$((0x$l2_hexval >> 16))
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "x$cpu_exthi" > "x80000005"; then
|
||||||
|
AX_GCC_X86_CPUID(0x80000006) # For L3 cache
|
||||||
|
l2_hexval=`echo $ax_cv_gcc_x86_cpuid_0x80000006 | cut -d ":" -f 4`
|
||||||
|
ax_l2_size=$((0x$l2_hexval >> 18))*512
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
#Or use sysctl
|
||||||
|
sysctl_exe=
|
||||||
|
if test -x /usr/sbin/sysctl ; then
|
||||||
|
sysctl_exe=/usr/sbin/sysctl
|
||||||
|
elif test -x /sbin/sysctl ; then
|
||||||
|
sysctl_exe=/sbin/sysctl
|
||||||
|
fi
|
||||||
|
if test -n "$sysctl_exe"; then
|
||||||
|
if test -z "$ax_l2_size" -o "$ax_l2_size" = "0"; then
|
||||||
|
sysctl_out=`$sysctl_exe -n hw.l2cachesize 2>/dev/null`;
|
||||||
|
if test ! -z "$sysctl_out"; then
|
||||||
|
ax_l2_size=$(($sysctl_out / 1024))
|
||||||
|
fi;
|
||||||
|
|
||||||
|
fi
|
||||||
|
if test -z "$ax_l1_size" -o "$ax_l1_size" = "0" ; then
|
||||||
|
sysctl_out=`$sysctl_exe -n hw.l1dcachesize 2>/dev/null`;
|
||||||
|
if test ! -z "$sysctl_out"; then
|
||||||
|
ax_l1_size=$(($sysctl_out / 1024))
|
||||||
|
fi;
|
||||||
|
fi
|
||||||
|
if test -z "$ax_l1_size" -o "ax_l1_size" = "0" ; then
|
||||||
|
sysctl_out=`$sysctl_exe -n hw.l1cachesize 2>/dev/null`;
|
||||||
|
if test ! -z "$sysctl_out"; then
|
||||||
|
ax_l1_size=$(($sysctl_out / 1024))
|
||||||
|
fi;
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
test -z "$ax_l1_size" && ax_l1_size=0
|
||||||
|
test -z "$ax_l2_size" && ax_l2_size=0
|
||||||
|
test -z "$ax_l3_size" && ax_l3_size=$ax_l2_size
|
||||||
|
|
||||||
|
# Keep only digits if there is a unit (ie 1024K -> 1024) and convert in Bytes
|
||||||
|
AC_MSG_CHECKING(the L1 cache size)
|
||||||
|
ax_l1_size=`echo $ax_l1_size | $SED 's/\([[0-9]]\)[[A-Za-z]]$/\1/g'`
|
||||||
|
ax_l1_size=$(($ax_l1_size*1024))
|
||||||
|
AC_MSG_RESULT( $ax_l1_size Bytes)
|
||||||
|
|
||||||
|
AC_MSG_CHECKING(the L2 cache size)
|
||||||
|
ax_l2_size=`echo $ax_l2_size | $SED 's/\([[0-9]]\)[[A-Za-z]]$/\1/g'`
|
||||||
|
ax_l2_size=$(($ax_l2_size*1024))
|
||||||
|
AC_MSG_RESULT( $ax_l2_size Bytes)
|
||||||
|
|
||||||
|
AC_MSG_CHECKING(the L3 cache size)
|
||||||
|
ax_l3_size=`echo $ax_l3_size | $SED 's/\([[0-9]]\)[[A-Za-z]]$/\1/g'`
|
||||||
|
ax_l3_size=$(($ax_l3_size*1024))
|
||||||
|
AC_MSG_RESULT( $ax_l3_size Bytes)
|
||||||
|
|
||||||
|
M4RI_CPU_L1_CACHE=${ax_l1_size}
|
||||||
|
M4RI_CPU_L2_CACHE=${ax_l2_size}
|
||||||
|
M4RI_CPU_L3_CACHE=${ax_l3_size}
|
||||||
|
AC_SUBST(M4RI_CPU_L1_CACHE)
|
||||||
|
AC_SUBST(M4RI_CPU_L2_CACHE)
|
||||||
|
AC_SUBST(M4RI_CPU_L3_CACHE)
|
||||||
|
])
|
196
preprocess/m4ri-20140914/m4/ax_cache_size_tune.m4
Normal file
196
preprocess/m4ri-20140914/m4/ax_cache_size_tune.m4
Normal file
@ -0,0 +1,196 @@
|
|||||||
|
# SYNOPSIS
|
||||||
|
#
|
||||||
|
# AX_CACHE_SIZE_TUNE
|
||||||
|
#
|
||||||
|
# DESCRIPTION
|
||||||
|
#
|
||||||
|
# Find L1, L2, L3 caches size by running some timing experiments.
|
||||||
|
# The results are available in the defines __M4RI_CPU_L1_CACHE,
|
||||||
|
# __M4RI_CPU_L2_CACHE and __M4RI_CPU_L3_CACHE.
|
||||||
|
#
|
||||||
|
# This macro depends on AC_PROG_SED, AC_PROG_CC.
|
||||||
|
#
|
||||||
|
# LAST MODIFICATION
|
||||||
|
#
|
||||||
|
# 2011-04-11
|
||||||
|
#
|
||||||
|
# COPYLEFT
|
||||||
|
#
|
||||||
|
# Copyright (c) 2009,2010 Martin Albrecht <martinralbrecht@googlemail.com>
|
||||||
|
#
|
||||||
|
# Copying and distribution of this file, with or without modification, are
|
||||||
|
# permitted in any medium without royalty provided the copyright notice
|
||||||
|
# and this notice are preserved.
|
||||||
|
|
||||||
|
AC_DEFUN([AX_CACHE_SIZE_TUNE],
|
||||||
|
[ AC_REQUIRE([AC_PROG_CC])
|
||||||
|
AC_REQUIRE([AC_PROG_SED])
|
||||||
|
|
||||||
|
AC_LANG_PUSH([C])
|
||||||
|
AC_CACHE_CHECK(for cache sizes, ax_cv_cache_sizes,
|
||||||
|
[AC_RUN_IFELSE([AC_LANG_PROGRAM([[
|
||||||
|
#include <time.h>
|
||||||
|
#include <sys/time.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
double walltime(double t0) {
|
||||||
|
double mic, time;
|
||||||
|
double mega = 0.000001;
|
||||||
|
struct timeval tp;
|
||||||
|
static long base_sec = 0;
|
||||||
|
static long base_usec = 0;
|
||||||
|
|
||||||
|
(void) gettimeofday(&tp,NULL);
|
||||||
|
if (base_sec == 0) {
|
||||||
|
base_sec = tp.tv_sec;
|
||||||
|
base_usec = tp.tv_usec;
|
||||||
|
}
|
||||||
|
|
||||||
|
time = (double) (tp.tv_sec - base_sec);
|
||||||
|
mic = (double) (tp.tv_usec - base_usec);
|
||||||
|
time = (time + mic * mega) - t0;
|
||||||
|
return(time);
|
||||||
|
}
|
||||||
|
|
||||||
|
double run_experiment(size_t size, size_t trials) {
|
||||||
|
size_t i,j;
|
||||||
|
unsigned long *a = (unsigned long*)malloc(size/4);
|
||||||
|
unsigned long *b = (unsigned long*)malloc(size/4);
|
||||||
|
unsigned long *c = (unsigned long*)malloc(size/4);
|
||||||
|
unsigned long *d = (unsigned long*)malloc(size/4);
|
||||||
|
|
||||||
|
size_t n = size/4/(sizeof(unsigned long));
|
||||||
|
|
||||||
|
/* we setup a lookup table with a random-ish pattern */
|
||||||
|
a[0] = 1337;
|
||||||
|
b[0] = 5345345;
|
||||||
|
for(j=1; j<n ; j++) {
|
||||||
|
a[j] = a[j-1] * 1073741827;
|
||||||
|
a[j-1] %= n;
|
||||||
|
b[j] = b[j-1] * 1073741827;
|
||||||
|
b[j-1] %= n;
|
||||||
|
}
|
||||||
|
a[n-1] %= n;
|
||||||
|
b[n-1] %= n;
|
||||||
|
|
||||||
|
double wt = walltime(0.0);
|
||||||
|
clock_t ct = clock();
|
||||||
|
for(i=0; i<trials; i++) {
|
||||||
|
for(j=0; j<n; j+=8) {
|
||||||
|
d[b[j+0]] = c[a[j+0]];
|
||||||
|
d[b[j+1]] = c[a[j+1]];
|
||||||
|
d[b[j+2]] = c[a[j+2]];
|
||||||
|
d[b[j+3]] = c[a[j+3]];
|
||||||
|
d[b[j+4]] = c[a[j+4]];
|
||||||
|
d[b[j+5]] = c[a[j+5]];
|
||||||
|
d[b[j+6]] = c[a[j+6]];
|
||||||
|
d[b[j+7]] = c[a[j+7]];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ct = clock() - ct;
|
||||||
|
wt = walltime(wt);
|
||||||
|
free(a);
|
||||||
|
free(b);
|
||||||
|
free(c);
|
||||||
|
free(d);
|
||||||
|
return (double)wt;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#define NUMBER_OF_EXPERIMENTS 8
|
||||||
|
|
||||||
|
size_t cache_size(const size_t *candidates, const size_t n, size_t trials) {
|
||||||
|
double times[NUMBER_OF_EXPERIMENTS][n];
|
||||||
|
double dtimes[NUMBER_OF_EXPERIMENTS][n];
|
||||||
|
size_t i,j;
|
||||||
|
double wt, result;
|
||||||
|
|
||||||
|
|
||||||
|
for(j=0; j<NUMBER_OF_EXPERIMENTS; j++) {
|
||||||
|
size_t mult = 1;
|
||||||
|
size_t _trials = trials;
|
||||||
|
run_experiment(candidates[0]*1024,_trials);
|
||||||
|
wt = walltime(0.0);
|
||||||
|
times[j][0] = run_experiment(candidates[0]*1024,_trials);
|
||||||
|
wt = walltime(wt);
|
||||||
|
dtimes[j][0] = 1.0;
|
||||||
|
printf("s: %5zu, rx: %6.2f, x: %6.2f, wt: %6.2f, dx: NaN\n",candidates[0],times[j][0],times[j][0],wt);
|
||||||
|
fflush(NULL);
|
||||||
|
|
||||||
|
for(i=1;i<n;i++) {
|
||||||
|
run_experiment(candidates[i]*1024,_trials);
|
||||||
|
wt = walltime(0.0);
|
||||||
|
result = run_experiment(candidates[i]*1024,_trials);
|
||||||
|
wt = walltime(wt);
|
||||||
|
times[j][i] = mult*result;
|
||||||
|
dtimes[j][i] = candidates[i-1]*times[j][i]/times[j][i-1]/candidates[i];
|
||||||
|
|
||||||
|
printf("s: %5zu, rx: %6.2f, x: %6.2f, wt: %6.2f, dx: %6.2f\n",candidates[i],result,times[j][i],wt,dtimes[j][i]);
|
||||||
|
fflush(NULL);
|
||||||
|
|
||||||
|
while(wt > 0.25) {
|
||||||
|
_trials = _trials/2;
|
||||||
|
mult = 2*mult;
|
||||||
|
wt /= 2.0;
|
||||||
|
result /= 2.0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
printf("\n");
|
||||||
|
}
|
||||||
|
for(i=0;i<n;i++) {
|
||||||
|
double tmp = 0.0;
|
||||||
|
for(j=0; j<NUMBER_OF_EXPERIMENTS; j++) {
|
||||||
|
tmp += dtimes[j][i];
|
||||||
|
}
|
||||||
|
dtimes[0][i] = tmp/NUMBER_OF_EXPERIMENTS;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t max = 1;
|
||||||
|
for(i=1;i<n;i++){
|
||||||
|
if (dtimes[0][i] > dtimes[0][max] ) {
|
||||||
|
max = i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return candidates[max-1];
|
||||||
|
}
|
||||||
|
]],
|
||||||
|
[[
|
||||||
|
const size_t c1[] = { 4, 8, 16, 32, 64, 128};
|
||||||
|
const size_t c2[] = { 128, 256, 512};
|
||||||
|
const size_t c3[] = {1024,1536,2048,3072,4096,6144,8192,16384,32768};
|
||||||
|
|
||||||
|
FILE *f;
|
||||||
|
printf("\n");
|
||||||
|
size_t _l1 = cache_size(c1, 6, 1ULL<<15);
|
||||||
|
size_t _l2 = cache_size(c2, 3, 1ULL<<12);
|
||||||
|
size_t _l3 = cache_size(c3, 9, 1ULL<< 9);
|
||||||
|
|
||||||
|
f = fopen("conftest_cache_sizes", "w"); if (!f) return 1;
|
||||||
|
fprintf(f,"%lu:%lu:%lu\n",(unsigned long)(_l1*1024),(unsigned long)(_l2*1024),(unsigned long)(_l3*1024));
|
||||||
|
fclose(f);
|
||||||
|
return 0;
|
||||||
|
]])],
|
||||||
|
[ax_cv_cache_sizes=`cat conftest_cache_sizes`; rm -f conftest_cache_sizes],
|
||||||
|
[ax_cv_cache_sizes=unknown; rm -f conftest_cache_sizes],
|
||||||
|
[ax_cv_cache_sizes=unknown])])
|
||||||
|
AC_LANG_POP([C])
|
||||||
|
AC_MSG_CHECKING(the L1 cache size)
|
||||||
|
ax_l1_size=`echo $ax_cv_cache_sizes | cut -d ':' -f 1`
|
||||||
|
AC_MSG_RESULT( $ax_l1_size Bytes)
|
||||||
|
|
||||||
|
AC_MSG_CHECKING(the L2 cache size)
|
||||||
|
ax_l2_size=`echo $ax_cv_cache_sizes | cut -d ':' -f 2`
|
||||||
|
AC_MSG_RESULT( $ax_l2_size Bytes)
|
||||||
|
|
||||||
|
AC_MSG_CHECKING(the L3 cache size)
|
||||||
|
ax_l3_size=`echo $ax_cv_cache_sizes | cut -d ':' -f 3`
|
||||||
|
AC_MSG_RESULT( $ax_l3_size Bytes)
|
||||||
|
|
||||||
|
M4RI_CPU_L1_CACHE=${ax_l1_size}
|
||||||
|
M4RI_CPU_L2_CACHE=${ax_l2_size}
|
||||||
|
M4RI_CPU_L3_CACHE=${ax_l3_size}
|
||||||
|
AC_SUBST(M4RI_CPU_L1_CACHE)
|
||||||
|
AC_SUBST(M4RI_CPU_L2_CACHE)
|
||||||
|
AC_SUBST(M4RI_CPU_L3_CACHE)
|
||||||
|
])
|
78
preprocess/m4ri-20140914/m4/ax_check_compiler_flags.m4
Normal file
78
preprocess/m4ri-20140914/m4/ax_check_compiler_flags.m4
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
# ===========================================================================
|
||||||
|
# http://autoconf-archive.cryp.to/ax_check_compiler_flags.html
|
||||||
|
# ===========================================================================
|
||||||
|
#
|
||||||
|
# SYNOPSIS
|
||||||
|
#
|
||||||
|
# AX_CHECK_COMPILER_FLAGS(FLAGS, [ACTION-SUCCESS], [ACTION-FAILURE])
|
||||||
|
#
|
||||||
|
# DESCRIPTION
|
||||||
|
#
|
||||||
|
# Check whether the given compiler FLAGS work with the current language's
|
||||||
|
# compiler, or whether they give an error. (Warnings, however, are
|
||||||
|
# ignored.)
|
||||||
|
#
|
||||||
|
# ACTION-SUCCESS/ACTION-FAILURE are shell commands to execute on
|
||||||
|
# success/failure.
|
||||||
|
#
|
||||||
|
# LAST MODIFICATION
|
||||||
|
#
|
||||||
|
# 2008-04-12
|
||||||
|
#
|
||||||
|
# COPYLEFT
|
||||||
|
#
|
||||||
|
# Copyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu>
|
||||||
|
# Copyright (c) 2008 Matteo Frigo
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify it
|
||||||
|
# under the terms of the GNU General Public License as published by the
|
||||||
|
# Free Software Foundation, either version 3 of the License, or (at your
|
||||||
|
# option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but
|
||||||
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
||||||
|
# Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along
|
||||||
|
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
# As a special exception, the respective Autoconf Macro's copyright owner
|
||||||
|
# gives unlimited permission to copy, distribute and modify the configure
|
||||||
|
# scripts that are the output of Autoconf when processing the Macro. You
|
||||||
|
# need not follow the terms of the GNU General Public License when using
|
||||||
|
# or distributing such scripts, even though portions of the text of the
|
||||||
|
# Macro appear in them. The GNU General Public License (GPL) does govern
|
||||||
|
# all other use of the material that constitutes the Autoconf Macro.
|
||||||
|
#
|
||||||
|
# This special exception to the GPL applies to versions of the Autoconf
|
||||||
|
# Macro released by the Autoconf Macro Archive. When you make and
|
||||||
|
# distribute a modified version of the Autoconf Macro, you may extend this
|
||||||
|
# special exception to the GPL to apply to your modified version as well.
|
||||||
|
|
||||||
|
AC_DEFUN([AX_CHECK_COMPILER_FLAGS],
|
||||||
|
[AC_PREREQ(2.59) dnl for _AC_LANG_PREFIX
|
||||||
|
AC_MSG_CHECKING([whether _AC_LANG compiler accepts $1])
|
||||||
|
dnl Some hackery here since AC_CACHE_VAL can't handle a non-literal varname:
|
||||||
|
AS_LITERAL_IF([$1],
|
||||||
|
[AC_CACHE_VAL(AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_$1), [
|
||||||
|
ax_save_FLAGS=$[]_AC_LANG_PREFIX[]FLAGS
|
||||||
|
_AC_LANG_PREFIX[]FLAGS="$1"
|
||||||
|
AC_COMPILE_IFELSE([AC_LANG_PROGRAM()],
|
||||||
|
AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_$1)=yes,
|
||||||
|
AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_$1)=no)
|
||||||
|
_AC_LANG_PREFIX[]FLAGS=$ax_save_FLAGS])],
|
||||||
|
[ax_save_FLAGS=$[]_AC_LANG_PREFIX[]FLAGS
|
||||||
|
_AC_LANG_PREFIX[]FLAGS="$1"
|
||||||
|
AC_COMPILE_IFELSE([AC_LANG_PROGRAM()],
|
||||||
|
eval AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_$1)=yes,
|
||||||
|
eval AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_$1)=no)
|
||||||
|
_AC_LANG_PREFIX[]FLAGS=$ax_save_FLAGS])
|
||||||
|
eval ax_check_compiler_flags=$AS_TR_SH(ax_cv_[]_AC_LANG_ABBREV[]_flags_$1)
|
||||||
|
AC_MSG_RESULT($ax_check_compiler_flags)
|
||||||
|
if test "x$ax_check_compiler_flags" = xyes; then
|
||||||
|
m4_default([$2], :)
|
||||||
|
else
|
||||||
|
m4_default([$3], :)
|
||||||
|
fi
|
||||||
|
])dnl AX_CHECK_COMPILER_FLAGS
|
65
preprocess/m4ri-20140914/m4/ax_cpu_vendor.m4
Normal file
65
preprocess/m4ri-20140914/m4/ax_cpu_vendor.m4
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
# ===========================================================================
|
||||||
|
# http://autoconf-archive.cryp.to/ax_cpu_vendor.html
|
||||||
|
# ===========================================================================
|
||||||
|
#
|
||||||
|
# SYNOPSIS
|
||||||
|
#
|
||||||
|
# AX_CPU_VENDOR
|
||||||
|
#
|
||||||
|
# DESCRIPTION
|
||||||
|
#
|
||||||
|
# Find your CPU's vendor by requesting cpuid and define "ax_cv_cpu_vendor"
|
||||||
|
# accordingly. This macro depends on AX_GCC_X86_CPUID.
|
||||||
|
#
|
||||||
|
# LAST MODIFICATION
|
||||||
|
#
|
||||||
|
# 2008-04-12
|
||||||
|
#
|
||||||
|
# COPYLEFT
|
||||||
|
#
|
||||||
|
# Copyright (c) 2008 Christophe Tournayre <turn3r@users.sourceforge.net>
|
||||||
|
#
|
||||||
|
# Copying and distribution of this file, with or without modification, are
|
||||||
|
# permitted in any medium without royalty provided the copyright notice
|
||||||
|
# and this notice are preserved.
|
||||||
|
|
||||||
|
AC_DEFUN([AX_CPU_VENDOR],
|
||||||
|
[
|
||||||
|
AC_REQUIRE([AX_GCC_X86_CPUID])
|
||||||
|
AX_GCC_X86_CPUID(0x0)
|
||||||
|
|
||||||
|
AC_CACHE_CHECK(for the processor vendor, ax_cv_cpu_vendor,
|
||||||
|
[
|
||||||
|
vendor=`echo $ax_cv_gcc_x86_cpuid_0x0 | cut -d ":" -f 2`
|
||||||
|
|
||||||
|
case $vendor in
|
||||||
|
756e6547*)
|
||||||
|
ax_cv_cpu_vendor="Intel"
|
||||||
|
;;
|
||||||
|
68747541*)
|
||||||
|
ax_cv_cpu_vendor="AMD"
|
||||||
|
;;
|
||||||
|
69727943*)
|
||||||
|
ax_cv_cpu_vendor="Cyrix"
|
||||||
|
;;
|
||||||
|
746e6543*)
|
||||||
|
ax_cv_cpu_vendor="IDT"
|
||||||
|
;;
|
||||||
|
646f6547*)
|
||||||
|
ax_cv_cpu_vendor="Natsemi Geode"
|
||||||
|
;;
|
||||||
|
52697365*)
|
||||||
|
ax_cv_cpu_vendor="Rise"
|
||||||
|
;;
|
||||||
|
65736952*)
|
||||||
|
ax_cv_cpu_vendor="Rise"
|
||||||
|
;;
|
||||||
|
20536953*)
|
||||||
|
ax_cv_cpu_vendor="SiS"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
ax_cv_cpu_vendor="Unknown"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
])
|
||||||
|
])
|
109
preprocess/m4ri-20140914/m4/ax_ext.m4
Normal file
109
preprocess/m4ri-20140914/m4/ax_ext.m4
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
# ===========================================================================
|
||||||
|
# http://autoconf-archive.cryp.to/ax_ext.html
|
||||||
|
# ===========================================================================
|
||||||
|
#
|
||||||
|
# SYNOPSIS
|
||||||
|
#
|
||||||
|
# AX_EXT
|
||||||
|
#
|
||||||
|
# DESCRIPTION
|
||||||
|
#
|
||||||
|
/# Find supported SIMD extensions by requesting cpuid. When an SIMD
|
||||||
|
# extension is found, the -m"simdextensionname" is added to SIMD_CFLAGS
|
||||||
|
# (only if compilator support it) (ie : if "sse2" is available "-msse2" is
|
||||||
|
# added to SIMD_CFLAGS)
|
||||||
|
#
|
||||||
|
# This macro calls:
|
||||||
|
#
|
||||||
|
# AC_SUBST(SIMD_CFLAGS)
|
||||||
|
#
|
||||||
|
# And defines:
|
||||||
|
#
|
||||||
|
# HAVE_MMX / HAVE_SSE / HAVE_SSE2 / HAVE_SSE3 / HAVE_SSSE3
|
||||||
|
#
|
||||||
|
# LAST MODIFICATION
|
||||||
|
#
|
||||||
|
# 2008-04-12
|
||||||
|
#
|
||||||
|
# COPYLEFT
|
||||||
|
#
|
||||||
|
# Copyright (c) 2008 Christophe Tournayre <turn3r@users.sourceforge.net>
|
||||||
|
#
|
||||||
|
# Copying and distribution of this file, with or without modification, are
|
||||||
|
# permitted in any medium without royalty provided the copyright notice
|
||||||
|
# and this notice are preserved.
|
||||||
|
|
||||||
|
AC_DEFUN([AX_EXT],
|
||||||
|
[
|
||||||
|
#AC_REQUIRE([AX_GCC_X86_CPUID])
|
||||||
|
|
||||||
|
AX_GCC_X86_CPUID(0x00000001)
|
||||||
|
ecx=`echo $ax_cv_gcc_x86_cpuid_0x00000001 | cut -d ":" -f 3`
|
||||||
|
edx=`echo $ax_cv_gcc_x86_cpuid_0x00000001 | cut -d ":" -f 4`
|
||||||
|
|
||||||
|
AC_CACHE_CHECK([whether mmx is supported], [ax_cv_have_mmx_ext],
|
||||||
|
[
|
||||||
|
ax_cv_have_mmx_ext=no
|
||||||
|
if test "$((0x$edx>>23&0x01))" = 1; then
|
||||||
|
ax_cv_have_mmx_ext=yes
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
AC_CACHE_CHECK([whether sse is supported], [ax_cv_have_sse_ext],
|
||||||
|
[
|
||||||
|
ax_cv_have_sse_ext=no
|
||||||
|
if test "$((0x$edx>>25&0x01))" = 1; then
|
||||||
|
ax_cv_have_sse_ext=yes
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
AC_CACHE_CHECK([whether sse2 is supported], [ax_cv_have_sse2_ext],
|
||||||
|
[
|
||||||
|
ax_cv_have_sse2_ext=no
|
||||||
|
if test "$((0x$edx>>26&0x01))" = 1; then
|
||||||
|
ax_cv_have_sse2_ext=yes
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
AC_CACHE_CHECK([whether sse3 is supported], [ax_cv_have_sse3_ext],
|
||||||
|
[
|
||||||
|
ax_cv_have_sse3_ext=no
|
||||||
|
if test "$((0x$ecx&0x01))" = 1; then
|
||||||
|
ax_cv_have_sse3_ext=yes
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
AC_CACHE_CHECK([whether ssse3 is supported], [ax_cv_have_ssse3_ext],
|
||||||
|
[
|
||||||
|
ax_cv_have_ssse3_ext=no
|
||||||
|
if test "$((0x$ecx>>9&0x01))" = 1; then
|
||||||
|
ax_cv_have_ssse3_ext=yes
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
|
if test "$ax_cv_have_mmx_ext" = yes; then
|
||||||
|
AC_DEFINE(HAVE_MMX,,[Support mmx instructions])
|
||||||
|
AX_CHECK_COMPILER_FLAGS(-mmmx, SIMD_CFLAGS="$SIMD_CFLAGS -mmmx", [])
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$ax_cv_have_sse_ext" = yes; then
|
||||||
|
AC_DEFINE(HAVE_SSE,,[Support SSE (Streaming SIMD Extensions) instructions])
|
||||||
|
AX_CHECK_COMPILER_FLAGS(-msse, SIMD_CFLAGS="$SIMD_CFLAGS -msse", [])
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$ax_cv_have_sse2_ext" = yes; then
|
||||||
|
AC_DEFINE(HAVE_SSE2,,[Support SSE2 (Streaming SIMD Extensions 2) instructions])
|
||||||
|
AX_CHECK_COMPILER_FLAGS(-msse2, SIMD_CFLAGS="$SIMD_CFLAGS -msse2", [])
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$ax_cv_have_sse3_ext" = yes; then
|
||||||
|
AC_DEFINE(HAVE_SSE3,,[Support SSE3 (Streaming SIMD Extensions 3) instructions])
|
||||||
|
AX_CHECK_COMPILER_FLAGS(-msse3, SIMD_CFLAGS="$SIMD_CFLAGS -msse3", [])
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$ax_cv_have_ssse3_ext" = yes; then
|
||||||
|
AC_DEFINE(HAVE_SSSE3,,[Support SSSE3 (Supplemental Streaming SIMD Extensions 3) instructions])
|
||||||
|
fi
|
||||||
|
|
||||||
|
AC_SUBST(SIMD_CFLAGS)
|
||||||
|
])
|
51
preprocess/m4ri-20140914/m4/ax_func_posix_memalign.m4
Normal file
51
preprocess/m4ri-20140914/m4/ax_func_posix_memalign.m4
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
# ===========================================================================
|
||||||
|
# http://www.gnu.org/software/autoconf-archive/ax_func_posix_memalign.html
|
||||||
|
# ===========================================================================
|
||||||
|
#
|
||||||
|
# SYNOPSIS
|
||||||
|
#
|
||||||
|
# AX_FUNC_POSIX_MEMALIGN
|
||||||
|
#
|
||||||
|
# DESCRIPTION
|
||||||
|
#
|
||||||
|
# Some versions of posix_memalign (notably glibc 2.2.5) incorrectly apply
|
||||||
|
# their power-of-two check to the size argument, not the alignment
|
||||||
|
# argument. AX_FUNC_POSIX_MEMALIGN defines HAVE_POSIX_MEMALIGN if the
|
||||||
|
# power-of-two check is correctly applied to the alignment argument.
|
||||||
|
#
|
||||||
|
# LICENSE
|
||||||
|
#
|
||||||
|
# Copyright (c) 2008 Scott Pakin <pakin@uiuc.edu>
|
||||||
|
#
|
||||||
|
# Copying and distribution of this file, with or without modification, are
|
||||||
|
# permitted in any medium without royalty provided the copyright notice
|
||||||
|
# and this notice are preserved. This file is offered as-is, without any
|
||||||
|
# warranty.
|
||||||
|
|
||||||
|
#serial 7
|
||||||
|
|
||||||
|
AC_DEFUN([AX_FUNC_POSIX_MEMALIGN],
|
||||||
|
[AC_CACHE_CHECK([for working posix_memalign],
|
||||||
|
[ax_cv_func_posix_memalign_works],
|
||||||
|
[AC_TRY_RUN([
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
main ()
|
||||||
|
{
|
||||||
|
void *buffer;
|
||||||
|
|
||||||
|
/* Some versions of glibc incorrectly perform the alignment check on
|
||||||
|
* the size word. */
|
||||||
|
exit (posix_memalign (&buffer, sizeof(void *), 123) != 0);
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[ax_cv_func_posix_memalign_works=yes],
|
||||||
|
[ax_cv_func_posix_memalign_works=no],
|
||||||
|
[ax_cv_func_posix_memalign_works=no])])
|
||||||
|
if test "$ax_cv_func_posix_memalign_works" = "yes" ; then
|
||||||
|
AC_DEFINE([HAVE_POSIX_MEMALIGN], [1],
|
||||||
|
[Define to 1 if `posix_memalign' works.])
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
91
preprocess/m4ri-20140914/m4/ax_gcc_x86_cpuid.m4
Normal file
91
preprocess/m4ri-20140914/m4/ax_gcc_x86_cpuid.m4
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
# ===========================================================================
|
||||||
|
# http://autoconf-archive.cryp.to/ax_gcc_x86_cpuid.html
|
||||||
|
# ===========================================================================
|
||||||
|
#
|
||||||
|
# SYNOPSIS
|
||||||
|
#
|
||||||
|
# AX_GCC_X86_CPUID(OP)
|
||||||
|
#
|
||||||
|
# DESCRIPTION
|
||||||
|
#
|
||||||
|
# On Pentium and later x86 processors, with gcc or a compiler that has a
|
||||||
|
# compatible syntax for inline assembly instructions, run a small program
|
||||||
|
# that executes the cpuid instruction with input OP. This can be used to
|
||||||
|
# detect the CPU type.
|
||||||
|
#
|
||||||
|
# On output, the values of the eax, ebx, ecx, and edx registers are stored
|
||||||
|
# as hexadecimal strings as "eax:ebx:ecx:edx" in the cache variable
|
||||||
|
# ax_cv_gcc_x86_cpuid_OP.
|
||||||
|
#
|
||||||
|
# If the cpuid instruction fails (because you are running a
|
||||||
|
# cross-compiler, or because you are not using gcc, or because you are on
|
||||||
|
# a processor that doesn't have this instruction), ax_cv_gcc_x86_cpuid_OP
|
||||||
|
# is set to the string "unknown".
|
||||||
|
#
|
||||||
|
# This macro mainly exists to be used in AX_GCC_ARCHFLAG.
|
||||||
|
#
|
||||||
|
# LAST MODIFICATION
|
||||||
|
#
|
||||||
|
# 2008-04-12
|
||||||
|
#
|
||||||
|
# COPYLEFT
|
||||||
|
#
|
||||||
|
# Copyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu>
|
||||||
|
# Copyright (c) 2008 Matteo Frigo
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify it
|
||||||
|
# under the terms of the GNU General Public License as published by the
|
||||||
|
# Free Software Foundation, either version 3 of the License, or (at your
|
||||||
|
# option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but
|
||||||
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
||||||
|
# Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along
|
||||||
|
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
# As a special exception, the respective Autoconf Macro's copyright owner
|
||||||
|
# gives unlimited permission to copy, distribute and modify the configure
|
||||||
|
# scripts that are the output of Autoconf when processing the Macro. You
|
||||||
|
# need not follow the terms of the GNU General Public License when using
|
||||||
|
# or distributing such scripts, even though portions of the text of the
|
||||||
|
# Macro appear in them. The GNU General Public License (GPL) does govern
|
||||||
|
# all other use of the material that constitutes the Autoconf Macro.
|
||||||
|
#
|
||||||
|
# This special exception to the GPL applies to versions of the Autoconf
|
||||||
|
# Macro released by the Autoconf Macro Archive. When you make and
|
||||||
|
# distribute a modified version of the Autoconf Macro, you may extend this
|
||||||
|
# special exception to the GPL to apply to your modified version as well.
|
||||||
|
|
||||||
|
AC_DEFUN([AX_GCC_X86_CPUID],
|
||||||
|
[AC_REQUIRE([AC_PROG_CC])
|
||||||
|
AC_LANG_PUSH([C])
|
||||||
|
AC_CACHE_CHECK(for x86 cpuid $1 output, ax_cv_gcc_x86_cpuid_$1,
|
||||||
|
[AC_RUN_IFELSE([AC_LANG_PROGRAM([#include <stdio.h>], [
|
||||||
|
int op = $1+0, eax, ebx, ecx, edx;
|
||||||
|
FILE *f;
|
||||||
|
/* 64-bit code is easy */
|
||||||
|
if (sizeof(long) == 8) {
|
||||||
|
__asm__("cpuid"
|
||||||
|
: "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx)
|
||||||
|
: "a" (op));
|
||||||
|
} else {
|
||||||
|
__asm__("pushl %%ebx \n\t"
|
||||||
|
"cpuid \n\t"
|
||||||
|
"movl %%ebx, %1 \n\t"
|
||||||
|
"popl %%ebx \n\t"
|
||||||
|
: "=a" (eax), "=r" (ebx), "=c" (ecx), "=d" (edx)
|
||||||
|
: "a" (op));
|
||||||
|
}
|
||||||
|
f = fopen("conftest_cpuid", "w"); if (!f) return 1;
|
||||||
|
fprintf(f, "%x:%x:%x:%x\n", eax, ebx, ecx, edx);
|
||||||
|
fclose(f);
|
||||||
|
return 0;
|
||||||
|
])],
|
||||||
|
[ax_cv_gcc_x86_cpuid_$1=`cat conftest_cpuid`; rm -f conftest_cpuid],
|
||||||
|
[ax_cv_gcc_x86_cpuid_$1=unknown; rm -f conftest_cpuid],
|
||||||
|
[ax_cv_gcc_x86_cpuid_$1=unknown])])
|
||||||
|
AC_LANG_POP([C])
|
||||||
|
])
|
68
preprocess/m4ri-20140914/m4/ax_guess_path_header.m4
Normal file
68
preprocess/m4ri-20140914/m4/ax_guess_path_header.m4
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
#
|
||||||
|
# SYNOPSIS
|
||||||
|
#
|
||||||
|
# AX_GUESS_PATH_HEADER([foo.h])
|
||||||
|
#
|
||||||
|
# DESCRIPTION
|
||||||
|
#
|
||||||
|
# Search for header foo.h in -Ipath's found in CPPFLAGS and CFLAGS and set FOO_H_PATH to
|
||||||
|
# the full directory path where foo.h was found.
|
||||||
|
# If no header is found in the paths given in CPPFLAGS and CFLAGS, then lastly it looks in /usr/local/include.
|
||||||
|
#
|
||||||
|
# LAST MODIFICATION
|
||||||
|
#
|
||||||
|
# 2011-04-11
|
||||||
|
#
|
||||||
|
# COPYLEFT
|
||||||
|
#
|
||||||
|
# Copyright (c) 2011 Carlo Wood <carlo@alinoe.com>
|
||||||
|
#
|
||||||
|
# Copying and distribution of this file, with or without modification, are
|
||||||
|
# permitted in any medium without royalty provided the copyright notice
|
||||||
|
# and this notice are preserved.
|
||||||
|
|
||||||
|
AC_DEFUN([AX_GUESS_PATH_HEADER],
|
||||||
|
[
|
||||||
|
function cw_search_header_path
|
||||||
|
{
|
||||||
|
n=2
|
||||||
|
while test $n -le [$]#; do
|
||||||
|
eval arg=\$"$n"
|
||||||
|
case "$arg" in
|
||||||
|
-I*)
|
||||||
|
path="`echo "$arg" | sed -e 's/-I//'`"
|
||||||
|
if test -e "$path/$1"; then
|
||||||
|
echo "$path"
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
n=$((n+1))
|
||||||
|
done
|
||||||
|
if test -e "/usr/local/include/$1"; then
|
||||||
|
echo "/usr/local/include"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
have_realpath=`which realpath`
|
||||||
|
|
||||||
|
cw_headername_uppercase=`echo "m4_toupper([$1])" | sed -e 's/[[^A-Z]]/_/g'`
|
||||||
|
AC_CACHE_CHECK([if we can find [$1]], [cw_cv_"$[]cw_headername_uppercase"_path],
|
||||||
|
[
|
||||||
|
cw_header_path=`eval cw_search_header_path [$1] $CPPFLAGS $CFLAGS`
|
||||||
|
if test -n "$cw_header_path"; then
|
||||||
|
if test "x$have_realpath" != "x"; then
|
||||||
|
eval cw_cv_"$cw_headername_uppercase"_path=`realpath -s "$cw_header_path"`
|
||||||
|
else
|
||||||
|
eval cw_cv_"$cw_headername_uppercase"_path="$cw_header_path"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
eval cw_cv_"$cw_headername_uppercase"_path="no"
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
if eval test \"\$cw_cv_"$cw_headername_uppercase"_path\" = "no"; then
|
||||||
|
eval "$cw_headername_uppercase"_PATH=""
|
||||||
|
else
|
||||||
|
eval "$cw_headername_uppercase"_PATH=\"\$cw_cv_"$cw_headername_uppercase"_path\"
|
||||||
|
fi
|
||||||
|
])
|
68
preprocess/m4ri-20140914/m4/ax_guess_path_lib.m4
Normal file
68
preprocess/m4ri-20140914/m4/ax_guess_path_lib.m4
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
#
|
||||||
|
# SYNOPSIS
|
||||||
|
#
|
||||||
|
# AX_GUESS_PATH_LIB([foo])
|
||||||
|
#
|
||||||
|
# DESCRIPTION
|
||||||
|
#
|
||||||
|
# Search for library foo in -Lpath's found in LDFLAGS and set LIBFOO_PATH to
|
||||||
|
# the full directory path where libfoo.so was found.
|
||||||
|
# If no library is found in paths given in LDFLAGS, then lastly it looks in /usr/local/lib.
|
||||||
|
#
|
||||||
|
# LAST MODIFICATION
|
||||||
|
#
|
||||||
|
# 2011-04-11
|
||||||
|
#
|
||||||
|
# COPYLEFT
|
||||||
|
#
|
||||||
|
# Copyright (c) 2011 Carlo Wood <carlo@alinoe.com>
|
||||||
|
#
|
||||||
|
# Copying and distribution of this file, with or without modification, are
|
||||||
|
# permitted in any medium without royalty provided the copyright notice
|
||||||
|
# and this notice are preserved.
|
||||||
|
|
||||||
|
AC_DEFUN([AX_GUESS_PATH_LIB],
|
||||||
|
[
|
||||||
|
function cw_search_library_path
|
||||||
|
{
|
||||||
|
n=2
|
||||||
|
while test $n -le [$]#; do
|
||||||
|
eval arg=\$"$n"
|
||||||
|
case "$arg" in
|
||||||
|
-L*)
|
||||||
|
path="`echo "$arg" | sed -e 's/-L//'`"
|
||||||
|
if test -e "$path/lib$1.so"; then
|
||||||
|
echo "$path"
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
n=$((n+1))
|
||||||
|
done
|
||||||
|
if test -e "/usr/local/lib/lib$1.so"; then
|
||||||
|
echo "/usr/local/lib"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
have_realpath=`which realpath`
|
||||||
|
|
||||||
|
cw_libname_uppercase="m4_toupper([$1])"
|
||||||
|
AC_CACHE_CHECK([if we can find lib[$1].so], [cw_cv_lib"$[]cw_libname_uppercase"_path],
|
||||||
|
[
|
||||||
|
cw_library_path=`eval cw_search_library_path [$1] $LDFLAGS`
|
||||||
|
if test -n "$cw_library_path"; then
|
||||||
|
if test "x$have_realpath" != "x"; then
|
||||||
|
eval cw_cv_lib"$cw_libname_uppercase"_path=`realpath -s "$cw_library_path"`
|
||||||
|
else
|
||||||
|
eval cw_cv_lib"$cw_libname_uppercase"_path="$cw_library_path"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
eval cw_cv_lib"$cw_libname_uppercase"_path="no"
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
if eval test \"\$cw_cv_lib"$cw_libname_uppercase"_path\" = "no"; then
|
||||||
|
eval LIB"$cw_libname_uppercase"_PATH=""
|
||||||
|
else
|
||||||
|
eval LIB"$cw_libname_uppercase"_PATH=\"\$cw_cv_lib"$cw_libname_uppercase"_path\"
|
||||||
|
fi
|
||||||
|
])
|
101
preprocess/m4ri-20140914/m4/ax_openmp.m4
Normal file
101
preprocess/m4ri-20140914/m4/ax_openmp.m4
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
# ===========================================================================
|
||||||
|
# http://autoconf-archive.cryp.to/ax_openmp.html
|
||||||
|
# ===========================================================================
|
||||||
|
#
|
||||||
|
# SYNOPSIS
|
||||||
|
#
|
||||||
|
# AX_OPENMP([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
|
||||||
|
#
|
||||||
|
# DESCRIPTION
|
||||||
|
#
|
||||||
|
# This macro tries to find out how to compile programs that use OpenMP a
|
||||||
|
# standard API and set of compiler directives for parallel programming
|
||||||
|
# (see http://www-unix.mcs/)
|
||||||
|
#
|
||||||
|
# On success, it sets the OPENMP_CFLAGS/OPENMP_CXXFLAGS/OPENMP_F77FLAGS
|
||||||
|
# output variable to the flag (e.g. -omp) used both to compile *and* link
|
||||||
|
# OpenMP programs in the current language.
|
||||||
|
#
|
||||||
|
# NOTE: You are assumed to not only compile your program with these flags,
|
||||||
|
# but also link it with them as well.
|
||||||
|
#
|
||||||
|
# If you want to compile everything with OpenMP, you should set:
|
||||||
|
#
|
||||||
|
# CFLAGS="$CFLAGS $OPENMP_CFLAGS"
|
||||||
|
# #OR# CXXFLAGS="$CXXFLAGS $OPENMP_CXXFLAGS"
|
||||||
|
# #OR# FFLAGS="$FFLAGS $OPENMP_FFLAGS"
|
||||||
|
#
|
||||||
|
# (depending on the selected language).
|
||||||
|
#
|
||||||
|
# The user can override the default choice by setting the corresponding
|
||||||
|
# environment variable (e.g. OPENMP_CFLAGS).
|
||||||
|
#
|
||||||
|
# ACTION-IF-FOUND is a list of shell commands to run if an OpenMP flag is
|
||||||
|
# found, and ACTION-IF-NOT-FOUND is a list of commands to run it if it is
|
||||||
|
# not found. If ACTION-IF-FOUND is not specified, the default action will
|
||||||
|
# define HAVE_OPENMP.
|
||||||
|
#
|
||||||
|
# LAST MODIFICATION
|
||||||
|
#
|
||||||
|
# 2008-04-12
|
||||||
|
#
|
||||||
|
# COPYLEFT
|
||||||
|
#
|
||||||
|
# Copyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu>
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify it
|
||||||
|
# under the terms of the GNU General Public License as published by the
|
||||||
|
# Free Software Foundation, either version 3 of the License, or (at your
|
||||||
|
# option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but
|
||||||
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
||||||
|
# Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along
|
||||||
|
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
# As a special exception, the respective Autoconf Macro's copyright owner
|
||||||
|
# gives unlimited permission to copy, distribute and modify the configure
|
||||||
|
# scripts that are the output of Autoconf when processing the Macro. You
|
||||||
|
# need not follow the terms of the GNU General Public License when using
|
||||||
|
# or distributing such scripts, even though portions of the text of the
|
||||||
|
# Macro appear in them. The GNU General Public License (GPL) does govern
|
||||||
|
# all other use of the material that constitutes the Autoconf Macro.
|
||||||
|
#
|
||||||
|
# This special exception to the GPL applies to versions of the Autoconf
|
||||||
|
# Macro released by the Autoconf Macro Archive. When you make and
|
||||||
|
# distribute a modified version of the Autoconf Macro, you may extend this
|
||||||
|
# special exception to the GPL to apply to your modified version as well.
|
||||||
|
|
||||||
|
AC_DEFUN([AX_OPENMP], [
|
||||||
|
AC_PREREQ(2.59) dnl for _AC_LANG_PREFIX
|
||||||
|
|
||||||
|
AC_CACHE_CHECK([for OpenMP flag of _AC_LANG compiler], ax_cv_[]_AC_LANG_ABBREV[]_openmp, [save[]_AC_LANG_PREFIX[]FLAGS=$[]_AC_LANG_PREFIX[]FLAGS
|
||||||
|
ax_cv_[]_AC_LANG_ABBREV[]_openmp=unknown
|
||||||
|
# Flags to try: -fopenmp (gcc), -openmp (icc), -mp (SGI & PGI),
|
||||||
|
# -xopenmp (Sun), -omp (Tru64), -qsmp=omp (AIX), none
|
||||||
|
ax_openmp_flags="-fopenmp -openmp -mp -xopenmp -omp -qsmp=omp none"
|
||||||
|
if test "x$OPENMP_[]_AC_LANG_PREFIX[]FLAGS" != x; then
|
||||||
|
ax_openmp_flags="$OPENMP_[]_AC_LANG_PREFIX[]FLAGS $ax_openmp_flags"
|
||||||
|
fi
|
||||||
|
for ax_openmp_flag in $ax_openmp_flags; do
|
||||||
|
case $ax_openmp_flag in
|
||||||
|
none) []_AC_LANG_PREFIX[]FLAGS=$save[]_AC_LANG_PREFIX[] ;;
|
||||||
|
*) []_AC_LANG_PREFIX[]FLAGS="$save[]_AC_LANG_PREFIX[]FLAGS $ax_openmp_flag" ;;
|
||||||
|
esac
|
||||||
|
AC_TRY_LINK_FUNC(omp_set_num_threads,
|
||||||
|
[ax_cv_[]_AC_LANG_ABBREV[]_openmp=$ax_openmp_flag; break])
|
||||||
|
done
|
||||||
|
[]_AC_LANG_PREFIX[]FLAGS=$save[]_AC_LANG_PREFIX[]FLAGS
|
||||||
|
])
|
||||||
|
if test "x$ax_cv_[]_AC_LANG_ABBREV[]_openmp" = "xunknown"; then
|
||||||
|
m4_default([$2],:)
|
||||||
|
else
|
||||||
|
if test "x$ax_cv_[]_AC_LANG_ABBREV[]_openmp" != "xnone"; then
|
||||||
|
OPENMP_[]_AC_LANG_PREFIX[]FLAGS=$ax_cv_[]_AC_LANG_ABBREV[]_openmp
|
||||||
|
fi
|
||||||
|
m4_default([$1], [AC_DEFINE(HAVE_OPENMP,1,[Define if OpenMP is enabled])])
|
||||||
|
fi
|
||||||
|
])dnl AX_OPENMP
|
7997
preprocess/m4ri-20140914/m4/libtool.m4
vendored
Normal file
7997
preprocess/m4ri-20140914/m4/libtool.m4
vendored
Normal file
File diff suppressed because it is too large
Load Diff
384
preprocess/m4ri-20140914/m4/ltoptions.m4
vendored
Normal file
384
preprocess/m4ri-20140914/m4/ltoptions.m4
vendored
Normal file
@ -0,0 +1,384 @@
|
|||||||
|
# Helper functions for option handling. -*- Autoconf -*-
|
||||||
|
#
|
||||||
|
# Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation,
|
||||||
|
# Inc.
|
||||||
|
# Written by Gary V. Vaughan, 2004
|
||||||
|
#
|
||||||
|
# This file is free software; the Free Software Foundation gives
|
||||||
|
# unlimited permission to copy and/or distribute it, with or without
|
||||||
|
# modifications, as long as this notice is preserved.
|
||||||
|
|
||||||
|
# serial 7 ltoptions.m4
|
||||||
|
|
||||||
|
# This is to help aclocal find these macros, as it can't see m4_define.
|
||||||
|
AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
|
||||||
|
|
||||||
|
|
||||||
|
# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
|
||||||
|
# ------------------------------------------
|
||||||
|
m4_define([_LT_MANGLE_OPTION],
|
||||||
|
[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])])
|
||||||
|
|
||||||
|
|
||||||
|
# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
|
||||||
|
# ---------------------------------------
|
||||||
|
# Set option OPTION-NAME for macro MACRO-NAME, and if there is a
|
||||||
|
# matching handler defined, dispatch to it. Other OPTION-NAMEs are
|
||||||
|
# saved as a flag.
|
||||||
|
m4_define([_LT_SET_OPTION],
|
||||||
|
[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl
|
||||||
|
m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]),
|
||||||
|
_LT_MANGLE_DEFUN([$1], [$2]),
|
||||||
|
[m4_warning([Unknown $1 option `$2'])])[]dnl
|
||||||
|
])
|
||||||
|
|
||||||
|
|
||||||
|
# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
|
||||||
|
# ------------------------------------------------------------
|
||||||
|
# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
|
||||||
|
m4_define([_LT_IF_OPTION],
|
||||||
|
[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])])
|
||||||
|
|
||||||
|
|
||||||
|
# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
|
||||||
|
# -------------------------------------------------------
|
||||||
|
# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
|
||||||
|
# are set.
|
||||||
|
m4_define([_LT_UNLESS_OPTIONS],
|
||||||
|
[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
|
||||||
|
[m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option),
|
||||||
|
[m4_define([$0_found])])])[]dnl
|
||||||
|
m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3
|
||||||
|
])[]dnl
|
||||||
|
])
|
||||||
|
|
||||||
|
|
||||||
|
# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
|
||||||
|
# ----------------------------------------
|
||||||
|
# OPTION-LIST is a space-separated list of Libtool options associated
|
||||||
|
# with MACRO-NAME. If any OPTION has a matching handler declared with
|
||||||
|
# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about
|
||||||
|
# the unknown option and exit.
|
||||||
|
m4_defun([_LT_SET_OPTIONS],
|
||||||
|
[# Set options
|
||||||
|
m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
|
||||||
|
[_LT_SET_OPTION([$1], _LT_Option)])
|
||||||
|
|
||||||
|
m4_if([$1],[LT_INIT],[
|
||||||
|
dnl
|
||||||
|
dnl Simply set some default values (i.e off) if boolean options were not
|
||||||
|
dnl specified:
|
||||||
|
_LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no
|
||||||
|
])
|
||||||
|
_LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no
|
||||||
|
])
|
||||||
|
dnl
|
||||||
|
dnl If no reference was made to various pairs of opposing options, then
|
||||||
|
dnl we run the default mode handler for the pair. For example, if neither
|
||||||
|
dnl `shared' nor `disable-shared' was passed, we enable building of shared
|
||||||
|
dnl archives by default:
|
||||||
|
_LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED])
|
||||||
|
_LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC])
|
||||||
|
_LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])
|
||||||
|
_LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],
|
||||||
|
[_LT_ENABLE_FAST_INSTALL])
|
||||||
|
])
|
||||||
|
])# _LT_SET_OPTIONS
|
||||||
|
|
||||||
|
|
||||||
|
## --------------------------------- ##
|
||||||
|
## Macros to handle LT_INIT options. ##
|
||||||
|
## --------------------------------- ##
|
||||||
|
|
||||||
|
# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
|
||||||
|
# -----------------------------------------
|
||||||
|
m4_define([_LT_MANGLE_DEFUN],
|
||||||
|
[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])])
|
||||||
|
|
||||||
|
|
||||||
|
# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE)
|
||||||
|
# -----------------------------------------------
|
||||||
|
m4_define([LT_OPTION_DEFINE],
|
||||||
|
[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl
|
||||||
|
])# LT_OPTION_DEFINE
|
||||||
|
|
||||||
|
|
||||||
|
# dlopen
|
||||||
|
# ------
|
||||||
|
LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes
|
||||||
|
])
|
||||||
|
|
||||||
|
AU_DEFUN([AC_LIBTOOL_DLOPEN],
|
||||||
|
[_LT_SET_OPTION([LT_INIT], [dlopen])
|
||||||
|
AC_DIAGNOSE([obsolete],
|
||||||
|
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
||||||
|
put the `dlopen' option into LT_INIT's first parameter.])
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl aclocal-1.4 backwards compatibility:
|
||||||
|
dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], [])
|
||||||
|
|
||||||
|
|
||||||
|
# win32-dll
|
||||||
|
# ---------
|
||||||
|
# Declare package support for building win32 dll's.
|
||||||
|
LT_OPTION_DEFINE([LT_INIT], [win32-dll],
|
||||||
|
[enable_win32_dll=yes
|
||||||
|
|
||||||
|
case $host in
|
||||||
|
*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)
|
||||||
|
AC_CHECK_TOOL(AS, as, false)
|
||||||
|
AC_CHECK_TOOL(DLLTOOL, dlltool, false)
|
||||||
|
AC_CHECK_TOOL(OBJDUMP, objdump, false)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
test -z "$AS" && AS=as
|
||||||
|
_LT_DECL([], [AS], [1], [Assembler program])dnl
|
||||||
|
|
||||||
|
test -z "$DLLTOOL" && DLLTOOL=dlltool
|
||||||
|
_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl
|
||||||
|
|
||||||
|
test -z "$OBJDUMP" && OBJDUMP=objdump
|
||||||
|
_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl
|
||||||
|
])# win32-dll
|
||||||
|
|
||||||
|
AU_DEFUN([AC_LIBTOOL_WIN32_DLL],
|
||||||
|
[AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
||||||
|
_LT_SET_OPTION([LT_INIT], [win32-dll])
|
||||||
|
AC_DIAGNOSE([obsolete],
|
||||||
|
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
||||||
|
put the `win32-dll' option into LT_INIT's first parameter.])
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl aclocal-1.4 backwards compatibility:
|
||||||
|
dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])
|
||||||
|
|
||||||
|
|
||||||
|
# _LT_ENABLE_SHARED([DEFAULT])
|
||||||
|
# ----------------------------
|
||||||
|
# implement the --enable-shared flag, and supports the `shared' and
|
||||||
|
# `disable-shared' LT_INIT options.
|
||||||
|
# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
|
||||||
|
m4_define([_LT_ENABLE_SHARED],
|
||||||
|
[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl
|
||||||
|
AC_ARG_ENABLE([shared],
|
||||||
|
[AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
|
||||||
|
[build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])],
|
||||||
|
[p=${PACKAGE-default}
|
||||||
|
case $enableval in
|
||||||
|
yes) enable_shared=yes ;;
|
||||||
|
no) enable_shared=no ;;
|
||||||
|
*)
|
||||||
|
enable_shared=no
|
||||||
|
# Look at the argument we got. We use all the common list separators.
|
||||||
|
lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
|
||||||
|
for pkg in $enableval; do
|
||||||
|
IFS="$lt_save_ifs"
|
||||||
|
if test "X$pkg" = "X$p"; then
|
||||||
|
enable_shared=yes
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
IFS="$lt_save_ifs"
|
||||||
|
;;
|
||||||
|
esac],
|
||||||
|
[enable_shared=]_LT_ENABLE_SHARED_DEFAULT)
|
||||||
|
|
||||||
|
_LT_DECL([build_libtool_libs], [enable_shared], [0],
|
||||||
|
[Whether or not to build shared libraries])
|
||||||
|
])# _LT_ENABLE_SHARED
|
||||||
|
|
||||||
|
LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])])
|
||||||
|
LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])])
|
||||||
|
|
||||||
|
# Old names:
|
||||||
|
AC_DEFUN([AC_ENABLE_SHARED],
|
||||||
|
[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
|
||||||
|
])
|
||||||
|
|
||||||
|
AC_DEFUN([AC_DISABLE_SHARED],
|
||||||
|
[_LT_SET_OPTION([LT_INIT], [disable-shared])
|
||||||
|
])
|
||||||
|
|
||||||
|
AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
|
||||||
|
AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
|
||||||
|
|
||||||
|
dnl aclocal-1.4 backwards compatibility:
|
||||||
|
dnl AC_DEFUN([AM_ENABLE_SHARED], [])
|
||||||
|
dnl AC_DEFUN([AM_DISABLE_SHARED], [])
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# _LT_ENABLE_STATIC([DEFAULT])
|
||||||
|
# ----------------------------
|
||||||
|
# implement the --enable-static flag, and support the `static' and
|
||||||
|
# `disable-static' LT_INIT options.
|
||||||
|
# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
|
||||||
|
m4_define([_LT_ENABLE_STATIC],
|
||||||
|
[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl
|
||||||
|
AC_ARG_ENABLE([static],
|
||||||
|
[AS_HELP_STRING([--enable-static@<:@=PKGS@:>@],
|
||||||
|
[build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])],
|
||||||
|
[p=${PACKAGE-default}
|
||||||
|
case $enableval in
|
||||||
|
yes) enable_static=yes ;;
|
||||||
|
no) enable_static=no ;;
|
||||||
|
*)
|
||||||
|
enable_static=no
|
||||||
|
# Look at the argument we got. We use all the common list separators.
|
||||||
|
lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
|
||||||
|
for pkg in $enableval; do
|
||||||
|
IFS="$lt_save_ifs"
|
||||||
|
if test "X$pkg" = "X$p"; then
|
||||||
|
enable_static=yes
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
IFS="$lt_save_ifs"
|
||||||
|
;;
|
||||||
|
esac],
|
||||||
|
[enable_static=]_LT_ENABLE_STATIC_DEFAULT)
|
||||||
|
|
||||||
|
_LT_DECL([build_old_libs], [enable_static], [0],
|
||||||
|
[Whether or not to build static libraries])
|
||||||
|
])# _LT_ENABLE_STATIC
|
||||||
|
|
||||||
|
LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])])
|
||||||
|
LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])])
|
||||||
|
|
||||||
|
# Old names:
|
||||||
|
AC_DEFUN([AC_ENABLE_STATIC],
|
||||||
|
[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
|
||||||
|
])
|
||||||
|
|
||||||
|
AC_DEFUN([AC_DISABLE_STATIC],
|
||||||
|
[_LT_SET_OPTION([LT_INIT], [disable-static])
|
||||||
|
])
|
||||||
|
|
||||||
|
AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
|
||||||
|
AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
|
||||||
|
|
||||||
|
dnl aclocal-1.4 backwards compatibility:
|
||||||
|
dnl AC_DEFUN([AM_ENABLE_STATIC], [])
|
||||||
|
dnl AC_DEFUN([AM_DISABLE_STATIC], [])
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# _LT_ENABLE_FAST_INSTALL([DEFAULT])
|
||||||
|
# ----------------------------------
|
||||||
|
# implement the --enable-fast-install flag, and support the `fast-install'
|
||||||
|
# and `disable-fast-install' LT_INIT options.
|
||||||
|
# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
|
||||||
|
m4_define([_LT_ENABLE_FAST_INSTALL],
|
||||||
|
[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl
|
||||||
|
AC_ARG_ENABLE([fast-install],
|
||||||
|
[AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
|
||||||
|
[optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
|
||||||
|
[p=${PACKAGE-default}
|
||||||
|
case $enableval in
|
||||||
|
yes) enable_fast_install=yes ;;
|
||||||
|
no) enable_fast_install=no ;;
|
||||||
|
*)
|
||||||
|
enable_fast_install=no
|
||||||
|
# Look at the argument we got. We use all the common list separators.
|
||||||
|
lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
|
||||||
|
for pkg in $enableval; do
|
||||||
|
IFS="$lt_save_ifs"
|
||||||
|
if test "X$pkg" = "X$p"; then
|
||||||
|
enable_fast_install=yes
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
IFS="$lt_save_ifs"
|
||||||
|
;;
|
||||||
|
esac],
|
||||||
|
[enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)
|
||||||
|
|
||||||
|
_LT_DECL([fast_install], [enable_fast_install], [0],
|
||||||
|
[Whether or not to optimize for fast installation])dnl
|
||||||
|
])# _LT_ENABLE_FAST_INSTALL
|
||||||
|
|
||||||
|
LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])])
|
||||||
|
LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])])
|
||||||
|
|
||||||
|
# Old names:
|
||||||
|
AU_DEFUN([AC_ENABLE_FAST_INSTALL],
|
||||||
|
[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
|
||||||
|
AC_DIAGNOSE([obsolete],
|
||||||
|
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
||||||
|
the `fast-install' option into LT_INIT's first parameter.])
|
||||||
|
])
|
||||||
|
|
||||||
|
AU_DEFUN([AC_DISABLE_FAST_INSTALL],
|
||||||
|
[_LT_SET_OPTION([LT_INIT], [disable-fast-install])
|
||||||
|
AC_DIAGNOSE([obsolete],
|
||||||
|
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
||||||
|
the `disable-fast-install' option into LT_INIT's first parameter.])
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl aclocal-1.4 backwards compatibility:
|
||||||
|
dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], [])
|
||||||
|
dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])
|
||||||
|
|
||||||
|
|
||||||
|
# _LT_WITH_PIC([MODE])
|
||||||
|
# --------------------
|
||||||
|
# implement the --with-pic flag, and support the `pic-only' and `no-pic'
|
||||||
|
# LT_INIT options.
|
||||||
|
# MODE is either `yes' or `no'. If omitted, it defaults to `both'.
|
||||||
|
m4_define([_LT_WITH_PIC],
|
||||||
|
[AC_ARG_WITH([pic],
|
||||||
|
[AS_HELP_STRING([--with-pic@<:@=PKGS@:>@],
|
||||||
|
[try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
|
||||||
|
[lt_p=${PACKAGE-default}
|
||||||
|
case $withval in
|
||||||
|
yes|no) pic_mode=$withval ;;
|
||||||
|
*)
|
||||||
|
pic_mode=default
|
||||||
|
# Look at the argument we got. We use all the common list separators.
|
||||||
|
lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
|
||||||
|
for lt_pkg in $withval; do
|
||||||
|
IFS="$lt_save_ifs"
|
||||||
|
if test "X$lt_pkg" = "X$lt_p"; then
|
||||||
|
pic_mode=yes
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
IFS="$lt_save_ifs"
|
||||||
|
;;
|
||||||
|
esac],
|
||||||
|
[pic_mode=default])
|
||||||
|
|
||||||
|
test -z "$pic_mode" && pic_mode=m4_default([$1], [default])
|
||||||
|
|
||||||
|
_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl
|
||||||
|
])# _LT_WITH_PIC
|
||||||
|
|
||||||
|
LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])])
|
||||||
|
LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])])
|
||||||
|
|
||||||
|
# Old name:
|
||||||
|
AU_DEFUN([AC_LIBTOOL_PICMODE],
|
||||||
|
[_LT_SET_OPTION([LT_INIT], [pic-only])
|
||||||
|
AC_DIAGNOSE([obsolete],
|
||||||
|
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
||||||
|
put the `pic-only' option into LT_INIT's first parameter.])
|
||||||
|
])
|
||||||
|
|
||||||
|
dnl aclocal-1.4 backwards compatibility:
|
||||||
|
dnl AC_DEFUN([AC_LIBTOOL_PICMODE], [])
|
||||||
|
|
||||||
|
## ----------------- ##
|
||||||
|
## LTDL_INIT Options ##
|
||||||
|
## ----------------- ##
|
||||||
|
|
||||||
|
m4_define([_LTDL_MODE], [])
|
||||||
|
LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive],
|
||||||
|
[m4_define([_LTDL_MODE], [nonrecursive])])
|
||||||
|
LT_OPTION_DEFINE([LTDL_INIT], [recursive],
|
||||||
|
[m4_define([_LTDL_MODE], [recursive])])
|
||||||
|
LT_OPTION_DEFINE([LTDL_INIT], [subproject],
|
||||||
|
[m4_define([_LTDL_MODE], [subproject])])
|
||||||
|
|
||||||
|
m4_define([_LTDL_TYPE], [])
|
||||||
|
LT_OPTION_DEFINE([LTDL_INIT], [installable],
|
||||||
|
[m4_define([_LTDL_TYPE], [installable])])
|
||||||
|
LT_OPTION_DEFINE([LTDL_INIT], [convenience],
|
||||||
|
[m4_define([_LTDL_TYPE], [convenience])])
|
123
preprocess/m4ri-20140914/m4/ltsugar.m4
vendored
Normal file
123
preprocess/m4ri-20140914/m4/ltsugar.m4
vendored
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*-
|
||||||
|
#
|
||||||
|
# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
|
||||||
|
# Written by Gary V. Vaughan, 2004
|
||||||
|
#
|
||||||
|
# This file is free software; the Free Software Foundation gives
|
||||||
|
# unlimited permission to copy and/or distribute it, with or without
|
||||||
|
# modifications, as long as this notice is preserved.
|
||||||
|
|
||||||
|
# serial 6 ltsugar.m4
|
||||||
|
|
||||||
|
# This is to help aclocal find these macros, as it can't see m4_define.
|
||||||
|
AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
|
||||||
|
|
||||||
|
|
||||||
|
# lt_join(SEP, ARG1, [ARG2...])
|
||||||
|
# -----------------------------
|
||||||
|
# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their
|
||||||
|
# associated separator.
|
||||||
|
# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
|
||||||
|
# versions in m4sugar had bugs.
|
||||||
|
m4_define([lt_join],
|
||||||
|
[m4_if([$#], [1], [],
|
||||||
|
[$#], [2], [[$2]],
|
||||||
|
[m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])])
|
||||||
|
m4_define([_lt_join],
|
||||||
|
[m4_if([$#$2], [2], [],
|
||||||
|
[m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])])
|
||||||
|
|
||||||
|
|
||||||
|
# lt_car(LIST)
|
||||||
|
# lt_cdr(LIST)
|
||||||
|
# ------------
|
||||||
|
# Manipulate m4 lists.
|
||||||
|
# These macros are necessary as long as will still need to support
|
||||||
|
# Autoconf-2.59 which quotes differently.
|
||||||
|
m4_define([lt_car], [[$1]])
|
||||||
|
m4_define([lt_cdr],
|
||||||
|
[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])],
|
||||||
|
[$#], 1, [],
|
||||||
|
[m4_dquote(m4_shift($@))])])
|
||||||
|
m4_define([lt_unquote], $1)
|
||||||
|
|
||||||
|
|
||||||
|
# lt_append(MACRO-NAME, STRING, [SEPARATOR])
|
||||||
|
# ------------------------------------------
|
||||||
|
# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'.
|
||||||
|
# Note that neither SEPARATOR nor STRING are expanded; they are appended
|
||||||
|
# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).
|
||||||
|
# No SEPARATOR is output if MACRO-NAME was previously undefined (different
|
||||||
|
# than defined and empty).
|
||||||
|
#
|
||||||
|
# This macro is needed until we can rely on Autoconf 2.62, since earlier
|
||||||
|
# versions of m4sugar mistakenly expanded SEPARATOR but not STRING.
|
||||||
|
m4_define([lt_append],
|
||||||
|
[m4_define([$1],
|
||||||
|
m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])])
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...])
|
||||||
|
# ----------------------------------------------------------
|
||||||
|
# Produce a SEP delimited list of all paired combinations of elements of
|
||||||
|
# PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list
|
||||||
|
# has the form PREFIXmINFIXSUFFIXn.
|
||||||
|
# Needed until we can rely on m4_combine added in Autoconf 2.62.
|
||||||
|
m4_define([lt_combine],
|
||||||
|
[m4_if(m4_eval([$# > 3]), [1],
|
||||||
|
[m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl
|
||||||
|
[[m4_foreach([_Lt_prefix], [$2],
|
||||||
|
[m4_foreach([_Lt_suffix],
|
||||||
|
]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[,
|
||||||
|
[_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])])
|
||||||
|
|
||||||
|
|
||||||
|
# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ])
|
||||||
|
# -----------------------------------------------------------------------
|
||||||
|
# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
|
||||||
|
# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ.
|
||||||
|
m4_define([lt_if_append_uniq],
|
||||||
|
[m4_ifdef([$1],
|
||||||
|
[m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1],
|
||||||
|
[lt_append([$1], [$2], [$3])$4],
|
||||||
|
[$5])],
|
||||||
|
[lt_append([$1], [$2], [$3])$4])])
|
||||||
|
|
||||||
|
|
||||||
|
# lt_dict_add(DICT, KEY, VALUE)
|
||||||
|
# -----------------------------
|
||||||
|
m4_define([lt_dict_add],
|
||||||
|
[m4_define([$1($2)], [$3])])
|
||||||
|
|
||||||
|
|
||||||
|
# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)
|
||||||
|
# --------------------------------------------
|
||||||
|
m4_define([lt_dict_add_subkey],
|
||||||
|
[m4_define([$1($2:$3)], [$4])])
|
||||||
|
|
||||||
|
|
||||||
|
# lt_dict_fetch(DICT, KEY, [SUBKEY])
|
||||||
|
# ----------------------------------
|
||||||
|
m4_define([lt_dict_fetch],
|
||||||
|
[m4_ifval([$3],
|
||||||
|
m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]),
|
||||||
|
m4_ifdef([$1($2)], [m4_defn([$1($2)])]))])
|
||||||
|
|
||||||
|
|
||||||
|
# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE])
|
||||||
|
# -----------------------------------------------------------------
|
||||||
|
m4_define([lt_if_dict_fetch],
|
||||||
|
[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4],
|
||||||
|
[$5],
|
||||||
|
[$6])])
|
||||||
|
|
||||||
|
|
||||||
|
# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...])
|
||||||
|
# --------------------------------------------------------------
|
||||||
|
m4_define([lt_dict_filter],
|
||||||
|
[m4_if([$5], [], [],
|
||||||
|
[lt_join(m4_quote(m4_default([$4], [[, ]])),
|
||||||
|
lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]),
|
||||||
|
[lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl
|
||||||
|
])
|
23
preprocess/m4ri-20140914/m4/ltversion.m4
vendored
Normal file
23
preprocess/m4ri-20140914/m4/ltversion.m4
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
# ltversion.m4 -- version numbers -*- Autoconf -*-
|
||||||
|
#
|
||||||
|
# Copyright (C) 2004 Free Software Foundation, Inc.
|
||||||
|
# Written by Scott James Remnant, 2004
|
||||||
|
#
|
||||||
|
# This file is free software; the Free Software Foundation gives
|
||||||
|
# unlimited permission to copy and/or distribute it, with or without
|
||||||
|
# modifications, as long as this notice is preserved.
|
||||||
|
|
||||||
|
# @configure_input@
|
||||||
|
|
||||||
|
# serial 3337 ltversion.m4
|
||||||
|
# This file is part of GNU Libtool
|
||||||
|
|
||||||
|
m4_define([LT_PACKAGE_VERSION], [2.4.2])
|
||||||
|
m4_define([LT_PACKAGE_REVISION], [1.3337])
|
||||||
|
|
||||||
|
AC_DEFUN([LTVERSION_VERSION],
|
||||||
|
[macro_version='2.4.2'
|
||||||
|
macro_revision='1.3337'
|
||||||
|
_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
|
||||||
|
_LT_DECL(, macro_revision, 0)
|
||||||
|
])
|
98
preprocess/m4ri-20140914/m4/lt~obsolete.m4
vendored
Normal file
98
preprocess/m4ri-20140914/m4/lt~obsolete.m4
vendored
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*-
|
||||||
|
#
|
||||||
|
# Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
|
||||||
|
# Written by Scott James Remnant, 2004.
|
||||||
|
#
|
||||||
|
# This file is free software; the Free Software Foundation gives
|
||||||
|
# unlimited permission to copy and/or distribute it, with or without
|
||||||
|
# modifications, as long as this notice is preserved.
|
||||||
|
|
||||||
|
# serial 5 lt~obsolete.m4
|
||||||
|
|
||||||
|
# These exist entirely to fool aclocal when bootstrapping libtool.
|
||||||
|
#
|
||||||
|
# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN)
|
||||||
|
# which have later been changed to m4_define as they aren't part of the
|
||||||
|
# exported API, or moved to Autoconf or Automake where they belong.
|
||||||
|
#
|
||||||
|
# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN
|
||||||
|
# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us
|
||||||
|
# using a macro with the same name in our local m4/libtool.m4 it'll
|
||||||
|
# pull the old libtool.m4 in (it doesn't see our shiny new m4_define
|
||||||
|
# and doesn't know about Autoconf macros at all.)
|
||||||
|
#
|
||||||
|
# So we provide this file, which has a silly filename so it's always
|
||||||
|
# included after everything else. This provides aclocal with the
|
||||||
|
# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything
|
||||||
|
# because those macros already exist, or will be overwritten later.
|
||||||
|
# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6.
|
||||||
|
#
|
||||||
|
# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.
|
||||||
|
# Yes, that means every name once taken will need to remain here until
|
||||||
|
# we give up compatibility with versions before 1.7, at which point
|
||||||
|
# we need to keep only those names which we still refer to.
|
||||||
|
|
||||||
|
# This is to help aclocal find these macros, as it can't see m4_define.
|
||||||
|
AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
|
||||||
|
|
||||||
|
m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])])
|
||||||
|
m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])])
|
||||||
|
m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])])
|
||||||
|
m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])])
|
||||||
|
m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])])
|
||||||
|
m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])])
|
||||||
|
m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])])
|
||||||
|
m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])])
|
||||||
|
m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])])
|
||||||
|
m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])])
|
||||||
|
m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])])
|
||||||
|
m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])])
|
||||||
|
m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])])
|
||||||
|
m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])])
|
||||||
|
m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])])
|
||||||
|
m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])])
|
||||||
|
m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])])
|
||||||
|
m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])])
|
||||||
|
m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])])
|
||||||
|
m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])])
|
||||||
|
m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])])
|
||||||
|
m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])])
|
||||||
|
m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])])
|
||||||
|
m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])])
|
||||||
|
m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])])
|
||||||
|
m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])])
|
||||||
|
m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])])
|
||||||
|
m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])])
|
||||||
|
m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])
|
||||||
|
m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])
|
||||||
|
m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])])
|
||||||
|
m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])])
|
||||||
|
m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])
|
||||||
|
m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])
|
||||||
|
m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])])
|
||||||
|
m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
|
||||||
|
m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])])
|
||||||
|
m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])])
|
||||||
|
m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])])
|
||||||
|
m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])])
|
||||||
|
m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])])
|
||||||
|
m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])])
|
||||||
|
m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])])
|
159
preprocess/m4ri-20140914/m4/pkg.m4
Normal file
159
preprocess/m4ri-20140914/m4/pkg.m4
Normal file
@ -0,0 +1,159 @@
|
|||||||
|
# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
|
||||||
|
# serial 1 (pkg-config-0.24)
|
||||||
|
#
|
||||||
|
# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful, but
|
||||||
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
# General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program; if not, write to the Free Software
|
||||||
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
#
|
||||||
|
# As a special exception to the GNU General Public License, if you
|
||||||
|
# distribute this file as part of a program that contains a
|
||||||
|
# configuration script generated by Autoconf, you may include it under
|
||||||
|
# the same distribution terms that you use for the rest of that program.
|
||||||
|
|
||||||
|
# PKG_PROG_PKG_CONFIG([MIN-VERSION])
|
||||||
|
# ----------------------------------
|
||||||
|
AC_DEFUN([PKG_PROG_PKG_CONFIG],
|
||||||
|
[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
|
||||||
|
m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
|
||||||
|
m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
|
||||||
|
AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
|
||||||
|
AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
|
||||||
|
AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
|
||||||
|
|
||||||
|
if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
|
||||||
|
AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
|
||||||
|
fi
|
||||||
|
if test -n "$PKG_CONFIG"; then
|
||||||
|
_pkg_min_version=m4_default([$1], [0.9.0])
|
||||||
|
AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
|
||||||
|
if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
PKG_CONFIG=""
|
||||||
|
fi
|
||||||
|
fi[]dnl
|
||||||
|
])# PKG_PROG_PKG_CONFIG
|
||||||
|
|
||||||
|
# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
|
||||||
|
#
|
||||||
|
# Check to see whether a particular set of modules exists. Similar
|
||||||
|
# to PKG_CHECK_MODULES(), but does not set variables or print errors.
|
||||||
|
#
|
||||||
|
# Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
|
||||||
|
# only at the first occurence in configure.ac, so if the first place
|
||||||
|
# it's called might be skipped (such as if it is within an "if", you
|
||||||
|
# have to call PKG_CHECK_EXISTS manually
|
||||||
|
# --------------------------------------------------------------
|
||||||
|
AC_DEFUN([PKG_CHECK_EXISTS],
|
||||||
|
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
|
||||||
|
if test -n "$PKG_CONFIG" && \
|
||||||
|
AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
|
||||||
|
m4_default([$2], [:])
|
||||||
|
m4_ifvaln([$3], [else
|
||||||
|
$3])dnl
|
||||||
|
fi])
|
||||||
|
|
||||||
|
# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
|
||||||
|
# ---------------------------------------------
|
||||||
|
m4_define([_PKG_CONFIG],
|
||||||
|
[if test -n "$$1"; then
|
||||||
|
pkg_cv_[]$1="$$1"
|
||||||
|
elif test -n "$PKG_CONFIG"; then
|
||||||
|
PKG_CHECK_EXISTS([$3],
|
||||||
|
[pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
|
||||||
|
test "x$?" != "x0" && pkg_failed=yes ],
|
||||||
|
[pkg_failed=yes])
|
||||||
|
else
|
||||||
|
pkg_failed=untried
|
||||||
|
fi[]dnl
|
||||||
|
])# _PKG_CONFIG
|
||||||
|
|
||||||
|
# _PKG_SHORT_ERRORS_SUPPORTED
|
||||||
|
# -----------------------------
|
||||||
|
AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
|
||||||
|
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
|
||||||
|
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
||||||
|
_pkg_short_errors_supported=yes
|
||||||
|
else
|
||||||
|
_pkg_short_errors_supported=no
|
||||||
|
fi[]dnl
|
||||||
|
])# _PKG_SHORT_ERRORS_SUPPORTED
|
||||||
|
|
||||||
|
|
||||||
|
# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
|
||||||
|
# [ACTION-IF-NOT-FOUND])
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# Note that if there is a possibility the first call to
|
||||||
|
# PKG_CHECK_MODULES might not happen, you should be sure to include an
|
||||||
|
# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# --------------------------------------------------------------
|
||||||
|
AC_DEFUN([PKG_CHECK_MODULES],
|
||||||
|
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
|
||||||
|
AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
|
||||||
|
AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
|
||||||
|
|
||||||
|
pkg_failed=no
|
||||||
|
AC_MSG_CHECKING([for $1])
|
||||||
|
|
||||||
|
_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
|
||||||
|
_PKG_CONFIG([$1][_LIBS], [libs], [$2])
|
||||||
|
|
||||||
|
m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
|
||||||
|
and $1[]_LIBS to avoid the need to call pkg-config.
|
||||||
|
See the pkg-config man page for more details.])
|
||||||
|
|
||||||
|
if test $pkg_failed = yes; then
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
_PKG_SHORT_ERRORS_SUPPORTED
|
||||||
|
if test $_pkg_short_errors_supported = yes; then
|
||||||
|
$1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
|
||||||
|
else
|
||||||
|
$1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
|
||||||
|
fi
|
||||||
|
# Put the nasty error message in config.log where it belongs
|
||||||
|
echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
|
||||||
|
|
||||||
|
m4_default([$4], [AC_MSG_ERROR(
|
||||||
|
[Package requirements ($2) were not met:
|
||||||
|
|
||||||
|
$$1_PKG_ERRORS
|
||||||
|
|
||||||
|
Consider adjusting the PKG_CONFIG_PATH environment variable if you
|
||||||
|
installed software in a non-standard prefix.
|
||||||
|
|
||||||
|
_PKG_TEXT])[]dnl
|
||||||
|
])
|
||||||
|
elif test $pkg_failed = untried; then
|
||||||
|
AC_MSG_RESULT([no])
|
||||||
|
m4_default([$4], [AC_MSG_FAILURE(
|
||||||
|
[The pkg-config script could not be found or is too old. Make sure it
|
||||||
|
is in your PATH or set the PKG_CONFIG environment variable to the full
|
||||||
|
path to pkg-config.
|
||||||
|
|
||||||
|
_PKG_TEXT
|
||||||
|
|
||||||
|
To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
|
||||||
|
])
|
||||||
|
else
|
||||||
|
$1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
|
||||||
|
$1[]_LIBS=$pkg_cv_[]$1[]_LIBS
|
||||||
|
AC_MSG_RESULT([yes])
|
||||||
|
$3
|
||||||
|
fi[]dnl
|
||||||
|
])# PKG_CHECK_MODULES
|
10
preprocess/m4ri-20140914/m4ri.pc
Normal file
10
preprocess/m4ri-20140914/m4ri.pc
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
prefix=/usr/local
|
||||||
|
exec_prefix=${prefix}
|
||||||
|
libdir=${exec_prefix}/lib
|
||||||
|
includedir=${prefix}/include
|
||||||
|
|
||||||
|
Name: M4RI
|
||||||
|
Description: Dense linear algebra over GF(2).
|
||||||
|
Version: 20140914
|
||||||
|
Libs: -L${libdir} -lm4ri -lm
|
||||||
|
Cflags: -I${includedir}/m4ri -g -O2 -mmmx -msse -msse2 -msse3
|
10
preprocess/m4ri-20140914/m4ri.pc.in
Normal file
10
preprocess/m4ri-20140914/m4ri.pc.in
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
prefix=@prefix@
|
||||||
|
exec_prefix=@exec_prefix@
|
||||||
|
libdir=@libdir@
|
||||||
|
includedir=@includedir@
|
||||||
|
|
||||||
|
Name: M4RI
|
||||||
|
Description: Dense linear algebra over GF(2).
|
||||||
|
Version: @PACKAGE_VERSION@
|
||||||
|
Libs: -L${libdir} -lm4ri -lm
|
||||||
|
Cflags: -I${includedir}/m4ri @CFLAGS@ @SIMD_CFLAGS@ @OPENMP_CFLAGS@
|
0
preprocess/m4ri-20140914/m4ri/.deps/.dirstamp
Normal file
0
preprocess/m4ri-20140914/m4ri/.deps/.dirstamp
Normal file
265
preprocess/m4ri-20140914/m4ri/.deps/brilliantrussian.Plo
Normal file
265
preprocess/m4ri-20140914/m4ri/.deps/brilliantrussian.Plo
Normal file
@ -0,0 +1,265 @@
|
|||||||
|
m4ri/brilliantrussian.lo: m4ri/brilliantrussian.c \
|
||||||
|
/usr/include/stdc-predef.h m4ri/config.h m4ri/brilliantrussian.h \
|
||||||
|
/usr/include/math.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/string.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||||
|
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h m4ri/mzd.h m4ri/config.h \
|
||||||
|
m4ri/m4ri_config.h /usr/include/assert.h /usr/include/stdio.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h m4ri/misc.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h m4ri/debug_dump.h \
|
||||||
|
m4ri/mzp.h m4ri/xor.h m4ri/xor_template.h m4ri/graycode.h \
|
||||||
|
m4ri/echelonform.h m4ri/ple_russian.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/brilliantrussian.h:
|
||||||
|
|
||||||
|
/usr/include/math.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
m4ri/debug_dump.h:
|
||||||
|
|
||||||
|
m4ri/mzp.h:
|
||||||
|
|
||||||
|
m4ri/xor.h:
|
||||||
|
|
||||||
|
m4ri/xor_template.h:
|
||||||
|
|
||||||
|
m4ri/graycode.h:
|
||||||
|
|
||||||
|
m4ri/echelonform.h:
|
||||||
|
|
||||||
|
m4ri/ple_russian.h:
|
253
preprocess/m4ri-20140914/m4ri/.deps/debug_dump.Plo
Normal file
253
preprocess/m4ri-20140914/m4ri/.deps/debug_dump.Plo
Normal file
@ -0,0 +1,253 @@
|
|||||||
|
m4ri/debug_dump.lo: m4ri/debug_dump.c /usr/include/stdc-predef.h \
|
||||||
|
m4ri/config.h m4ri/mzd.h m4ri/m4ri_config.h /usr/include/assert.h \
|
||||||
|
/usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h /usr/include/math.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdio.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h \
|
||||||
|
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h m4ri/misc.h m4ri/config.h \
|
||||||
|
/usr/include/string.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h m4ri/debug_dump.h \
|
||||||
|
m4ri/mzp.h m4ri/mzd.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/include/math.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
m4ri/debug_dump.h:
|
||||||
|
|
||||||
|
m4ri/mzp.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
280
preprocess/m4ri-20140914/m4ri/.deps/djb.Plo
Normal file
280
preprocess/m4ri-20140914/m4ri/.deps/djb.Plo
Normal file
@ -0,0 +1,280 @@
|
|||||||
|
m4ri/djb.lo: m4ri/djb.c /usr/include/stdc-predef.h m4ri/config.h \
|
||||||
|
m4ri/mzd.h m4ri/config.h m4ri/m4ri_config.h /usr/include/assert.h \
|
||||||
|
/usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h /usr/include/math.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdio.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h \
|
||||||
|
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h m4ri/misc.h \
|
||||||
|
/usr/include/string.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h m4ri/debug_dump.h \
|
||||||
|
m4ri/io.h m4ri/djb.h m4ri/xor.h m4ri/xor_template.h \
|
||||||
|
/usr/include/unistd.h /usr/include/x86_64-linux-gnu/bits/posix_opt.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/environments.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/confname.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/unistd.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/include/math.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
m4ri/debug_dump.h:
|
||||||
|
|
||||||
|
m4ri/io.h:
|
||||||
|
|
||||||
|
m4ri/djb.h:
|
||||||
|
|
||||||
|
m4ri/xor.h:
|
||||||
|
|
||||||
|
m4ri/xor_template.h:
|
||||||
|
|
||||||
|
/usr/include/unistd.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/posix_opt.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/environments.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/confname.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/getopt_core.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/unistd.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h:
|
260
preprocess/m4ri-20140914/m4ri/.deps/echelonform.Plo
Normal file
260
preprocess/m4ri-20140914/m4ri/.deps/echelonform.Plo
Normal file
@ -0,0 +1,260 @@
|
|||||||
|
m4ri/echelonform.lo: m4ri/echelonform.c /usr/include/stdc-predef.h \
|
||||||
|
m4ri/config.h m4ri/echelonform.h m4ri/mzd.h m4ri/config.h \
|
||||||
|
m4ri/m4ri_config.h /usr/include/assert.h /usr/include/features.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h /usr/include/math.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdio.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h \
|
||||||
|
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h m4ri/misc.h \
|
||||||
|
/usr/include/string.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h m4ri/debug_dump.h \
|
||||||
|
m4ri/brilliantrussian.h m4ri/mzp.h m4ri/ple.h m4ri/triangular.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/echelonform.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/include/math.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
m4ri/debug_dump.h:
|
||||||
|
|
||||||
|
m4ri/brilliantrussian.h:
|
||||||
|
|
||||||
|
m4ri/mzp.h:
|
||||||
|
|
||||||
|
m4ri/ple.h:
|
||||||
|
|
||||||
|
m4ri/triangular.h:
|
209
preprocess/m4ri-20140914/m4ri/.deps/graycode.Plo
Normal file
209
preprocess/m4ri-20140914/m4ri/.deps/graycode.Plo
Normal file
@ -0,0 +1,209 @@
|
|||||||
|
m4ri/graycode.lo: m4ri/graycode.c /usr/include/stdc-predef.h \
|
||||||
|
m4ri/config.h /usr/include/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h m4ri/misc.h \
|
||||||
|
m4ri/m4ri_config.h /usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h \
|
||||||
|
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/assert.h \
|
||||||
|
/usr/include/string.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h m4ri/graycode.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
m4ri/graycode.h:
|
256
preprocess/m4ri-20140914/m4ri/.deps/io.Plo
Normal file
256
preprocess/m4ri-20140914/m4ri/.deps/io.Plo
Normal file
@ -0,0 +1,256 @@
|
|||||||
|
m4ri/io.lo: m4ri/io.c /usr/include/stdc-predef.h m4ri/config.h \
|
||||||
|
m4ri/m4ri_config.h m4ri/io.h m4ri/m4ri_config.h m4ri/mzd.h m4ri/config.h \
|
||||||
|
/usr/include/assert.h /usr/include/features.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h /usr/include/math.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdio.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h \
|
||||||
|
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h m4ri/misc.h \
|
||||||
|
/usr/include/string.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h m4ri/debug_dump.h \
|
||||||
|
m4ri/echelonform.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
m4ri/io.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/include/math.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
m4ri/debug_dump.h:
|
||||||
|
|
||||||
|
m4ri/echelonform.h:
|
213
preprocess/m4ri-20140914/m4ri/.deps/misc.Plo
Normal file
213
preprocess/m4ri-20140914/m4ri/.deps/misc.Plo
Normal file
@ -0,0 +1,213 @@
|
|||||||
|
m4ri/misc.lo: m4ri/misc.c /usr/include/stdc-predef.h m4ri/config.h \
|
||||||
|
/usr/include/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h /usr/include/stdlib.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h m4ri/graycode.h m4ri/misc.h \
|
||||||
|
m4ri/m4ri_config.h /usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h \
|
||||||
|
/usr/include/assert.h /usr/include/string.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h m4ri/mmc.h m4ri/misc.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
m4ri/graycode.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
m4ri/mmc.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
177
preprocess/m4ri-20140914/m4ri/.deps/mmc.Plo
Normal file
177
preprocess/m4ri-20140914/m4ri/.deps/mmc.Plo
Normal file
@ -0,0 +1,177 @@
|
|||||||
|
m4ri/mmc.lo: m4ri/mmc.c /usr/include/stdc-predef.h m4ri/config.h \
|
||||||
|
m4ri/mmc.h m4ri/misc.h m4ri/m4ri_config.h m4ri/config.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h \
|
||||||
|
/usr/include/stdlib.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/assert.h \
|
||||||
|
/usr/include/string.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/mmc.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
266
preprocess/m4ri-20140914/m4ri/.deps/mp.Plo
Normal file
266
preprocess/m4ri-20140914/m4ri/.deps/mp.Plo
Normal file
@ -0,0 +1,266 @@
|
|||||||
|
m4ri/mp.lo: m4ri/mp.c /usr/include/stdc-predef.h m4ri/m4ri_config.h \
|
||||||
|
m4ri/misc.h m4ri/m4ri_config.h m4ri/config.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h \
|
||||||
|
/usr/include/stdlib.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/assert.h \
|
||||||
|
/usr/include/string.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h m4ri/mp.h m4ri/mzd.h \
|
||||||
|
m4ri/config.h /usr/include/math.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdio.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h m4ri/misc.h \
|
||||||
|
m4ri/debug_dump.h m4ri/brilliantrussian.h m4ri/mzp.h m4ri/strassen.h \
|
||||||
|
m4ri/brilliantrussian.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
m4ri/mp.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
/usr/include/math.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
m4ri/debug_dump.h:
|
||||||
|
|
||||||
|
m4ri/brilliantrussian.h:
|
||||||
|
|
||||||
|
m4ri/mzp.h:
|
||||||
|
|
||||||
|
m4ri/strassen.h:
|
||||||
|
|
||||||
|
m4ri/brilliantrussian.h:
|
253
preprocess/m4ri-20140914/m4ri/.deps/mzd.Plo
Normal file
253
preprocess/m4ri-20140914/m4ri/.deps/mzd.Plo
Normal file
@ -0,0 +1,253 @@
|
|||||||
|
m4ri/mzd.lo: m4ri/mzd.c /usr/include/stdc-predef.h m4ri/config.h \
|
||||||
|
/usr/include/stdlib.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h /usr/include/string.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h m4ri/mzd.h \
|
||||||
|
m4ri/m4ri_config.h /usr/include/assert.h /usr/include/math.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdio.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h m4ri/misc.h \
|
||||||
|
m4ri/config.h /usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h m4ri/debug_dump.h \
|
||||||
|
m4ri/parity.h m4ri/mmc.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/math.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
m4ri/debug_dump.h:
|
||||||
|
|
||||||
|
m4ri/parity.h:
|
||||||
|
|
||||||
|
m4ri/mmc.h:
|
254
preprocess/m4ri-20140914/m4ri/.deps/mzp.Plo
Normal file
254
preprocess/m4ri-20140914/m4ri/.deps/mzp.Plo
Normal file
@ -0,0 +1,254 @@
|
|||||||
|
m4ri/mzp.lo: m4ri/mzp.c /usr/include/stdc-predef.h m4ri/config.h \
|
||||||
|
m4ri/mzp.h m4ri/mzd.h m4ri/config.h m4ri/m4ri_config.h \
|
||||||
|
/usr/include/assert.h /usr/include/features.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h /usr/include/math.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdio.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h \
|
||||||
|
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h m4ri/misc.h \
|
||||||
|
/usr/include/string.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h m4ri/debug_dump.h \
|
||||||
|
m4ri/mzd.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/mzp.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/include/math.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
m4ri/debug_dump.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
267
preprocess/m4ri-20140914/m4ri/.deps/ple.Plo
Normal file
267
preprocess/m4ri-20140914/m4ri/.deps/ple.Plo
Normal file
@ -0,0 +1,267 @@
|
|||||||
|
m4ri/ple.lo: m4ri/ple.c /usr/include/stdc-predef.h m4ri/config.h \
|
||||||
|
/usr/include/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h m4ri/mzd.h \
|
||||||
|
m4ri/m4ri_config.h /usr/include/assert.h /usr/include/math.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h \
|
||||||
|
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h m4ri/misc.h m4ri/config.h \
|
||||||
|
/usr/include/string.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h m4ri/debug_dump.h \
|
||||||
|
m4ri/triangular.h m4ri/mzd.h m4ri/parity.h m4ri/ple_russian.h m4ri/mzp.h \
|
||||||
|
m4ri/strassen.h m4ri/brilliantrussian.h m4ri/ple.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/math.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
m4ri/debug_dump.h:
|
||||||
|
|
||||||
|
m4ri/triangular.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
||||||
|
|
||||||
|
m4ri/parity.h:
|
||||||
|
|
||||||
|
m4ri/ple_russian.h:
|
||||||
|
|
||||||
|
m4ri/mzp.h:
|
||||||
|
|
||||||
|
m4ri/strassen.h:
|
||||||
|
|
||||||
|
m4ri/brilliantrussian.h:
|
||||||
|
|
||||||
|
m4ri/ple.h:
|
268
preprocess/m4ri-20140914/m4ri/.deps/ple_russian.Plo
Normal file
268
preprocess/m4ri-20140914/m4ri/.deps/ple_russian.Plo
Normal file
@ -0,0 +1,268 @@
|
|||||||
|
m4ri/ple_russian.lo: m4ri/ple_russian.c /usr/include/stdc-predef.h \
|
||||||
|
m4ri/config.h m4ri/m4ri_config.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h \
|
||||||
|
/usr/include/stdlib.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h m4ri/ple_russian.h \
|
||||||
|
m4ri/mzd.h m4ri/config.h m4ri/m4ri_config.h /usr/include/assert.h \
|
||||||
|
/usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdio.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h m4ri/misc.h \
|
||||||
|
/usr/include/string.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h m4ri/debug_dump.h \
|
||||||
|
m4ri/mzp.h m4ri/brilliantrussian.h m4ri/graycode.h m4ri/xor.h \
|
||||||
|
m4ri/xor_template.h m4ri/ple_russian_template.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
m4ri/ple_russian.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/math.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
m4ri/debug_dump.h:
|
||||||
|
|
||||||
|
m4ri/mzp.h:
|
||||||
|
|
||||||
|
m4ri/brilliantrussian.h:
|
||||||
|
|
||||||
|
m4ri/graycode.h:
|
||||||
|
|
||||||
|
m4ri/xor.h:
|
||||||
|
|
||||||
|
m4ri/xor_template.h:
|
||||||
|
|
||||||
|
m4ri/ple_russian_template.h:
|
265
preprocess/m4ri-20140914/m4ri/.deps/solve.Plo
Normal file
265
preprocess/m4ri-20140914/m4ri/.deps/solve.Plo
Normal file
@ -0,0 +1,265 @@
|
|||||||
|
m4ri/solve.lo: m4ri/solve.c /usr/include/stdc-predef.h m4ri/config.h \
|
||||||
|
m4ri/solve.h m4ri/mzp.h m4ri/mzd.h m4ri/config.h m4ri/m4ri_config.h \
|
||||||
|
/usr/include/assert.h /usr/include/features.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h /usr/include/math.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdio.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h \
|
||||||
|
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h m4ri/misc.h \
|
||||||
|
/usr/include/string.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h m4ri/debug_dump.h \
|
||||||
|
m4ri/strassen.h m4ri/brilliantrussian.h m4ri/ple.h m4ri/triangular.h \
|
||||||
|
m4ri/mzp.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/solve.h:
|
||||||
|
|
||||||
|
m4ri/mzp.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/include/math.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
m4ri/debug_dump.h:
|
||||||
|
|
||||||
|
m4ri/strassen.h:
|
||||||
|
|
||||||
|
m4ri/brilliantrussian.h:
|
||||||
|
|
||||||
|
m4ri/ple.h:
|
||||||
|
|
||||||
|
m4ri/triangular.h:
|
||||||
|
|
||||||
|
m4ri/mzp.h:
|
260
preprocess/m4ri-20140914/m4ri/.deps/strassen.Plo
Normal file
260
preprocess/m4ri-20140914/m4ri/.deps/strassen.Plo
Normal file
@ -0,0 +1,260 @@
|
|||||||
|
m4ri/strassen.lo: m4ri/strassen.c /usr/include/stdc-predef.h \
|
||||||
|
m4ri/config.h m4ri/graycode.h m4ri/strassen.h /usr/include/math.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h m4ri/mzd.h m4ri/config.h \
|
||||||
|
m4ri/m4ri_config.h /usr/include/assert.h /usr/include/stdio.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h \
|
||||||
|
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h m4ri/misc.h \
|
||||||
|
/usr/include/string.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h m4ri/debug_dump.h \
|
||||||
|
m4ri/brilliantrussian.h m4ri/mzp.h m4ri/parity.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/graycode.h:
|
||||||
|
|
||||||
|
m4ri/strassen.h:
|
||||||
|
|
||||||
|
/usr/include/math.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
m4ri/debug_dump.h:
|
||||||
|
|
||||||
|
m4ri/brilliantrussian.h:
|
||||||
|
|
||||||
|
m4ri/mzp.h:
|
||||||
|
|
||||||
|
m4ri/parity.h:
|
265
preprocess/m4ri-20140914/m4ri/.deps/triangular.Plo
Normal file
265
preprocess/m4ri-20140914/m4ri/.deps/triangular.Plo
Normal file
@ -0,0 +1,265 @@
|
|||||||
|
m4ri/triangular.lo: m4ri/triangular.c /usr/include/stdc-predef.h \
|
||||||
|
m4ri/config.h /usr/include/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h m4ri/triangular.h m4ri/mzd.h \
|
||||||
|
m4ri/config.h m4ri/m4ri_config.h /usr/include/assert.h \
|
||||||
|
/usr/include/math.h /usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h \
|
||||||
|
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h m4ri/misc.h \
|
||||||
|
/usr/include/string.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h m4ri/debug_dump.h \
|
||||||
|
m4ri/triangular_russian.h m4ri/strassen.h m4ri/brilliantrussian.h \
|
||||||
|
m4ri/mzp.h m4ri/mzd.h m4ri/parity.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h:
|
||||||
|
|
||||||
|
m4ri/triangular.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/math.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
m4ri/debug_dump.h:
|
||||||
|
|
||||||
|
m4ri/triangular_russian.h:
|
||||||
|
|
||||||
|
m4ri/strassen.h:
|
||||||
|
|
||||||
|
m4ri/brilliantrussian.h:
|
||||||
|
|
||||||
|
m4ri/mzp.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
||||||
|
|
||||||
|
m4ri/parity.h:
|
265
preprocess/m4ri-20140914/m4ri/.deps/triangular_russian.Plo
Normal file
265
preprocess/m4ri-20140914/m4ri/.deps/triangular_russian.Plo
Normal file
@ -0,0 +1,265 @@
|
|||||||
|
m4ri/triangular_russian.lo: m4ri/triangular_russian.c \
|
||||||
|
/usr/include/stdc-predef.h m4ri/config.h m4ri/triangular_russian.h \
|
||||||
|
m4ri/mzd.h m4ri/config.h m4ri/m4ri_config.h /usr/include/assert.h \
|
||||||
|
/usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h /usr/include/math.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h /usr/include/stdio.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h \
|
||||||
|
/usr/include/stdlib.h /usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h m4ri/misc.h \
|
||||||
|
/usr/include/string.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h \
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h /usr/include/stdint.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h m4ri/debug_dump.h \
|
||||||
|
m4ri/graycode.h m4ri/brilliantrussian.h m4ri/mzp.h m4ri/ple_russian.h \
|
||||||
|
m4ri/xor.h m4ri/xor_template.h
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/triangular_russian.h:
|
||||||
|
|
||||||
|
m4ri/mzd.h:
|
||||||
|
|
||||||
|
m4ri/config.h:
|
||||||
|
|
||||||
|
m4ri/m4ri_config.h:
|
||||||
|
|
||||||
|
/usr/include/assert.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/include/math.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/math-vector.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-logb.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/fp-fast.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathcalls.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/mathinline.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdio2.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/emmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/xmmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mmintrin.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/mm_malloc.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/sys/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/select2.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdlib.h:
|
||||||
|
|
||||||
|
m4ri/misc.h:
|
||||||
|
|
||||||
|
/usr/include/string.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/strings.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/strings_fortified.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/string_fortified.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-linux-gnu/9/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
m4ri/debug_dump.h:
|
||||||
|
|
||||||
|
m4ri/graycode.h:
|
||||||
|
|
||||||
|
m4ri/brilliantrussian.h:
|
||||||
|
|
||||||
|
m4ri/mzp.h:
|
||||||
|
|
||||||
|
m4ri/ple_russian.h:
|
||||||
|
|
||||||
|
m4ri/xor.h:
|
||||||
|
|
||||||
|
m4ri/xor_template.h:
|
0
preprocess/m4ri-20140914/m4ri/.dirstamp
Normal file
0
preprocess/m4ri-20140914/m4ri/.dirstamp
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/brilliantrussian.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/brilliantrussian.o
Normal file
Binary file not shown.
BIN
preprocess/m4ri-20140914/m4ri/.libs/debug_dump.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/debug_dump.o
Normal file
Binary file not shown.
BIN
preprocess/m4ri-20140914/m4ri/.libs/djb.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/djb.o
Normal file
Binary file not shown.
BIN
preprocess/m4ri-20140914/m4ri/.libs/echelonform.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/echelonform.o
Normal file
Binary file not shown.
BIN
preprocess/m4ri-20140914/m4ri/.libs/graycode.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/graycode.o
Normal file
Binary file not shown.
BIN
preprocess/m4ri-20140914/m4ri/.libs/io.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/io.o
Normal file
Binary file not shown.
BIN
preprocess/m4ri-20140914/m4ri/.libs/misc.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/misc.o
Normal file
Binary file not shown.
BIN
preprocess/m4ri-20140914/m4ri/.libs/mmc.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/mmc.o
Normal file
Binary file not shown.
BIN
preprocess/m4ri-20140914/m4ri/.libs/mp.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/mp.o
Normal file
Binary file not shown.
BIN
preprocess/m4ri-20140914/m4ri/.libs/mzd.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/mzd.o
Normal file
Binary file not shown.
BIN
preprocess/m4ri-20140914/m4ri/.libs/mzp.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/mzp.o
Normal file
Binary file not shown.
BIN
preprocess/m4ri-20140914/m4ri/.libs/ple.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/ple.o
Normal file
Binary file not shown.
BIN
preprocess/m4ri-20140914/m4ri/.libs/ple_russian.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/ple_russian.o
Normal file
Binary file not shown.
BIN
preprocess/m4ri-20140914/m4ri/.libs/solve.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/solve.o
Normal file
Binary file not shown.
BIN
preprocess/m4ri-20140914/m4ri/.libs/strassen.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/strassen.o
Normal file
Binary file not shown.
BIN
preprocess/m4ri-20140914/m4ri/.libs/triangular.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/triangular.o
Normal file
Binary file not shown.
BIN
preprocess/m4ri-20140914/m4ri/.libs/triangular_russian.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/.libs/triangular_russian.o
Normal file
Binary file not shown.
2312
preprocess/m4ri-20140914/m4ri/Doxyfile
Normal file
2312
preprocess/m4ri-20140914/m4ri/Doxyfile
Normal file
File diff suppressed because it is too large
Load Diff
1193
preprocess/m4ri-20140914/m4ri/brilliantrussian.c
Normal file
1193
preprocess/m4ri-20140914/m4ri/brilliantrussian.c
Normal file
File diff suppressed because it is too large
Load Diff
319
preprocess/m4ri-20140914/m4ri/brilliantrussian.h
Normal file
319
preprocess/m4ri-20140914/m4ri/brilliantrussian.h
Normal file
@ -0,0 +1,319 @@
|
|||||||
|
/**
|
||||||
|
* \file brilliantrussian.h
|
||||||
|
* \brief M4RI and M4RM.
|
||||||
|
*
|
||||||
|
* \author Gregory Bard <bard@fordham.edu>
|
||||||
|
* \author Martin Albrecht <martinralbrecht@googlemail.com>
|
||||||
|
*
|
||||||
|
* \note For reference see Gregory Bard; Accelerating Cryptanalysis with
|
||||||
|
* the Method of Four Russians; 2006;
|
||||||
|
* http://eprint.iacr.org/2006/251.pdf
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef M4RI_BRILLIANTRUSSIAN_H
|
||||||
|
#define M4RI_BRILLIANTRUSSIAN_H
|
||||||
|
|
||||||
|
/*******************************************************************
|
||||||
|
*
|
||||||
|
* M4RI: Linear Algebra over GF(2)
|
||||||
|
*
|
||||||
|
* Copyright (C) 2007, 2008 Gregory Bard <bard@fordham.edu>
|
||||||
|
* Copyright (C) 2008-2010 Martin Albrecht <martinralbrecht@googlemail.com>
|
||||||
|
*
|
||||||
|
* Distributed under the terms of the GNU General Public License (GPL)
|
||||||
|
* version 2 or higher.
|
||||||
|
*
|
||||||
|
* This code is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
|
*
|
||||||
|
* The full text of the GPL is available at:
|
||||||
|
*
|
||||||
|
* http://www.gnu.org/licenses/
|
||||||
|
*
|
||||||
|
********************************************************************/
|
||||||
|
|
||||||
|
#include <math.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include <m4ri/mzd.h>
|
||||||
|
#include <m4ri/mzp.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Constructs all possible \f$2^k\f$ row combinations using the gray
|
||||||
|
* code table.
|
||||||
|
*
|
||||||
|
* \param M matrix to generate the tables from
|
||||||
|
* \param r the starting row
|
||||||
|
* \param c the starting column (only exact up to block)
|
||||||
|
* \param k
|
||||||
|
* \param T prealloced matrix of dimension \f$2^k\f$ x m->ncols
|
||||||
|
* \param L prealloced table of length \f$2^k\f$
|
||||||
|
*/
|
||||||
|
|
||||||
|
void mzd_make_table(mzd_t const *M, rci_t r, rci_t c, int k, mzd_t *T, rci_t *L);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief The function looks up k bits from position i,startcol in
|
||||||
|
* each row and adds the appropriate row from T to the row i.
|
||||||
|
*
|
||||||
|
* This process is iterated for i from startrow to stoprow
|
||||||
|
* (exclusive).
|
||||||
|
*
|
||||||
|
* \param M Matrix to operate on
|
||||||
|
* \param startrow top row which is operated on
|
||||||
|
* \param endrow bottom row which is operated on
|
||||||
|
* \param startcol Starting column for addition
|
||||||
|
* \param k M4RI parameter
|
||||||
|
* \param T contains the correct row to be added
|
||||||
|
* \param L Contains row number to be added
|
||||||
|
*/
|
||||||
|
|
||||||
|
void mzd_process_rows(mzd_t *M, rci_t startrow, rci_t endrow, rci_t startcol, int k, mzd_t const *T, rci_t const *L);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Same as mzd_process_rows but works with two Gray code tables
|
||||||
|
* in parallel.
|
||||||
|
*
|
||||||
|
* \param M Matrix to operate on
|
||||||
|
* \param startrow top row which is operated on
|
||||||
|
* \param endrow bottom row which is operated on
|
||||||
|
* \param startcol Starting column for addition
|
||||||
|
* \param k M4RI parameter
|
||||||
|
* \param T0 contains the correct row to be added
|
||||||
|
* \param L0 Contains row number to be added
|
||||||
|
* \param T1 contains the correct row to be added
|
||||||
|
* \param L1 Contains row number to be added
|
||||||
|
*/
|
||||||
|
|
||||||
|
void mzd_process_rows2(mzd_t *M, rci_t startrow, rci_t endrow, rci_t startcol, int k, mzd_t const *T0, rci_t const *L0, mzd_t const *T1, rci_t const *L1);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Same as mzd_process_rows but works with three Gray code tables
|
||||||
|
* in parallel.
|
||||||
|
*
|
||||||
|
* \param M Matrix to operate on
|
||||||
|
* \param startrow top row which is operated on
|
||||||
|
* \param endrow bottom row which is operated on
|
||||||
|
* \param startcol Starting column for addition
|
||||||
|
* \param k M4RI parameter
|
||||||
|
* \param T0 contains the correct row to be added
|
||||||
|
* \param L0 Contains row number to be added
|
||||||
|
* \param T1 contains the correct row to be added
|
||||||
|
* \param L1 Contains row number to be added
|
||||||
|
* \param T2 contains the correct row to be added
|
||||||
|
* \param L2 Contains row number to be added
|
||||||
|
*/
|
||||||
|
|
||||||
|
void mzd_process_rows3(mzd_t *M, rci_t startrow, rci_t endrow, rci_t startcol, int k,
|
||||||
|
mzd_t const *T0, rci_t const *L0, mzd_t const *T1, rci_t const *L1,
|
||||||
|
mzd_t const *T2, rci_t const *L2);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Same as mzd_process_rows but works with four Gray code tables
|
||||||
|
* in parallel.
|
||||||
|
*
|
||||||
|
* \param M Matrix to operate on
|
||||||
|
* \param startrow top row which is operated on
|
||||||
|
* \param endrow bottom row which is operated on
|
||||||
|
* \param startcol Starting column for addition
|
||||||
|
* \param k M4RI parameter
|
||||||
|
* \param T0 contains the correct row to be added
|
||||||
|
* \param L0 Contains row number to be added
|
||||||
|
* \param T1 contains the correct row to be added
|
||||||
|
* \param L1 Contains row number to be added
|
||||||
|
* \param T2 contains the correct row to be added
|
||||||
|
* \param L2 Contains row number to be added
|
||||||
|
* \param T3 contains the correct row to be added
|
||||||
|
* \param L3 Contains row number to be added
|
||||||
|
*/
|
||||||
|
|
||||||
|
void mzd_process_rows4(mzd_t *M, rci_t startrow, rci_t endrow, rci_t startcol, int k,
|
||||||
|
mzd_t const *T0, rci_t const *L0, mzd_t const *T1, rci_t const *L1,
|
||||||
|
mzd_t const *T2, rci_t const *L2, mzd_t const *T3, rci_t const *L3);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Same as mzd_process_rows but works with five Gray code tables
|
||||||
|
* in parallel.
|
||||||
|
*
|
||||||
|
* \param M Matrix to operate on
|
||||||
|
* \param startrow top row which is operated on
|
||||||
|
* \param endrow bottom row which is operated on
|
||||||
|
* \param startcol Starting column for addition
|
||||||
|
* \param k M4RI parameter
|
||||||
|
* \param T0 contains the correct row to be added
|
||||||
|
* \param L0 Contains row number to be added
|
||||||
|
* \param T1 contains the correct row to be added
|
||||||
|
* \param L1 Contains row number to be added
|
||||||
|
* \param T2 contains the correct row to be added
|
||||||
|
* \param L2 Contains row number to be added
|
||||||
|
* \param T3 contains the correct row to be added
|
||||||
|
* \param L3 Contains row number to be added
|
||||||
|
* \param T4 contains the correct row to be added
|
||||||
|
* \param L4 Contains row number to be added
|
||||||
|
*/
|
||||||
|
|
||||||
|
void mzd_process_rows5(mzd_t *M, rci_t startrow, rci_t endrow, rci_t startcol, int k,
|
||||||
|
mzd_t const *T0, rci_t const *L0, mzd_t const *T1, rci_t const *L1,
|
||||||
|
mzd_t const *T2, rci_t const *L2, mzd_t const *T3, rci_t const *L3,
|
||||||
|
mzd_t const *T4, rci_t const *L4);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Same as mzd_process_rows but works with six Gray code tables
|
||||||
|
* in parallel.
|
||||||
|
*
|
||||||
|
* \param M Matrix to operate on
|
||||||
|
* \param startrow top row which is operated on
|
||||||
|
* \param endrow bottom row which is operated on
|
||||||
|
* \param startcol Starting column for addition
|
||||||
|
* \param k M4RI parameter
|
||||||
|
* \param T0 contains the correct row to be added
|
||||||
|
* \param L0 Contains row number to be added
|
||||||
|
* \param T1 contains the correct row to be added
|
||||||
|
* \param L1 Contains row number to be added
|
||||||
|
* \param T2 contains the correct row to be added
|
||||||
|
* \param L2 Contains row number to be added
|
||||||
|
* \param T3 contains the correct row to be added
|
||||||
|
* \param L3 Contains row number to be added
|
||||||
|
* \param T4 contains the correct row to be added
|
||||||
|
* \param L4 Contains row number to be added
|
||||||
|
* \param T5 contains the correct row to be added
|
||||||
|
* \param L5 Contains row number to be added
|
||||||
|
*/
|
||||||
|
|
||||||
|
void mzd_process_rows6(mzd_t *M, rci_t startrow, rci_t endrow, rci_t startcol, int k,
|
||||||
|
mzd_t const *T0, rci_t const *L0, mzd_t const *T1, rci_t const *L1,
|
||||||
|
mzd_t const *T2, rci_t const *L2, mzd_t const *T3, rci_t const *L3,
|
||||||
|
mzd_t const *T4, rci_t const *L4, mzd_t const *T5, rci_t const *L5);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Matrix elimination using the 'Method of the Four Russians'
|
||||||
|
* (M4RI).
|
||||||
|
*
|
||||||
|
* The M4RI algorithm was proposed in Gregory Bard; Accelerating
|
||||||
|
* Cryptanalysis with the Method of Four Russians; 2006;
|
||||||
|
* http://eprint.iacr.org/2006/251
|
||||||
|
*
|
||||||
|
* Our implementatation is discussed in in Martin Albrecht and Clément
|
||||||
|
* Pernet; Efficient Decomposition of Dense Matrices over GF(2);
|
||||||
|
* http://arxiv.org/abs/1006.1744
|
||||||
|
*
|
||||||
|
* \param M Matrix to be reduced.
|
||||||
|
* \param full Return the reduced row echelon form, not only upper triangular form.
|
||||||
|
* \param k M4RI parameter, may be 0 for auto-choose.
|
||||||
|
*
|
||||||
|
* \example testsuite/test_elimination.c
|
||||||
|
* \example testsuite/bench_elimination.c
|
||||||
|
*
|
||||||
|
* \return Rank of A.
|
||||||
|
*/
|
||||||
|
|
||||||
|
rci_t _mzd_echelonize_m4ri(mzd_t *A, const int full, int k, int heuristic, const double threshold);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Given a matrix in upper triangular form compute the reduced row
|
||||||
|
* echelon form of that matrix.
|
||||||
|
*
|
||||||
|
* \param M Matrix to be reduced.
|
||||||
|
* \param k M4RI parameter, may be 0 for auto-choose.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
void mzd_top_echelonize_m4ri(mzd_t *M, int k);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Given a matrix in upper triangular form compute the reduced
|
||||||
|
* row echelon form of that matrix but only start to do anything for
|
||||||
|
* the pivot at (r,c).
|
||||||
|
*
|
||||||
|
* \param A Matrix to be reduced.
|
||||||
|
* \param k M4RI parameter, may be 0 for auto-choose.
|
||||||
|
* \param r Row index.
|
||||||
|
* \param c Column index.
|
||||||
|
* \param max_r Only clear top max_r rows.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
rci_t _mzd_top_echelonize_m4ri(mzd_t *A, int k, rci_t r, rci_t c, rci_t max_r);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Invert the matrix src using Konrod's method.
|
||||||
|
*
|
||||||
|
* \param dst Matrix to hold the inverse (may be NULL)
|
||||||
|
* \param src Matrix to be inverted.
|
||||||
|
* \param k Table size parameter, may be 0 for automatic choice.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* \return Inverse of src if src has full rank
|
||||||
|
*/
|
||||||
|
|
||||||
|
mzd_t *mzd_inv_m4ri(mzd_t *dst, const mzd_t* src, int k);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Matrix multiplication using Konrod's method, i.e. compute C
|
||||||
|
* such that C == AB.
|
||||||
|
*
|
||||||
|
* This is the convenient wrapper function, please see _mzd_mul_m4rm
|
||||||
|
* for authors and implementation details.
|
||||||
|
*
|
||||||
|
* \param C Preallocated product matrix, may be NULL for automatic creation.
|
||||||
|
* \param A Input matrix A
|
||||||
|
* \param B Input matrix B
|
||||||
|
* \param k M4RI parameter, may be 0 for auto-choose.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* \return Pointer to C.
|
||||||
|
*/
|
||||||
|
|
||||||
|
mzd_t *mzd_mul_m4rm(mzd_t *C, mzd_t const *A, mzd_t const *B, int k);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set C to C + AB using Konrod's method.
|
||||||
|
*
|
||||||
|
* This is the convenient wrapper function, please see _mzd_mul_m4rm
|
||||||
|
* for authors and implementation details.
|
||||||
|
*
|
||||||
|
* \param C Preallocated product matrix, may be NULL for zero matrix.
|
||||||
|
* \param A Input matrix A
|
||||||
|
* \param B Input matrix B
|
||||||
|
* \param k M4RI parameter, may be 0 for auto-choose.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* \return Pointer to C.
|
||||||
|
*/
|
||||||
|
|
||||||
|
mzd_t *mzd_addmul_m4rm(mzd_t *C, mzd_t const *A, mzd_t const *B, int k);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Matrix multiplication using Konrod's method, i.e. compute C such
|
||||||
|
* that C == AB.
|
||||||
|
*
|
||||||
|
* This is the actual implementation.
|
||||||
|
*
|
||||||
|
* This function is described in Martin Albrecht, Gregory Bard and
|
||||||
|
* William Hart; Efficient Multiplication of Dense Matrices over
|
||||||
|
* GF(2); pre-print available at http://arxiv.org/abs/0811.1714
|
||||||
|
*
|
||||||
|
* \param C Preallocated product matrix.
|
||||||
|
* \param A Input matrix A
|
||||||
|
* \param B Input matrix B
|
||||||
|
* \param k M4RI parameter, may be 0 for auto-choose.
|
||||||
|
* \param clear clear the matrix C first
|
||||||
|
*
|
||||||
|
* \author Martin Albrecht -- initial implementation
|
||||||
|
* \author William Hart -- block matrix implementation, use of several
|
||||||
|
* Gray code tables, general speed-ups
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* \return Pointer to C.
|
||||||
|
*/
|
||||||
|
|
||||||
|
mzd_t *_mzd_mul_m4rm(mzd_t *C, mzd_t const *A, mzd_t const *B, int k, int clear);
|
||||||
|
|
||||||
|
|
||||||
|
#endif // M4RI_BRILLIANTRUSSIAN_H
|
12
preprocess/m4ri-20140914/m4ri/brilliantrussian.lo
Normal file
12
preprocess/m4ri-20140914/m4ri/brilliantrussian.lo
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# m4ri/brilliantrussian.lo - a libtool object file
|
||||||
|
# Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1.10
|
||||||
|
#
|
||||||
|
# Please DO NOT delete this file!
|
||||||
|
# It is necessary for linking the library.
|
||||||
|
|
||||||
|
# Name of the PIC object.
|
||||||
|
pic_object='.libs/brilliantrussian.o'
|
||||||
|
|
||||||
|
# Name of the non-PIC object
|
||||||
|
non_pic_object='brilliantrussian.o'
|
||||||
|
|
BIN
preprocess/m4ri-20140914/m4ri/brilliantrussian.o
Normal file
BIN
preprocess/m4ri-20140914/m4ri/brilliantrussian.o
Normal file
Binary file not shown.
93
preprocess/m4ri-20140914/m4ri/config.h
Normal file
93
preprocess/m4ri-20140914/m4ri/config.h
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
/* m4ri/config.h. Generated from config.h.in by configure. */
|
||||||
|
/* m4ri/config.h.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||||
|
#define HAVE_DLFCN_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
|
#define HAVE_INTTYPES_H 1
|
||||||
|
|
||||||
|
/* Define when libpapi is available. */
|
||||||
|
/* #undef HAVE_LIBPAPI */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <memory.h> header file. */
|
||||||
|
#define HAVE_MEMORY_H 1
|
||||||
|
|
||||||
|
/* Support mmx instructions */
|
||||||
|
#define HAVE_MMX /**/
|
||||||
|
|
||||||
|
/* Support aligned allocations */
|
||||||
|
#define HAVE_MM_MALLOC /**/
|
||||||
|
|
||||||
|
/* Define if OpenMP is enabled */
|
||||||
|
/* #undef HAVE_OPENMP */
|
||||||
|
|
||||||
|
/* Define to 1 if `posix_memalign' works. */
|
||||||
|
#define HAVE_POSIX_MEMALIGN 1
|
||||||
|
|
||||||
|
/* Support SSE (Streaming SIMD Extensions) instructions */
|
||||||
|
#define HAVE_SSE /**/
|
||||||
|
|
||||||
|
/* Support SSE2 (Streaming SIMD Extensions 2) instructions */
|
||||||
|
#define HAVE_SSE2 /**/
|
||||||
|
|
||||||
|
/* Support SSE3 (Streaming SIMD Extensions 3) instructions */
|
||||||
|
#define HAVE_SSE3 /**/
|
||||||
|
|
||||||
|
/* Support SSSE3 (Supplemental Streaming SIMD Extensions 3) instructions */
|
||||||
|
#define HAVE_SSSE3 /**/
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <stdint.h> header file. */
|
||||||
|
#define HAVE_STDINT_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||||
|
#define HAVE_STDLIB_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <strings.h> header file. */
|
||||||
|
#define HAVE_STRINGS_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <string.h> header file. */
|
||||||
|
#define HAVE_STRING_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||||
|
#define HAVE_SYS_TYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
|
#define HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||||
|
*/
|
||||||
|
#define LT_OBJDIR ".libs/"
|
||||||
|
|
||||||
|
/* Define whether debugging is enabled */
|
||||||
|
#define NDEBUG 1
|
||||||
|
|
||||||
|
/* Name of package */
|
||||||
|
#define PACKAGE "m4ri"
|
||||||
|
|
||||||
|
/* Define to the address where bug reports for this package should be sent. */
|
||||||
|
#define PACKAGE_BUGREPORT ""
|
||||||
|
|
||||||
|
/* Define to the full name of this package. */
|
||||||
|
#define PACKAGE_NAME "m4ri"
|
||||||
|
|
||||||
|
/* Define to the full name and version of this package. */
|
||||||
|
#define PACKAGE_STRING "m4ri 20140914"
|
||||||
|
|
||||||
|
/* Define to the one symbol short name of this package. */
|
||||||
|
#define PACKAGE_TARNAME "m4ri"
|
||||||
|
|
||||||
|
/* Define to the home page for this package. */
|
||||||
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
|
/* Define to the version of this package. */
|
||||||
|
#define PACKAGE_VERSION "20140914"
|
||||||
|
|
||||||
|
/* Define to 1 if you have the ANSI C header files. */
|
||||||
|
#define STDC_HEADERS 1
|
||||||
|
|
||||||
|
/* Version number of package */
|
||||||
|
#define VERSION "20140914"
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user