try fix cims
This commit is contained in:
@@ -48,6 +48,8 @@ else
|
||||
endif
|
||||
else
|
||||
OPTFLAGS += -march=native
|
||||
MonetDB_LIB += $AQ_MONETDB_LIB
|
||||
MonetDB_INC += $AQ_MONETDB_INC
|
||||
MonetDB_INC += -I/usr/local/include/monetdb -I/usr/include/monetdb
|
||||
endif
|
||||
MonetDB_LIB += -lmonetdbe
|
||||
|
||||
+2
-2
@@ -1,9 +1,9 @@
|
||||
ARCH=`uname -m`
|
||||
ARCH2=`arch`
|
||||
echo Current architechure: $ARCH $ARCH2
|
||||
echo "Current architechure: (uname -m) => $ARCH; (arch) => $ARCH2"
|
||||
echo Current shell: $SHELL
|
||||
PASSED=1
|
||||
for i in python3 c++ make ranlib libtool $SHELL
|
||||
for i in python3 c++ make ranlib libtool $SHELL $CXX
|
||||
do
|
||||
FILEPATH=`which $i`
|
||||
FILEINFO=`file $FILEPATH`
|
||||
|
||||
@@ -70,16 +70,16 @@ class checksums:
|
||||
|
||||
class build_manager:
|
||||
sourcefiles = [
|
||||
'build.py', 'Makefile',
|
||||
'build.py', 'Makefile',
|
||||
'server/server.cpp', 'server/io.cpp',
|
||||
'server/monetdb_conn.cpp', 'server/threading.cpp',
|
||||
'server/winhelper.cpp'
|
||||
'server/monetdb_conn.cpp', 'server/threading.cpp',
|
||||
'server/winhelper.cpp'
|
||||
]
|
||||
headerfiles = ['server/aggregations.h', 'server/hasher.h', 'server/io.h',
|
||||
'server/libaquery.h', 'server/monetdb_conn.h', 'server/pch.hpp',
|
||||
'server/table.h', 'server/threading.h', 'server/types.h', 'server/utils.h',
|
||||
headerfiles = ['server/aggregations.h', 'server/hasher.h', 'server/io.h',
|
||||
'server/libaquery.h', 'server/monetdb_conn.h', 'server/pch.hpp',
|
||||
'server/table.h', 'server/threading.h', 'server/types.h', 'server/utils.h',
|
||||
'server/winhelper.h', 'server/gc.hpp', 'server/vector_type.hpp',
|
||||
'server/table_ext_monetdb.hpp'
|
||||
'server/table_ext_monetdb.hpp'
|
||||
]
|
||||
|
||||
class DriverBase:
|
||||
|
||||
@@ -3,7 +3,5 @@ mo-dots==9.173.22126
|
||||
mo-parsing==8.183.22158
|
||||
mo-imports==7.169.22121
|
||||
dataclasses; python_version < '3.7'
|
||||
readline; sys_platform == 'linux'
|
||||
vswhere; sys_platform == 'win32'
|
||||
numpy
|
||||
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
#include "pch.hpp"
|
||||
#include "pch_msc.hpp"
|
||||
|
||||
#include "io.h"
|
||||
#include "table.h"
|
||||
|
||||
+3
-4
@@ -11,12 +11,11 @@
|
||||
#include "../csv.h"
|
||||
#ifdef _WIN32
|
||||
#include "winhelper.h"
|
||||
#undef max
|
||||
#undef min
|
||||
#else
|
||||
#include <dlfcn.h>
|
||||
#include <fcntl.h>
|
||||
#include <sys/mman.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#undef max
|
||||
#undef min
|
||||
#endif
|
||||
@@ -0,0 +1,3 @@
|
||||
#ifdef _MSCVER
|
||||
#include "pch.hpp"
|
||||
#endif
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
#include "pch.hpp"
|
||||
#include "pch_msc.hpp"
|
||||
|
||||
#include "../csv.h"
|
||||
#include <iostream>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "pch.hpp"
|
||||
#include "pch_msc.hpp"
|
||||
|
||||
#ifdef _WIN32
|
||||
#include "winhelper.h"
|
||||
|
||||
Reference in New Issue
Block a user