diff options
author | mrchebas@gmail.com <unknown> | 2006-11-08 17:14:52 +0000 |
---|---|---|
committer | mrchebas@gmail.com <unknown> | 2006-11-08 17:14:52 +0000 |
commit | fe07f054d7ae5e10b14d5fed730fe4424dabd587 (patch) | |
tree | 37b9be9c87726d5d910e72c195688b029d31a4c5 /rts/package.conf.in | |
parent | 74a87d705449e2f9ad4021aeebf8149ce35a6a2e (diff) | |
download | haskell-fe07f054d7ae5e10b14d5fed730fe4424dabd587.tar.gz |
Addition of PAPI to RTS
This patch still requires the addition of the USE_PAPI
define to compile with PAPI. Also, programs must be
compiled and linked with the appropriate library flags
for papi.
Diffstat (limited to 'rts/package.conf.in')
-rw-r--r-- | rts/package.conf.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rts/package.conf.in b/rts/package.conf.in index 4cb98430f7..2b2229b5e9 100644 --- a/rts/package.conf.in +++ b/rts/package.conf.in @@ -53,6 +53,9 @@ extra-libraries: "m" /* for ldexp() */ ,"mingwex" # endif #endif +#if USE_PAPI + , "papi" +#endif #ifdef INSTALLING include-dirs: INCLUDE_DIR |