Rebuild cpphs with static linking to simplify upgrading of Haskell stack.
Eliminates the last dependency on
- haskell-polyparse
So it can be deprecated now.
Differential D14118
Rebuild cpphs with static linking liontiger23 on Mon, May 8, 4:33 PM. Authored by Tags None Referenced Files
Subscribers None
Details
Rebuild cpphs with static linking to simplify upgrading of Haskell stack. Eliminates the last dependency on
So it can be deprecated now. Check that it behaves similarly to original cpp on a sample C program: $ cat test.c #define NUM 42 int main () { int sum = 0; for (int i = 0; i < NUM; i++) { sum += i; } return sum; } $ cpp test.c | tail -7 int main () { int sum = 0; for (int i = 0; i < 42; i++) { sum += i; } return sum; } $ cpphs --cpp test.c | tail -7 int main () { int sum = 0; for (int i = 0; i < 42; i++) { sum += i; } return sum; }
Diff Detail
Event TimelineComment Actions Simplify options and remove shared library, which produced missing dependency on polyparse. |