Commit ce8080df authored by Greg Williams's avatar Greg Williams
Browse files

Added linkage to SSL lib

parent 6814c60e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ $(KINETIC_LIB): $(LIB_OBJS)
UTIL_OBJS = $(OUT_DIR)/noop.o $(OUT_DIR)/put.o $(OUT_DIR)/get.o
UTIL_INCS = -I$(UTIL_DIR) -I/usr/local/include
# TODO: Delete LIB_DIR dep after kinetic_proto is yanked out of public API
LDFLAGS += -lm -l crypto -l kinetic-c-client
LDFLAGS += -lm -l crypto -l ssl -l kinetic-c-client 

$(OUT_DIR)/noop.o: $(UTIL_EX)/noop.c
	$(CC) -c -o $@ $< $(CFLAGS) $(UTIL_INCS)
+6 −3
Original line number Diff line number Diff line
@@ -128,14 +128,14 @@
    :name: test_linker
    :arguments:
      - "\"${1}\""
      - "-l crypto"
      - -l crypto
      - "-o \"${2}\""
  :gcov_linker:
    :executable: gcc
    :arguments:
      - -fprofile-arcs
      - -ftest-coverage
      - "-l crypto"
      - -l crypto
      - ${1}
      - -o ${2}
  :release_compiler:
@@ -151,6 +151,8 @@
      - -Wextra
      - -pedantic
      - -D_POSIX_C_SOURCE=1
      - -l crypto
      - -l ssl
      - "-c \"${1}\""
      - "-o \"${2}\""
  :release_linker:
@@ -158,7 +160,8 @@
    :name: release_linker
    :arguments:
      - "\"${1}\""
      - "-l crypto"
      - -l crypto
      - -l ssl
      - "-o \"${2}\""

:plugins: