mirror of git://gcc.gnu.org/git/gcc.git
Fix for PR bootstrap/59094 +2014-01-09 Balaji V.
Fix for PR bootstrap/59094 +2014-01-09 Balaji V. Iyer <balaji.v.iyer@intel.com> + + PR bootstrap/59094 + * Makefile.am (cilkincludedir): Fixed a bug to store version-specific + runtime libraries in the correct place. + * Makefile.in: Regenerate. + From-SVN: r206469
This commit is contained in:
parent
bfd3806a65
commit
c7b0a171d0
|
|
@ -1,3 +1,10 @@
|
||||||
|
2014-01-09 Balaji V. Iyer <balaji.v.iyer@intel.com>
|
||||||
|
|
||||||
|
bootstrap/59094
|
||||||
|
* Makefile.am (cilkincludedir): Fixed a bug to store version-specific
|
||||||
|
runtime libraries in the correct place.
|
||||||
|
* Makefile.in: Regenerate.
|
||||||
|
|
||||||
2013-12-13 Balaji V. Iyer <balaji.v.iyer@intel.com>
|
2013-12-13 Balaji V. Iyer <balaji.v.iyer@intel.com>
|
||||||
|
|
||||||
* Makefile.am (GENERAL_FLAGS): Removed undefining of Cilk keywords.
|
* Makefile.am (GENERAL_FLAGS): Removed undefining of Cilk keywords.
|
||||||
|
|
|
||||||
|
|
@ -108,7 +108,8 @@ endif
|
||||||
libcilkrts_la_LDFLAGS += -no-undefined
|
libcilkrts_la_LDFLAGS += -no-undefined
|
||||||
|
|
||||||
# C/C++ header files for Cilk.
|
# C/C++ header files for Cilk.
|
||||||
cilkincludedir = $(includedir)/cilk
|
# cilkincludedir = $(includedir)/cilk
|
||||||
|
cilkincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include/cilk
|
||||||
cilkinclude_HEADERS = \
|
cilkinclude_HEADERS = \
|
||||||
include/cilk/cilk_api.h \
|
include/cilk/cilk_api.h \
|
||||||
include/cilk/cilk_api_linux.h \
|
include/cilk/cilk_api_linux.h \
|
||||||
|
|
|
||||||
|
|
@ -401,7 +401,8 @@ libcilkrts_la_LDFLAGS = -version-info 5:0:0 -lpthread \
|
||||||
-no-undefined
|
-no-undefined
|
||||||
|
|
||||||
# C/C++ header files for Cilk.
|
# C/C++ header files for Cilk.
|
||||||
cilkincludedir = $(includedir)/cilk
|
# cilkincludedir = $(includedir)/cilk
|
||||||
|
cilkincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include/cilk
|
||||||
cilkinclude_HEADERS = \
|
cilkinclude_HEADERS = \
|
||||||
include/cilk/cilk_api.h \
|
include/cilk/cilk_api.h \
|
||||||
include/cilk/cilk_api_linux.h \
|
include/cilk/cilk_api_linux.h \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue