Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
iwr
amdis
Commits
65729524
Commit
65729524
authored
Feb 17, 2016
by
Praetorius, Simon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
some compatibility test scripts
parent
70c01bd2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
0 deletions
+51
-0
doc/compiler_compatibility.json
doc/compiler_compatibility.json
+36
-0
doc/compiler_compatibility.py
doc/compiler_compatibility.py
+15
-0
No files found.
doc/compiler_compatibility.json
0 → 100644
View file @
65729524
{
"msvc"
:
[
{
"os"
:
"win-32"
,
"boost"
:
"1.60.0"
,
"version"
:
"14.0"
,
"flags"
:
[
"ENABLE_COMPRESSION=ON"
,
"ENABLE_CXX11=ON"
,
"ENABLE_EXTENSIONS=ON"
,
"ENABLE_BASE_PROBLEMS=ON"
,
"ENABLE_UMFPACK=ON"
]
}
],
"g++"
:
[
{
"os"
:
"linux-64"
,
"boost"
:
"1.55.0"
,
"version"
:
"5.3.0"
,
"flags"
:
[
"ENABLE_COMPRESSION=ON"
,
"ENABLE_CXX11=ON"
,
"ENABLE_EXTENSIONS=ON"
,
"ENABLE_BASE_PROBLEMS=ON"
,
"ENABLE_UMFPACK=ON"
]
}
],
"intel"
:
[
{}
],
"clang"
:
[
{}
]
}
\ No newline at end of file
doc/compiler_compatibility.py
0 → 100755
View file @
65729524
#!/usr/bin/python
import
json
with
open
(
"compiler_compatibility.json"
,
"r"
)
as
in_
:
compiler
=
json
.
load
(
in_
)
compiler
[
"g++"
].
append
({
"version"
:
"6.0.0 20151003"
,
"flags"
:
[
"ENABLE_COMPRESSION=ON"
,
"ENABLE_CXX11=ON"
,
"ENABLE_EXTENSIONS=ON"
,
"ENABLE_BASE_PROBLEMS=ON"
,
"ENABLE_UMFPACK=ON"
],
"os"
:
"linux-64"
,
"boost"
:
"1.55.0"
})
with
open
(
"compiler_compatibility.json"
,
"w"
)
as
out
:
json
.
dump
(
compiler
,
out
,
indent
=
2
)
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