Skip to content

Commit

Permalink
Update compilation-instructions.md (ton-community#828)
Browse files Browse the repository at this point in the history
There are inconsistent file names in the instructions for compiling binaries: fift and func are mentioned without a directory, while other executables include a directory. Sometimes the directory is prefixed with ./, and other times it’s not. I suggest consistently using the ./ notation, as it follows standard Unix conventions. This change would improve the consistency of the information, make it more reproducible, and speed up the process of mass adoption of the technology.
  • Loading branch information
maxistar authored and github-actions[bot] committed Nov 22, 2024
1 parent bcb4ec6 commit fbffbc0
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ cmake --build . --target func
To compile FunC smart contract:

```bash
func -o output.fif -SPA source0.fc source1.fc ...
./crypto/func -o output.fif -SPA source0.fc source1.fc ...
```

## Fift
Expand All @@ -175,7 +175,7 @@ cmake --build . --target fift
To run Fift script:

```bash
fift -s script.fif script_param0 script_param1 ..
./crypto/fift -s script.fif script_param0 script_param1 ..
```

## Tonlib-cli
Expand Down Expand Up @@ -205,7 +205,7 @@ cmake --build . --target rldp-http-proxy
The Proxy binary will be located as:

```bash
rldp-http-proxy/rldp-http-proxy
./rldp-http-proxy/rldp-http-proxy
```

## generate-random-id
Expand All @@ -219,7 +219,7 @@ cmake --build . --target generate-random-id
The binary will be located as:

```bash
utils/generate-random-id
./utils/generate-random-id
```

## storage-daemon
Expand All @@ -233,7 +233,7 @@ cmake --build . --target storage-daemon storage-daemon-cli
The binary will be located at:

```bash
storage/storage-daemon/
./storage/storage-daemon/
```

# Compile old TON versions
Expand Down

0 comments on commit fbffbc0

Please sign in to comment.