Skip to content
Merged
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
2 changes: 1 addition & 1 deletion share/pulse/examples/dice/cbor/CBOR.Pulse.fst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module CBOR.Pulse
#lang-pulse
include CBOR.Spec.Constants
include CBOR.Spec.Const
include CBOR.Pulse.Extern
open Pulse.Lib.Pervasives
open Pulse.Lib.Trade
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
limitations under the License.
*)

module CBOR.Spec.Constants
module CBOR.Spec.Const

module U8 = FStar.UInt8

Expand Down
2 changes: 1 addition & 1 deletion share/pulse/examples/dice/cbor/CBOR.Spec.Type.fsti
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*)

module CBOR.Spec.Type
include CBOR.Spec.Constants
include CBOR.Spec.Const

module U8 = FStar.UInt8
module U64 = FStar.UInt64
Expand Down
2 changes: 1 addition & 1 deletion share/pulse/examples/dice/cbor/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ extract_all_ml: $(ALL_ML_FILES)
extract_c: $(OUTPUT_DIR)/CBOR.h

$(OUTPUT_DIR)/CBOR.h: $(ALL_KRML_FILES)
$(KRML) -bundle C -bundle CBOR.Spec.Constants+CBOR.Pulse.Type+CBOR.Pulse.Extern=[rename=CBOR] -no-prefix CBOR.Spec.Constants,CBOR.Pulse.Type,CBOR.Pulse.Extern -bundle CBOR.Pulse= -bundle CDDLExtractionTest.Assume+CDDLExtractionTest.Bytes+CDDLExtractionTest.BytesUnwrapped+CDDLExtractionTest.Choice=*[rename=CDDLExtractionTest] -skip-linking $^ -tmpdir $(OUTPUT_DIR)
$(KRML) -bundle C -bundle CBOR.Spec.Const+CBOR.Pulse.Type+CBOR.Pulse.Extern=[rename=CBOR] -no-prefix CBOR.Spec.Const,CBOR.Pulse.Type,CBOR.Pulse.Extern -bundle CBOR.Pulse= -bundle CDDLExtractionTest.Assume+CDDLExtractionTest.Bytes+CDDLExtractionTest.BytesUnwrapped+CDDLExtractionTest.Choice=*[rename=CDDLExtractionTest] -skip-linking $^ -tmpdir $(OUTPUT_DIR)

.PHONY: extern

Expand Down
Loading