-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(ffi): consolidate bls and proofs FFI + CGO
Merge go-sectorbuilder, go-bls-sigs, rust-fil-proofs-ffi, and the FFI portion of bls-signatures into a single project which produces a single header file and static lib.
- Loading branch information
Showing
33 changed files
with
2,157 additions
and
240 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -1,4 +1,8 @@ | ||
/target | ||
**/target | ||
**/*.rs.bk | ||
*.pc | ||
/include | ||
**/include | ||
*.h | ||
*.a | ||
.install-filecoin | ||
**/paramcache |
This file contains 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,16 @@ | ||
DEPS:=filecoin.h filecoin.pc libfilecoin.a | ||
|
||
all: $(DEPS) | ||
.PHONY: all | ||
|
||
|
||
$(DEPS): .install-filecoin ; | ||
|
||
.install-filecoin: rust | ||
./install-filecoin | ||
@touch $@ | ||
|
||
|
||
clean: | ||
rm -rf $(DEPS) .install-filecoin | ||
.PHONY: clean |
This file contains 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.