-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problems building #3
Comments
Try the cmake build please. |
Okay, so now I've done this:
It fails to build due to what looks like two errors in the file
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I tried compiling this program at first just by running
make
. The Makefile failed to compile it, because GCC said there was a problem in the HOST macro:I changed the flag to
-DHOST="\"$(shell cat .host)\""
instead, and then that error went away. So, I tried again.However, then I ran into a long list of linker errors (which I won't list unless you ask), entirely consisting of multiple definitions of global variables:
hd
,tl
,files
,current_file
,tag
,buf
, andcommandmode
.Am I doing something wrong when compiling, or does this program need to be updated so as not to have multiple definitions?
The text was updated successfully, but these errors were encountered: