Skip to content

Commit

Permalink
Move CXXFLAGS to the end
Browse files Browse the repository at this point in the history
  • Loading branch information
kpu committed Jul 27, 2013
1 parent 66a7811 commit b10b253
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compile_query_only.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ mkdir -p bin
if [ "$(uname)" != Darwin ]; then
CXXFLAGS="$CXXFLAGS -lrt"
fi
$CXX $CXXFLAGS lm/build_binary_main.cc $objects -o bin/build_binary
$CXX $CXXFLAGS lm/query_main.cc $objects -o bin/query
$CXX lm/build_binary_main.cc $objects -o bin/build_binary $CXXFLAGS
$CXX lm/query_main.cc $objects -o bin/query $CXXFLAGS

0 comments on commit b10b253

Please sign in to comment.