我试图让libtool
和yasm
一起工作。
yasm
从我的.o files
来源创建了正确的.asm
,但我无法弄清楚如何让libtool
构建相关的.lo
}和.dep
个文件。
它希望构建共享库,并包含.o
个文件。
答案 0 :(得分:0)
libtool
生成的文件通常使用以下布局:.lo
目录中的build
文件,包含位置元数据; .o
目录中的静态对象build
文件;以及.o
目录中的PIC /共享build/.libs
对象。
您可以使用libtool编译模式。我不熟悉yasm,所以你必须填写开关。它将运行yasm
构建两次,一次使用-DPIC
(可能还有其他共享对象选项)。
libtool --tag=CC --mode=compile yasm <options> src.asm
如果使用automake,可能需要.asm
文件的明确规则:
.asm.lo:
$(LIBTOOL) --tag=CC --mode=compile \
yasm <options> $<
请记住,那些是Makefile中的TAB,而不是(8)空格字符!
您可能还需要在此之前添加:.SUFFIXES: .asm .lo
。我使用变量$(LIBTOOL)
,因为某些平台(例如OSX)需要将其安装为glibtool
,这是Makefile.in
所做的。
例如src.lo
应尊重生成的src.o
,.libs/src.o
,make clean
。
对于您的图书馆libfoo
,您需要通过以下方式让automake了解这些来源:EXTRA_libfoo_la_SOURCES = src.asm
和obj deps with libfoo_la_LIBADD = src.lo
。甚至可能值得添加依赖项:libfoo_la_DEPENDENCIES = src.lo
。
虽然我不明白为什么仅将src.asm
放入libfoo_la_SOURCES
是不够的。
答案 1 :(得分:0)
这是有效的(尽管我从未弄清楚如何让libtool在目标目录中创建.lo
文件,或者创建目标目录的.libs
目录。
Makefile规则:
# Rule to build object files from asm files.
#
# XXX
# Libtool creates the .lo file in the directory where make is run. Move the file
# into place explicitly; I'm sure this is wrong, but have no idea how to fix it.
# Additionally, in a parallel make, the .libs file may not yet be created, check
# as necessary, but ignore errors.
.asm.lo:
-d=`dirname $@`; test $d/.libs || mkdir $d/.libs
$(LIBTOOL) --tag=CC --mode=compile sh $(srcdir)/dist/yasm.sh $< $@
rm -f $@
mv `basename $@` $@
执行yasm调用的支持shell脚本:
#! /bin/sh
# Libtool support for yasm files, expect the first argument to be a path to
# the source file and the second argument to be a path to libtool's .lo file.
# Use the second argument plus libtool's -o argument to set the real target
# file name.
source=$1
target=`dirname $2`
while test $# -gt 0
do
case $1 in
-o)
target="$target/$2"
shift; shift;;
*)
shift;;
esac
done
yasm -f x64 -f elf64 -X gnu -g dwarf2 -D LINUX -o $target $source