Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
O
openfpm_vcluster
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openfpm
openfpm_vcluster
Commits
65086c80
Commit
65086c80
authored
May 13, 2015
by
incardon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing script for gin compilation
parent
efcc71de
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
5 deletions
+13
-5
configure.ac
configure.ac
+8
-1
src/Makefile
src/Makefile
+3
-2
src/Makefile.am
src/Makefile.am
+2
-2
No files found.
configure.ac
View file @
65086c80
...
...
@@ -67,12 +67,18 @@ AC_ARG_ENABLE(memcheck,
)
AC_MSG_RESULT($mem_check)
if test x"$mem_check" = x"yes"; then
AC_DEFINE([MEMLEAK_CHECK],[],[Memory check])
fi
####################################
DEFAULT_LIB=""
# At least for glibc, clock_gettime is in librt. But don't pull that
# in if it still doesn't give us the function we want.
AC_CHECK_LIB(rt, clock_gettime,[DEFAULT_LIB+=" -lrt "],[],[])
##### CHECK FOR BOOST ##############
AX_BOOST([1.41],[],[])
...
...
@@ -111,6 +117,7 @@ AM_CONDITIONAL(BUILDCUDA, test x$gpu_support = x"yes")
AC_SUBST(NVCCFLAGS)
AC_SUBST(INCLUDES_PATH)
AC_SUBST(DEFAULT_LIB)
# Checks for typedefs, structures, and compiler characteristics.
...
...
src/Makefile
View file @
65086c80
...
...
@@ -100,7 +100,7 @@ am_vcluster_OBJECTS = vcluster-main.$(OBJEXT) \
vcluster-VCluster.
$(OBJEXT)
vcluster_OBJECTS
=
$(am_vcluster_OBJECTS)
am__DEPENDENCIES_1
=
am__DEPENDENCIES_2
=
$(am__DEPENDENCIES_1)
am__DEPENDENCIES_2
=
$(am__DEPENDENCIES_1)
$(am__DEPENDENCIES_1)
vcluster_DEPENDENCIES
=
$(am__DEPENDENCIES_2)
vcluster_LINK
=
$(CXXLD)
$(vcluster_CXXFLAGS)
$(CXXFLAGS)
\
$(AM_LDFLAGS)
$(LDFLAGS)
-o
$@
...
...
@@ -193,6 +193,7 @@ CXX = mpic++
CXXDEPMODE
=
depmode
=
gcc3
CXXFLAGS
=
--std
=
c++11
-march
=
native
-mtune
=
native
-Wno-unused-local-typedefs
-Wextra
-Wno-unused-parameter
-Wall
-O3
-g3
-funroll-loops
CYGPATH_W
=
echo
DEFAULT_LIB
=
-lrt
DEFS
=
-DHAVE_CONFIG_H
DEPDIR
=
.deps
ECHO_C
=
...
...
@@ -282,7 +283,7 @@ target_vendor = unknown
top_build_prefix
=
../
top_builddir
=
..
top_srcdir
=
..
LINKLIBS
=
$(PTHREAD_LIBS)
$(OPT_LIBS)
$(BOOST_LDFLAGS)
LINKLIBS
=
$(
DEFAULT_LIB)
$(
PTHREAD_LIBS)
$(OPT_LIBS)
$(BOOST_LDFLAGS)
vcluster_SOURCES
=
main.cpp VCluster.cpp
vcluster_CXXFLAGS
=
$(INCLUDES_PATH)
vcluster_CFLAGS
=
$(CUDA_CFLAGS)
...
...
src/Makefile.am
View file @
65086c80
LINKLIBS
=
$(PTHREAD_LIBS)
$(OPT_LIBS)
$(BOOST_LDFLAGS)
LINKLIBS
=
$(
DEFAULT_LIB)
$(
PTHREAD_LIBS)
$(OPT_LIBS)
$(BOOST_LDFLAGS)
bin_PROGRAMS
=
vcluster
vcluster_SOURCES
=
main.cpp VCluster.cpp
vcluster_CXXFLAGS
=
$(INCLUDES_PATH)
vcluster_CFLAGS
=
$(CUDA_CFLAGS)
vcluster_LDADD
=
$(LINKLIBS)
-lrt
vcluster_LDADD
=
$(LINKLIBS)
.cu.o
:
$(NVCC)
$(NVCCFLAGS)
-o
$@
-c
$<
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment