$(LIBS) got included twice into the linker command line from $^ and
$(LIBS). The former ended up getting converted based on host CPU rather
than target. Fix that by removing duplication and -lcrypto from $(LIBS).
Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
LIBS += $(SRC)/utils/libutils.a
OBJS += $(SRC)/crypto/crypto_openssl.o
-LIBS += -lcrypto
OBJS += $(SRC)/crypto/aes-ctr.o
OBJS += $(SRC)/crypto/aes-siv.o
OBJS += $(SRC)/common/dpp.o
dpp-uri: dpp-uri.o $(OBJS) $(LIBS)
- $(LDO) $(LDFLAGS) -o $@ $^ $(LIBS)
+ $(LDO) $(LDFLAGS) -o $@ $^ -lcrypto
clean:
$(MAKE) -C $(SRC) clean
LIBS += $(SRC)/utils/libutils.a
OBJS += $(SRC)/crypto/crypto_openssl.o
-LIBS += -lcrypto
OBJS += $(SRC)/crypto/dh_groups.o
OBJS += $(SRC)/crypto/sha256-prf.o
OBJS += $(SRC)/crypto/sha256-kdf.o
OBJS += $(SRC)/common/dragonfly.o
sae: sae.o $(OBJS) $(LIBS)
- $(LDO) $(LDFLAGS) -o $@ $^ $(LIBS)
+ $(LDO) $(LDFLAGS) -o $@ $^ -lcrypto
clean:
$(MAKE) -C $(SRC) clean