diff options
author | chriseth <chris@ethereum.org> | 2018-12-07 17:16:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-07 17:16:49 +0800 |
commit | 52ff3c945531f1e6ca490475174688f496e78008 (patch) | |
tree | 25fd3a99ab2c3c0ec6bd21885aec2df3b0493e26 /libyul | |
parent | 6a9e8a6fe3a2e53c47f644748590894979a33744 (diff) | |
parent | c51e2b7f46be6a856d1a0c204ddcc8d4caa62ea2 (diff) | |
download | dexon-solidity-52ff3c945531f1e6ca490475174688f496e78008.tar.gz dexon-solidity-52ff3c945531f1e6ca490475174688f496e78008.tar.zst dexon-solidity-52ff3c945531f1e6ca490475174688f496e78008.zip |
Merge pull request #5607 from enumatech/fix-makefiles
WIP: Fix makefiles to silence linker errors
Diffstat (limited to 'libyul')
-rw-r--r-- | libyul/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libyul/CMakeLists.txt b/libyul/CMakeLists.txt index a75c5908..7d1ec6ba 100644 --- a/libyul/CMakeLists.txt +++ b/libyul/CMakeLists.txt @@ -44,4 +44,4 @@ add_library(yul optimiser/Utilities.cpp optimiser/VarDeclPropagator.cpp ) -target_link_libraries(yul PUBLIC devcore) +target_link_libraries(yul PUBLIC evmasm devcore langutil) |