# HG changeset patch # User Rik # Date 1282341353 25200 # Node ID 860427ac9b7742ed9edc22b27acae53071bfbcac # Parent b64803a8be4e54f5885ed9843b4aad7b2d28070c Add ability to pass -pthread through to linker in mkoctfile. Bug #30605 diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-08-09 John Swensen + + * mkoctfile.in: Add ability to pass -pthread through to linker. + 2010-08-13 Jaroslav Hajek * NEWS: Update. diff --git a/mkoctfile.in b/mkoctfile.in --- a/mkoctfile.in +++ b/mkoctfile.in @@ -284,6 +284,9 @@ -[lLR]* | -Wl,*) ldflags="$ldflags $1" ;; + -pthread) + ldflags="$ldflags $1" + ;; -M | -depend | --depend) depend=true compile=false