Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sv2v
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
sv2v
Commits
6c88994e
Commit
6c88994e
authored
Feb 11, 2019
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
switch to using stack
parent
9fd79068
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
14 deletions
+12
-14
.gitignore
+1
-0
Language/SystemVerilog/Parser/.gitignore
+0
-2
Makefile
+4
-12
stack.yaml
+4
-0
sv2v.cabal
+3
-0
No files found.
.gitignore
View file @
6c88994e
*.swp
dist/
bin/
.stack-work/
Language/SystemVerilog/Parser/.gitignore
deleted
100644 → 0
View file @
9fd79068
Lex.hs
Parse.hs
Makefile
View file @
6c88994e
...
...
@@ -2,18 +2,10 @@
all
:
sv2v
Language/SystemVerilog/Parser/Lex.hs
:
Language/SystemVerilog/Parser/Lex.x
alex
-g
Language/SystemVerilog/Parser/Lex.x
-o
Language/SystemVerilog/Parser/Lex.hs
Language/SystemVerilog/Parser/Parse.hs
:
Language/SystemVerilog/Parser/Parse.y
happy
-agc
Language/SystemVerilog/Parser/Parse.y
-o
Language/SystemVerilog/Parser/Parse.hs
sv2v
:
Language/SystemVerilog/Parser/Lex.hs Language/SystemVerilog/Parser/Parse.hs
cabal build
sv2v
:
mkdir
-p
bin
cp dist/build/sv2v/sv2v bin/sv2v
stack install
--allow-different-user
--install-ghc
--local-bin-path
bin
clean
:
rm
-rfy
bin/sv2v
rm
-f
Language/SystemVerilog/Parser/Lex.hs
rm
-f
Language/SystemVerilog/Parser/Parse.hs
stack clean
rm
-rf
bin
stack.yaml
0 → 100644
View file @
6c88994e
resolver
:
lts-12.5
packages
:
-
.
sv2v.cabal
View file @
6c88994e
...
...
@@ -45,6 +45,9 @@ library
executable sv2v
default-language: Haskell2010
main-is: sv2v.hs
build-tools:
alex >= 3 && < 4,
happy >= 1 && < 2
build-depends:
array,
base
...
...
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