diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2015-11-18 12:22:02 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2015-11-18 12:53:50 +0100 |
commit | 6b3d5b5990b9b306e13575e60d7e1c8ce264b0ef (patch) | |
tree | 3d7ac58f233767e78de8eec6bde7f81ec46f6485 /rts/package.conf.in | |
parent | f9e17fd70d466fc00825f7324c944609f5c09251 (diff) | |
download | haskell-6b3d5b5990b9b306e13575e60d7e1c8ce264b0ef.tar.gz |
rts: Kill PAPI support
This hasn't been used for a very long time and will soon be superceded
by perf_events support.
Test Plan: validate
Reviewers: austin, simonmar
Reviewed By: austin, simonmar
Subscribers: thomie, erikd
Differential Revision: https://phabricator.haskell.org/D1493
Diffstat (limited to 'rts/package.conf.in')
-rw-r--r-- | rts/package.conf.in | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/rts/package.conf.in b/rts/package.conf.in index fff645d2a3..5c6d240fc2 100644 --- a/rts/package.conf.in +++ b/rts/package.conf.in @@ -17,9 +17,9 @@ hidden-modules: import-dirs: #ifdef INSTALLING -library-dirs: LIB_DIR"/rts" PAPI_LIB_DIR FFI_LIB_DIR +library-dirs: LIB_DIR"/rts" FFI_LIB_DIR #else /* !INSTALLING */ -library-dirs: TOP"/rts/dist/build" PAPI_LIB_DIR FFI_LIB_DIR +library-dirs: TOP"/rts/dist/build" FFI_LIB_DIR #endif hs-libraries: "HSrts" FFI_LIB @@ -61,16 +61,13 @@ unresolved symbols. */ ,"mingwex" # endif #endif -#if USE_PAPI - , "papi" -#endif #ifdef USE_LIBDW , "elf" , "dw" /* for backtraces */ #endif #ifdef INSTALLING -include-dirs: INCLUDE_DIR PAPI_INCLUDE_DIR FFI_INCLUDE_DIR +include-dirs: INCLUDE_DIR FFI_INCLUDE_DIR #else /* !INSTALLING */ include-dirs: TOP"/rts/dist/build" TOP"/includes" TOP"/includes/dist-derivedconstants/header" FFI_INCLUDE_DIR #endif |