Generated schema source code is not compiled in #40
Labels
No labels
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
2 participants
Notifications
Total time spent: 42 minutes 53 seconds
Due date
jordan
42 minutes 53 seconds
No due date set.
Dependencies
No dependencies set.
Reference: Telodendria/Telodendria#40
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Type
Other
Description
Right now, if you try building Telodendria simply, you will get an error saying that
make
doesn't have a rule for a generated piece of source code.After some looking around, it seems like the
./configure
script doesn't add those generated schemas onto the Makefile.Log Output
I'm going to try to re-work the way the schema sources are generated. They should not be in the source tree, they should be put in
build/
since they are generated, even though they are C source files. With the custom build script, the source tree was scanned on every invocation, so it wasn't a big deal, and I put them insrc/
as a shortcut. However, the source tree is only scanned whenconfigure
is run, not on every build, which is what's causing this.