diff options
author | Miodrag Milanović <mmicko@gmail.com> | 2020-03-12 12:16:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-12 12:16:28 +0200 |
commit | d38098e5fa4ba6b27a67c0069f9134c6cbdbb68b (patch) | |
tree | 6827be0f104a347e031a38cd0737bfba547e8e3c /frontends/rpc | |
parent | dd8ebf7873eadab9c6d0fba8c4ed25eb88acbb8f (diff) | |
parent | 26137d8bb70cea1f2de16346e883ec5c43754145 (diff) | |
download | yosys-d38098e5fa4ba6b27a67c0069f9134c6cbdbb68b.tar.gz yosys-d38098e5fa4ba6b27a67c0069f9134c6cbdbb68b.tar.bz2 yosys-d38098e5fa4ba6b27a67c0069f9134c6cbdbb68b.zip |
Merge pull request #1757 from jiegec/fix-emcc
Fix compilation for emcc
Diffstat (limited to 'frontends/rpc')
-rw-r--r-- | frontends/rpc/Makefile.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/frontends/rpc/Makefile.inc b/frontends/rpc/Makefile.inc index 9af505098..7b270b6fe 100644 --- a/frontends/rpc/Makefile.inc +++ b/frontends/rpc/Makefile.inc @@ -1,2 +1,3 @@ - +ifneq ($(CONFIG),emcc) OBJS += frontends/rpc/rpc_frontend.o +endif |