Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
aml
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
27
Issues
27
List
Boards
Labels
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
argo
aml
Commits
c9d8ed8c
Commit
c9d8ed8c
authored
Jul 02, 2019
by
Swann Perarnau
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'compilation' into 'master'
Make out-of-tree build work See merge request
!63
parents
8d99c512
577bc63d
Pipeline
#8026
passed with stage
in 3 minutes and 36 seconds
Changes
4
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
5 deletions
+30
-5
.gitlab-ci.yml
.gitlab-ci.yml
+22
-0
AUTHORS
AUTHORS
+1
-0
doc/Makefile.am
doc/Makefile.am
+6
-4
src/Makefile.am
src/Makefile.am
+1
-1
No files found.
.gitlab-ci.yml
View file @
c9d8ed8c
...
...
@@ -42,6 +42,27 @@ make:generic:
-
config.log
-
tests/*.log
make:out-of-tree:
stage
:
build
except
:
-
/^wip.*/
-
/^WIP.*/
variables
:
CFLAGS
:
"
-std=c99
-pedantic
-Wall
-Wextra
-Werror
-Wno-unused-but-set-parameter"
script
:
-
./autogen.sh
-
mkdir out
-
cd out
-
mkdir build
-
../configure --prefix=`pwd`/build
-
make
-
make check
artifacts
:
when
:
on_failure
paths
:
-
config.log
-
tests/*.log
make:knl:
stage
:
build
except
:
...
...
@@ -60,6 +81,7 @@ make:knl:
artifacts
:
when
:
on_failure
paths
:
-
config.log
-
tests/*.log
readthedocs
:
...
...
AUTHORS
View file @
c9d8ed8c
...
...
@@ -3,3 +3,4 @@ Kamil Iskra <iskra@mcs.anl.gov>
Brian Suchy <briansuchy2022@u.northwestern.edu>
Valentin Reis <fre@freux.fr>
Nicolas Denoyelle <ndenoyelle@anl.gov>
Clement Foyer <cfoyer@cray.com>
doc/Makefile.am
View file @
c9d8ed8c
...
...
@@ -6,9 +6,14 @@ if BUILD_DOCS
build-docs
:
$(DOXYGEN)
aml.doxy
$(SPHINXBUILD)
-b
html
-a
.
$(SPHINX_BUILD_DIR)
dist-hook
:
build-docs
cp
-r
$(SPHINX_BUILD_DIR)
$(distdir)
else
build-docs
:
echo
"not building documentation"
@
echo
"not building documentation"
dist-hook
:
build-docs
endif
create-doc-dir
:
...
...
@@ -26,7 +31,4 @@ uninstall-local:
clean-local
:
rm
-rf
$(DOXYGEN_BUILD_DIR)
$(SPHINX_BUILD_DIR)
dist-hook
:
build-docs
cp
-r
$(SPHINX_BUILD_DIR)
$(distdir)
EXTRA_DIST
=
aml.doxy conf.py pages index.rst img
src/Makefile.am
View file @
c9d8ed8c
AM_CFLAGS
=
-I
$(top_srcdir)
/include
$(PTHREAD_CFLAGS)
AM_C
PP
FLAGS
=
-I
$(top_srcdir)
/include
$(PTHREAD_CFLAGS)
AM_LDFLAGS
=
$(PTHREAD_LIBS)
...
...
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