Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris-coq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Janno
iris-coq
Commits
13fdd51e
Commit
13fdd51e
authored
9 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
delete scons
parent
1e241e13
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+3
-27
3 additions, 27 deletions
.gitignore
SConstruct
+0
-15
0 additions, 15 deletions
SConstruct
site_scons/site_tools/Coq.py
+0
-21
0 additions, 21 deletions
site_scons/site_tools/Coq.py
with
3 additions
and
63 deletions
.gitignore
+
3
−
27
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/
This diff is collapsed.
Click to expand it.
SConstruct
deleted
100644 → 0
+
0
−
15
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
)
This diff is collapsed.
Click to expand it.
site_scons/site_tools/Coq.py
deleted
100644 → 0
+
0
−
21
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
'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment