Skip to content

Commit

Permalink
All major Solidity language features implemented
Browse files Browse the repository at this point in the history
Added
- `event` can be declared and emitted with `emit`
- Function modifiers have been implemented
- Tags in doc comments are parsed and resolved
- All major Solidity language features implemented, see our language status page:
  https://solang.readthedocs.io/en/latest/status.html

Signed-off-by: Sean Young <[email protected]>
  • Loading branch information
seanyoung committed Sep 15, 2020
1 parent e411916 commit 4b0c3e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Rust stable
run: rustup default stable
- name: Compile stdlib
run: clang --target=wasm32 -c -emit-llvm -O3 -ffreestanding -fno-builtin -Wall stdlib.c sha3.c substrate.c ripemd160.c
run: clang-10 --target=wasm32 -c -emit-llvm -O3 -ffreestanding -fno-builtin -Wall stdlib.c sha3.c substrate.c ripemd160.c
working-directory: ./stdlib
- name: Build
run: cargo build --verbose --release
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Add LLVM to Path
run: echo "::add-path::c:\llvm10.0\bin"
- name: Compile stdlib
run: clang-10 --target=wasm32 -c -emit-llvm -O3 -ffreestanding -fno-builtin -Wall stdlib.c sha3.c substrate.c ripemd160.c
run: clang --target=wasm32 -c -emit-llvm -O3 -ffreestanding -fno-builtin -Wall stdlib.c sha3.c substrate.c ripemd160.c
working-directory: ./stdlib
- name: Build
run: cargo build --release --verbose
Expand Down

0 comments on commit 4b0c3e0

Please sign in to comment.