Use in-tree include directory in manual build
authorXiretza <xiretza@xiretza.xyz>
Sat, 30 May 2020 09:21:40 +0000 (11:21 +0200)
committerXiretza <xiretza@xiretza.xyz>
Sat, 30 May 2020 09:21:40 +0000 (11:21 +0200)
This is basically the same issue as in tests/various/plugin.sh,
which uses yosys-config to compile a plugin. `yosys-config --cxxflags`
points to `$PREFIX/share/` (/usr/local/share by default), which might
not exist yet or might be out of date. Building directly from the
headers in ./share/ avoids this.

manual/PRESENTATION_Prog/Makefile

index 794f5c12c932478bfb295eeb92eb72e6f75176c3..7e3cf814b449621cf0fcdc486f7ceeb91b541d9b 100644 (file)
@@ -1,8 +1,11 @@
 
 all: test0.log test1.log test2.log
 
+CXXFLAGS=$(shell ../../yosys-config --cxxflags)
+DATDIR=$(shell ../../yosys-config --datdir)
+
 my_cmd.so: my_cmd.cc
-       ../../yosys-config --exec --cxx --cxxflags --ldflags -o my_cmd.so -shared my_cmd.cc --ldlibs
+       ../../yosys-config --exec --cxx $(subst $(DATDIR),../../share,$(CXXFLAGS)) --ldflags -o my_cmd.so -shared my_cmd.cc --ldlibs
 
 test0.log: my_cmd.so
        ../../yosys -Ql test0.log_new -m ./my_cmd.so -p 'my_cmd foo bar' absval_ref.v