You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -220,8 +220,8 @@ Note that by default the dev container mounts your local cloned FPC project as a
220
220
This allows you to edit the content of the repository using your favorite editor in your system and the changes inside the docker container. Additionally, you are also not loosing changes inside the container when you reboot or the container gets stopped for other reasons.
221
221
222
222
A few more notes:
223
-
* We use Ubuntu 20.04 by default.
224
-
To build also docker images based on Ubuntu 18.04, add the following to `$FPC_PATH/config.override.mk`.
223
+
* We use Ubuntu 22.04 by default.
224
+
To build also docker images with a different version of Ubuntu, add the following to `$FPC_PATH/config.override.mk`.
@@ -326,7 +326,7 @@ are set correctly in your environment.
326
326
327
327
We use *nanopb*, a lightweight implementation of Protocol Buffers, inside the enclaves to parse blocks of
328
328
transactions. Install nanopb by following the instruction below. For this you need a working Google Protocol Buffers
329
-
compiler with python bindings (e.g. via `apt-get install protobuf-compiler python-protobuf libprotobuf-dev`).
329
+
compiler with python bindings (e.g. via `apt-get install protobuf-compiler python3-protobuf libprotobuf-dev`).
330
330
For more detailed information consult the official nanopb documentation http://github.com/nanopb/nanopb.
331
331
```bash
332
332
export NANOPB_PATH=/path-to/install/nanopb/
@@ -341,8 +341,8 @@ Make sure that you set `$NANOPB_PATH` as it is needed to build Fabric Private Ch
341
341
Moreover, in order to build Fabric protobufs we also require a newer Protobuf compiler than what is provided as standard Ubuntu package and is used to build the
342
342
Intel SGX SDK. For this reason you will have to download and install another version and use it together with Nanopb. Do not install the new protobuf, though, such that it is not found in your standard PATH but instead define the `PROTOC_CMD`, either as environment variable or via `config.override.mk` to point to the new `protoc` binary
@@ -444,7 +444,7 @@ Note that this is indented for developing purpose only and does not provide any
444
444
445
445
In your `config.override.mk` set the following to variables:
446
446
```Makefile
447
-
FPC_CCENV_IMAGE=ubuntu:20.04
447
+
FPC_CCENV_IMAGE=ubuntu:22.04
448
448
ERCC_GOTAGS=
449
449
```
450
450
This configuration sets a standard Ubuntu image as alternative to our `fabric-private-chaincode-ccenv` image and overrides the default build tags we use to build `ercc`.
0 commit comments