bvkrauth / rcr

RCR package for Stata, R, and Python
MIT License
0 stars 2 forks source link

Revert module references in rcr.f90 #2

Closed bvkrauth closed 4 years ago

bvkrauth commented 4 years ago

Tyler's port involved creating new gnu-versions of rcrutil.f90 (rcrutil_gnu.f90) and rcrlib.f90 (rcrlib_gnu.f90), and then changing the module names in rcr.f90. Unfortunately, that means that rcr.f90 no longer compiles correctly in Windows.. To avoid breaking Tyler's code:

I believe there is another solution: there is no requirement that modules have the same name as the corresponding source file, so rcrlib_gnu.f90 can simply name its module rcrlib rather than rcrlib_gnu. But that would involve messing directly with Tyler's code which I do not want to do.