Fix FIELD_ELEMENTS_PER_BLOB pragma (#294)
This commit is contained in:
parent
5b727e5c3e
commit
f014ea44a5
|
@ -10,7 +10,7 @@ from os import DirSep
|
||||||
const
|
const
|
||||||
# FIELD_ELEMENTS_PER_BLOB is overrideable from
|
# FIELD_ELEMENTS_PER_BLOB is overrideable from
|
||||||
# compiler switch -d: or --define:
|
# compiler switch -d: or --define:
|
||||||
FIELD_ELEMENTS_PER_BLOB* {.strdefine.} = 4096
|
FIELD_ELEMENTS_PER_BLOB* {.intdefine.} = 4096
|
||||||
# kzgPath: c-kzg-4844 project path, removing 3 last elem
|
# kzgPath: c-kzg-4844 project path, removing 3 last elem
|
||||||
kzgPath = currentSourcePath.rsplit(DirSep, 3)[0] & "/"
|
kzgPath = currentSourcePath.rsplit(DirSep, 3)[0] & "/"
|
||||||
blstPath = kzgPath & "blst/"
|
blstPath = kzgPath & "blst/"
|
||||||
|
|
Loading…
Reference in New Issue