diff options
author | Mans Rullgard <mans@mansr.com> | 2012-08-28 13:02:35 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-08-28 23:40:30 +0100 |
commit | 095792f25351fbbaeb29504ae0a5d15c3f4b41d7 (patch) | |
tree | c7ee4f7e93ee4f12b382751d383872639cb86131 /common.mak | |
parent | 2763587c8323983b2c3d2691ed05072e19394f3f (diff) | |
download | ffmpeg-095792f25351fbbaeb29504ae0a5d15c3f4b41d7.tar.gz |
build: add separate setting for host linker
This adds new HOSTLD and related settings for host linker allowing
it to be different from HOSTCC.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'common.mak')
-rw-r--r-- | common.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mak b/common.mak index ae87e76bbd..01adfeca41 100644 --- a/common.mak +++ b/common.mak @@ -38,7 +38,7 @@ $(HOSTOBJS): %.o: %.c $(call COMPILE,HOSTCC) $(HOSTPROGS): %$(HOSTEXESUF): %.o - $(HOSTCC) $(HOSTLDFLAGS) $(HOSTCC_O) $< $(HOSTLIBS) + $(HOSTLD) $(HOSTLDFLAGS) $(HOSTLD_O) $< $(HOSTLIBS) $(OBJS): | $(sort $(dir $(OBJS))) $(HOSTOBJS): | $(sort $(dir $(HOSTOBJS))) |