-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
C++ build errors #31
Comments
Now when it comes to using the library in code, it seems I run into a problem with RNifti::RNiftiImageData::Iterator. short version of code: #include "RNifti.h"
void main()
{
RNifti::NiftiImage image("~/test_nifti.nii", false);
} Error:
|
Hi. It shouldn't be necessary to mess with include paths or preprocessor directives if you build from the repo's standalone directory. From what you say it sounds like the symlinks are broken – did you perhaps create a copy of the standalone directory without following the symlinks? |
Thanks for the quick reply! I don't know what caused this but I tried both with master and with the latest release without copying the standalone directory. Just placing myself in the directory then using make. Fixing the include paths to add the #include directive was enough to make it work though so I haven't looked into why it does not work with just Right now I'm trying to see why the Re-reading your comment, I'm wondering if you mean that the files in the standalone directory are meant to be symbolic links of the files in inst/include and src/? Because if so, I am sure that when I git clone master / when I download the .zip of the release, I get hard files instead of symbolic links (though the only line of content is a EDIT: |
OK, I doubt I can replicate your build environment, but from the error you quote above, and Microsoft's compiler documentation, I can understand what it's driving at, but the details depend a bit on their implementation of |
As for the symlinks issue, I must admit that this is mainly my oversight. My understanding was that NTFS supported them, so I assumed they would be used by Git as needed, but it seems that's not the case unless you go out of your way. Specifically, you need to enable Developer Mode in Windows settings and ensure you have support for them on the Git side via
I could add a note about this to the README in the standalone directory (simple enough, but maybe clunky for Windows devs) or copy the files rather than linking them (which will work everywhere but is repetitive and means I'll need a mechanic to keep the copies up to date with the canonical versions). Any thoughts? Is there a better third option? |
Thanks a lot for looking into it :) this is truly appreciated and for the For the symlinks, my solution was to change the path inside from a I can prepare a PR with all the link files changed appropriately while making sure it compiles on Linux and Windows on my side if you'd like. |
There is a requirement that iterators be copy-assignable, and the reference member violates that requirement. I was previously unaware of this combination of factors, but it is on me, and I can replicate the compiler error if I put an explicit copy assignment somewhere in the code. I'll commit a short-term fix, probably switching to a pointer internally, and think about whether there's a better approach long-term. |
On the symlinks, using include statements is a neat workaround, but it won't work if the files are copied out of tree, and that is one aim of the standalone directory. |
I'm not sure which files you mean when you're talking about copying out of tree (because of my ignoring in software deployment and such). I'll assume you mean copying the header files from the standalone directory after building. The makefile I've been using so far has been the following: In it, the line FIND_INC = find . -maxdepth 1 -type f -name \*.h -exec cp {} build/include/{} \; serves the purpose of copying the header files found within the So, here is my take on the issue of copying the files out of tree. MKDIR_P = mkdir -p
AR = ar -rcs
FIND_INC = find ../inst/include -maxdepth 1 -type f -name \*.h -exec cp {} build/include/{} \;
[...]
libRNifti:
${MKDIR_P} build/lib
${AR} build/lib/libRNifti.a $(NIFTILIB1_OBJECTS) $(NIFTILIB2_OBJECTS) $(ZLIB_OBJECTS)
.PHONY: INCLUDES
INCLUDES: $(./include)
${MKDIR_P} build/include/niftilib build/include/zlib build/include/znzlib build/include/RNifti
${FIND_INC} (I've also added the making of the library file |
…to satisfy mutability requirement (cf. issue #31)
I've committed a fix for the code issue. If you're able to check whether the latest commit resolves the C2280 compiler error, that would be much appreciated. |
The C2280 compiler error is resolved indeed 🥳, now I'm running into issues from using the MSVC compiler after having compiled your library using MinGW's cross compiler from my WSL distribution haha. I remembered that to make it work with the windows compiler I had to add include lines in various files and somehow also add namespaces in front of many of the Thanks for your help and finding where the problem with the Iterator was and fixing it so quickly :) |
For people who may come across this issue: I ended up using Visual Studio's At first, I wasn't able to compile my project using the library ( Ultimately, I don't recommend compiling using MSVC lol I achieved the same results with much fewer struggles using WSL's MinGW cross compiler... |
Standalone building on Windows is now properly supported, and included in the package's CI, through an This was a learning experience! Thanks for the prompt. |
Upon trying to build the c++ standalone on linux, I came across the following error:
if I change the file
niftilib/nifti1_io.c
's faulty line (also, its only line) into#include "../../src/niftilib/nifti1_io.c
, and I do the same for theniftilib/nifti1_io.h
file (#include "../../inst/include/niftilib/nifti1_io.h"
) and the fileniftilib/nifti1.h
(#include "../../inst/include/niftilib/nifti1.h"
) then I get the following error:At this point I'm not sure how to proceed, though I'm still looking into it. Is there anything am I missing? Was I wrong to change the include lines in the standalone directory?
Edit:
I added an include in the makefile to solve not finding the RNifti header.
I noticed other
#include
statement missing in the standalone directory source files:znzlib/*
zlib/*
niftilib/*
RNifti.h
Finally, it seems to compile
The text was updated successfully, but these errors were encountered: