Skip to content

Fork of #213 with backwards incompatibility #217

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

Draft
wants to merge 8 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*~
*.pyc
flycheck_*
6 changes: 4 additions & 2 deletions MODULEINFO
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ Group: dmlc-lib/6
Require-tokens: public
Make: dmlc
$(HOST)/bin/dml/include/simics/LICENSE
$(HOST)/bin/dml/include/simics/dmllib.h
$(HOST)/bin/dml/include/simics/dml-lib.h
$(HOST)/bin/dml/include/simics/dml-raii-types.h
$(HOST)/bin/dml-old-4.8/1.2/LICENSE
$(HOST)/bin/dml-old-4.8/1.4/LICENSE
$(HOST)/bin/dml/1.2/LICENSE
Expand Down Expand Up @@ -146,7 +147,8 @@ Group: dmlc-lib/7
Require-tokens: public
Make: dmlc
$(HOST)/bin/dml/include/simics/LICENSE
$(HOST)/bin/dml/include/simics/dmllib.h
$(HOST)/bin/dml/include/simics/dml-lib.h
$(HOST)/bin/dml/include/simics/dml-raii-types.h
$(HOST)/bin/dml/1.2/LICENSE
$(HOST)/bin/dml/1.4/LICENSE
# dml files available in all APIs
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ SCRIPTS := $(PYTHONPATH)/port_dml.py
MPL_LICENSE := $(PYTHONPATH)/LICENSE
BSD0_LICENSES := $(addsuffix /LICENSE,$(DMLLIB_DESTDIRS) $(OLD_DMLLIB_DESTDIRS_4_8) $(DMLLIB_DEST)/include/simics)

HFILES := $(DMLLIB_DEST)/include/simics/dmllib.h
HFILES := $(DMLLIB_DEST)/include/simics/dml-lib.h $(DMLLIB_DEST)/include/simics/dml-raii-types.h

DMLC_BIN := $(OUT_PYFILES) $(OUT_GEN_PYFILES) $(HFILES)

Expand Down
6 changes: 6 additions & 0 deletions RELEASENOTES.docu
Original file line number Diff line number Diff line change
Expand Up @@ -1730,4 +1730,10 @@ extern typedef struct { } my_type_t;</pre> </add-note></build-id>
This warning is only enabled by default with Simics API version 7 or
above. With version 6 and below it must be explicitly enabled by passing
<tt>--warn=WLOGMIXUP</tt> to DMLC.</add-note></build-id>
<build-id value="next"><add-note> The file <tt>dmllib.h</tt>, needed
to compile DMLC-generated C files, has been renamed to <tt>dml-lib.h</tt>.
In addition, a new header file called <tt>dml-raii-types.h</tt> has been
introduced which is also needed to compile DMLC-generated C files. Both
of these are located in <tt><em>host</em>/bin/dml/include/simics</tt>.
</add-note></build-id>
</rn>
394 changes: 380 additions & 14 deletions doc/1.4/language.md

Large diffs are not rendered by default.

Loading