Skip to content

Commit

Permalink
Merge pull request #27 from wolkykim/compat
Browse files Browse the repository at this point in the history
Update linker flags
  • Loading branch information
wolkykim authored May 25, 2022
2 parents 50a674d + 8cef3e8 commit e43f6cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ config.status
qdecoder.pc
*.o
*.a
*.so*
*.so
*.so.*
*.cgi
2 changes: 1 addition & 1 deletion src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ all: qdecoder
qdecoder: ${OBJ}
${AR} ${ARFLAGS} ${LIBNAME} ${OBJ}
${RANLIB} ${LIBNAME}
${CC} -shared -Wl,-soname,${SLIBREALNAME} -o ${SLIBREALNAME} ${OBJ}
${CC} -shared -o ${SLIBREALNAME} ${OBJ}
${LN_S} -f ${SLIBREALNAME} ${SLIBNAME}

install: all
Expand Down

0 comments on commit e43f6cc

Please sign in to comment.