]> Nishi Git Mirror - gwion.git/commitdiff
:art: Update
authorfennecdjay <astor.jeremie@wanadoo.fr>
Wed, 20 Nov 2019 16:35:53 +0000 (17:35 +0100)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Wed, 20 Nov 2019 16:35:53 +0000 (17:35 +0100)
Makefile
src/compile.c

index 883f6ae131782de8f1ad96b872e91e64e73b70df..8fc24b79359dfe895e19ca3518d45dd82922571b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -39,9 +39,9 @@ CFLAGS  += -Iinclude
 ifeq (${BUILD_ON_WINDOWS}, 1)
 ifeq (${CC}, gcc)
 LDFLAGS += -lm
-LDFLAGS += -lrt -rdynamic
 endif
 else
+LDFLAGS += -lrt -rdynamic
 LDFLAGS += -lm
 endif
 
index 4f621c9d53aefcc6df19371407fb3d853b9d9d2b..a6fcbec4d88cb2935668b7f03a7e9de838e16714 100644 (file)
@@ -81,7 +81,6 @@ static inline m_bool compiler_open(MemPool p, struct Compiler* c) {
 
 static inline m_bool _check(struct Gwion_* gwion, struct Compiler* c) {
   struct ScannerArg_ arg = { c->name, c->file, gwion->st, .ppa=gwion->ppa };
-//  struct ScannerArg_ arg = { c->name, c->file, gwion->st, .ppa={} };
   CHECK_OB((c->ast = parse(&arg)))
   gwion->env->name = c->name;
   for(m_uint i = 0; i < vector_size(&gwion->data->passes->vec); ++i) {