mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-11-25 18:55:24 +00:00
bmplk_utility: Libraries should be in end of build command.
Libraries (-llzma, -lyaml) should be in end of dependency list, otherwise linking in static mode (-static) would fail. BUG=none TEST=emerge vboot_reference Change-Id: Idd072443d042edfb214f5a958abd064bc18573ed Reviewed-on: https://gerrit.chromium.org/gerrit/29738 Tested-by: Hung-Te Lin <hungte@chromium.org> Reviewed-by: Tom Wai-Hong Tam <waihong@chromium.org> Commit-Ready: Hung-Te Lin <hungte@chromium.org>
This commit is contained in:
@@ -108,7 +108,7 @@ ${BUILD_ROOT}/bmpblk_utility: ${BUILD_ROOT}/bmpblk_utility.o \
|
||||
${BUILD_ROOT}/image_types.o \
|
||||
${BUILD_ROOT}/eficompress.o \
|
||||
${BUILD_ROOT}/efidecompress.o
|
||||
$(CXX) -llzma -lyaml $(CFLAGS) $^ -o $@
|
||||
$(CXX) $(CFLAGS) $^ -o $@ -llzma -lyaml
|
||||
|
||||
${BUILD_ROOT}/bmpblk_font: ${BUILD_ROOT}/bmpblk_font.o \
|
||||
${BUILD_ROOT}/image_types.o
|
||||
|
||||
Reference in New Issue
Block a user