-
Notifications
You must be signed in to change notification settings - Fork 252
Sta latest 0609 #370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
dsengupta0628
wants to merge
17
commits into
The-OpenROAD-Project:master
Choose a base branch
from
The-OpenROAD-Project-staging:sta_latest_0609
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Sta latest 0609 #370
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
0c243b5
Dockerfile.ubuntu24.04
8f84d72
report_tag_arrivals
4239842
FindTCL.cmake
13cd475
make_net/make_port bus bit without bus dcl pr441
452f0bf
enforce sta assump by error instead of seg fault
dsengupta0628 b0869d5
comment
ffe126a
PathGroups::inPathGroupNamed
b345848
Dont spin main for queue (#443)
calewis 014678a
cursor
7aeca8c
Merge remote-tracking branch 'upstream/master' into sta_latest_0609
dsengupta0628 7c2f746
latest from 06/09 codes parallaxsw/OpensSTA
dsengupta0628 7e8f016
Revert "enforce sta assump by error instead of seg fault"
dsengupta0628 65deb11
Address a few typos in docs related to SSTA (#447)
dsengupta0628 772615e
Merge remote-tracking branch 'upstream/master' into sta_latest_0609
dsengupta0628 424cb1d
Add native gzip compression support to write_verilog (#448)
calewis 4249ab7
set sta_pocv_mode update delays/slews
1c7c168
Merge remote-tracking branch 'upstream/master' into sta_latest_0609
dsengupta0628 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| FROM ubuntu:24.04 | ||
| LABEL author="James Cherry" | ||
| LABEL maintainer="James Cherry <cherry@parallaxsw.com>" | ||
|
|
||
| # Install basics | ||
| ARG DEBIAN_FRONTEND=noninteractive | ||
| RUN apt-get update && \ | ||
| apt-get install -y \ | ||
| git \ | ||
| wget \ | ||
| cmake \ | ||
| gcc \ | ||
| gdb \ | ||
| tcl-dev \ | ||
| tcl-tclreadline \ | ||
| swig \ | ||
| bison \ | ||
| flex \ | ||
| automake \ | ||
| autotools-dev \ | ||
| libeigen3-dev \ | ||
| libfmt-dev | ||
|
|
||
| # Download CUDD | ||
| RUN wget https://raw.githubusercontent.com/davidkebo/cudd/main/cudd_versions/cudd-3.0.0.tar.gz && \ | ||
| tar -xvf cudd-3.0.0.tar.gz && \ | ||
| rm cudd-3.0.0.tar.gz | ||
|
|
||
| # Build CUDD | ||
| RUN cd cudd-3.0.0 && \ | ||
| mkdir ../cudd && \ | ||
| ./configure && \ | ||
| make -j`nproc` | ||
|
|
||
| # Copy files and install OpenSTA | ||
| RUN mkdir OpenSTA | ||
| COPY . OpenSTA | ||
| RUN cd OpenSTA && \ | ||
| rm -rf build && \ | ||
| mkdir build && \ | ||
| cd build && \ | ||
| cmake -DCUDD_DIR=../cudd-3.0.0 .. && \ | ||
| make -j`nproc` | ||
|
|
||
| # Run sta on entry | ||
| ENTRYPOINT ["OpenSTA/build/sta"] | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The package list includes
gccbut is missingg++(orbuild-essential). Since OpenSTA is a C++ project, the build will fail during the CMake compilation phase if a C++ compiler is not installed. Please addg++to the package list.