summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-09-17 19:49:27 +0000
committerNicholas Clark <nick@ccl4.org>2005-09-17 19:49:27 +0000
commit8523e16436db8e26c8ddb2231ea32d0763c07741 (patch)
tree0718f31865448344ab3b6819c964e1d11bb1ce07 /pod
parent4a750395e83f28d0ee1bd91e6283fc90ec2372e7 (diff)
downloadperl-8523e16436db8e26c8ddb2231ea32d0763c07741.tar.gz
Add "refactor xsubpp to be a thin wrapper around ExtUtils::ParseXS"
to the TODO p4raw-id: //depot/perl@25451
Diffstat (limited to 'pod')
-rw-r--r--pod/perltodo.pod17
1 files changed, 17 insertions, 0 deletions
diff --git a/pod/perltodo.pod b/pod/perltodo.pod
index 6fe7a67420..6fe1fd66ec 100644
--- a/pod/perltodo.pod
+++ b/pod/perltodo.pod
@@ -227,6 +227,23 @@ that this is due to incomplete dependency specification in the F<Makefile>.
It would be good if someone were able to track down the causes of these
problems, so that parallel builds worked properly.
+=head2 Refactor C<xsubpp> to be a thin wrapper around C<ExtUtils::ParseXS>
+
+C<ExtUtils::ParseXS> encapsulates a version of the C<xsubpp> into a module.
+In effect this is a code fork, and it's likely that C<xsubpp> has had some
+bug fixes since the code from C<ExtUtils::ParseXS> was derived. It would be
+good to merge the differences in, reduce down to 1 canonical implementation,
+and convert C<xsubpp> to a very thin command line wrapper to
+C<ExtUtils::ParseXS>.
+
+In theory this needs no real C knowledge, as one way of approaching this task
+is to ensure that C<ExtUtils::ParseXS> generates identical output to C<xsubpp>
+for input XS files, which does not require understanding the contents of the
+output C file. However, some C knowledge is likely to help with testing, and
+locating/producing comprehensive test cases.
+
+
+
=head1 Tasks that need a little C knowledge