File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -37,9 +37,13 @@ def check_env_flag(name, default=''):
37
37
include_dirs += [os .path .join (audio_path , 'third_party/flac/include' )]
38
38
include_dirs += [os .path .join (audio_path , 'third_party/lame/include' )]
39
39
include_dirs += [os .path .join (audio_path , 'third_party/sox/include' )]
40
+ include_dirs += [os .path .join (audio_path , 'third_party/mad/include' )]
40
41
41
- # proper link order (sox, flac, lame)
42
+ # proper link order (sox, mad, flac, lame)
43
+ # (the most important thing is that dependencies come after a libraryl
44
+ # e.g., sox comes first)
42
45
extra_objects += [os .path .join (audio_path , 'third_party/sox/lib/libsox.a' )]
46
+ extra_objects += [os .path .join (audio_path , 'third_party/mad/lib/libmad.a' )]
43
47
extra_objects += [os .path .join (audio_path , 'third_party/flac/lib/libFLAC.a' )]
44
48
extra_objects += [os .path .join (audio_path , 'third_party/lame/lib/libmp3lame.a' )]
45
49
else :
You can’t perform that action at this time.
0 commit comments