Replies: 1 comment 4 replies
-
I tried the same thing on my machine and I did not encounter this issue. Could you share about the setup of your compiler, the filament release version, or even the |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I use the provided Makefile to link against the static filament libraries:
This works fine unless I call
Material* material = Material::Builder().build(*engine);
While this does compile fine, the linker complains:
I have included the
filament/Material.h
andfilament/Engine.h
files. What could be the issue here?When analyzing the binary with
` nm -C libfilament.a | grep 'filament::Material::Builder::build'``` the symbol is found:
Beta Was this translation helpful? Give feedback.
All reactions