Skip to content

Commit

Permalink
Use CXXFLAGS from compiler activation scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
nehaljwani committed Oct 2, 2018
1 parent 187a299 commit c411a5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ outputs:
- set INCLUDE=%INCLUDE%;%LIBRARY_INC% # [win]
- set LIB=%LIB%;%LIBRARY_LIB% # [win]
- nmake /f Makefile.windows # [win]
- make -C examples/test_all/fibonacci CXXFLAGS="$CPPFLAGS $LDFLAGS" TBBROOT=$PREFIX # [unix]
- make -C examples/test_all/fibonacci CXXFLAGS="$CPPFLAGS $CXXFLAGS $LDFLAGS" TBBROOT=$PREFIX # [unix]

- name: tbb4py
build:
Expand Down

1 comment on commit c411a5a

@anton-malakhov
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why is it different between versions of the compiler packages? Also I had to set these vars manually for [win] on lines 81-82. I've opened PR w.r.t. that: AnacondaRecipes/aggregate#87

Please sign in to comment.