zlib dependency missing on ubuntu masterbranch build
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Mixxx |
Fix Released
|
Low
|
RJ Skerry-Ryan |
Bug Description
I tried to compile mixxx on ubuntu 16.04 but it fails due to a missing dependency on zlib in depends.py:
scons: Building targets ...
[LD] lin64_build/mixxx
/usr/bin/ld: /usr/lib/
scons: building terminated because of errors.
//lib/x86_
collect2: error: ld returned 1 exit status
scons: *** [lin64_build/mixxx] Error 1
My build command is: scons stdlib=libc++ hss1394=0 mad=0 faad=0 ffmpeg=1 shoutcast=0 opus=0 vamp=0 coreaudio=0 hid=0 verbose=0 qt5=1 -j4
After adding a zlib dependendy via
class zLib(Dependence):
def configure(self, build, conf):
libs = ['z']
if not conf.CheckLib(
raise Exception(
and adding it to the "depends" of MixxxCore, its compiling.
Anyone else got that issue?
Changed in mixxx: | |
status: | Confirmed → Fix Committed |
milestone: | none → 2.3.0 |
Changed in mixxx: | |
status: | Fix Committed → Fix Released |
Hm, interesting. Ubuntu 16.04 uses libstdc++ by default with gcc -- are you using clang? If so, what version?