Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
Iris
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
116
Issues
116
List
Boards
Labels
Service Desk
Milestones
Merge Requests
19
Merge Requests
19
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Iris
Iris
Commits
13fdd51e
Commit
13fdd51e
authored
Jan 21, 2016
by
Ralf Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
delete scons
parent
1e241e13
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
63 deletions
+3
-63
.gitignore
.gitignore
+3
-27
SConstruct
SConstruct
+0
-15
site_scons/site_tools/Coq.py
site_scons/site_tools/Coq.py
+0
-21
No files found.
.gitignore
View file @
13fdd51e
*.vo
*.v.d
*.glob
.sconsign.dblite
deps
old/*
coqidescript
\#*\#
*.pyc
*~
*.cmi
*.cmx
*.cmo
*.o
utils/coq2html
utils/coq2html.ml
doc/ch2o.*.html
*.cache
*.broken
broken/*
*.patch
parser/Extracted.*
parser/Lexer.ml
parser/Parser.ml
parser/Parser.mli
parser/Include.*
_build/
ch2o
*.native
*.byte
a.out
*.aux
\#*\#
*~
.coq-native/
SConstruct
deleted
100644 → 0
View file @
1e241e13
# Copyright (c) 2012-2015, Robbert Krebbers.
# This file is distributed under the terms of the BSD license.
import
os
,
glob
,
string
modules
=
[
"prelude"
,
"modures"
,
"iris"
,
"barrier"
]
Rs
=
'-Q . ""'
env
=
DefaultEnvironment
(
ENV
=
os
.
environ
,
tools
=
[
'default'
,
'Coq'
],
COQFLAGS
=
Rs
)
# Coq dependencies
vs
=
[
x
for
m
in
modules
for
x
in
glob
.
glob
(
m
+
'/*.v'
)]
if
os
.
system
(
'coqdep '
+
Rs
+
' '
+
' '
.
join
(
map
(
str
,
vs
))
+
' > deps'
):
Exit
(
2
)
ParseDepends
(
'deps'
)
# Coq files
for
v
in
vs
:
env
.
Coq
(
v
)
site_scons/site_tools/Coq.py
deleted
100644 → 0
View file @
1e241e13
# Copyright (c) 2012-2015, Robbert Krebbers.
# This file is distributed under the terms of the BSD license.
import
SCons.Defaults
,
SCons
.
Tool
,
SCons
.
Util
,
os
def
coq_emitter
(
target
,
source
,
env
):
base
,
_
=
os
.
path
.
splitext
(
str
(
target
[
0
]))
target
.
append
(
base
+
".glob"
)
return
target
,
source
Coq
=
SCons
.
Builder
.
Builder
(
action
=
'$COQC $COQFLAGS -q $SOURCE'
,
suffix
=
'.vo'
,
src_suffix
=
'.v'
,
emitter
=
coq_emitter
)
def
generate
(
env
):
env
[
'COQC'
]
=
'coqc'
env
.
Append
(
BUILDERS
=
{
'Coq'
:
Coq
})
def
exists
(
env
):
return
env
.
Detect
(
'coqc'
)
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