You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, this is first most importat bug about building.
In file src/Makefile, linking command:
${CPPOBJS} must be placed before libraries list, actually supplied by ${LDFLAGS}.
GCC docs say, that this order makes sence - each object is visible only for those, placed before it. in command. For now it is placed after all, before -o option.
This: ${CXX} ${CXXFLAGS} ${CPPOBJS} ${LDFLAGS} -o ${EXE}
works for me.
p.s. Just since it is related, i have improvement for readme.md:
There is package xcb-util, which is described as:
utility libraries for X C Binding -- atom, aux and event
When i failed to find xcb-atom in repo, i guessed, it is already provided by more basic libs, but was wrong. Thanks for google).
The text was updated successfully, but these errors were encountered:
Hello, this is first most importat bug about building.
In file src/Makefile, linking command:
${CPPOBJS} must be placed before libraries list, actually supplied by ${LDFLAGS}.
GCC docs say, that this order makes sence - each object is visible only for those, placed before it. in command. For now it is placed after all, before -o option.
This: ${CXX} ${CXXFLAGS} ${CPPOBJS} ${LDFLAGS} -o ${EXE}
works for me.
p.s. Just since it is related, i have improvement for readme.md:
There is package xcb-util, which is described as:
utility libraries for X C Binding -- atom, aux and event
When i failed to find xcb-atom in repo, i guessed, it is already provided by more basic libs, but was wrong. Thanks for google).
The text was updated successfully, but these errors were encountered: