-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Cross compilation issue with OpenMP #39
Comments
Hi, I just comment "#include <sys/mman.h>". Thanks Xianyi Zhang |
Hi, thanks for this catch again! |
Hi MarbolanGos, Xianyi Zhang |
Hi again, This does not seem to be blocking for linking to the dll file but I do not understand the permission error |
Hi, I think this "lib /machine:i386 /def:libgoto2.def" is only worked in windows. GotoBLAS ignore this error in Makefile. Thanks Xianyi Zhang
|
…SCR9_128 configuration Merge in PL/openblas from k.zaytseva/fix_symv to dev-riscv
Hi,
I was trying to compile the OpenBLAS using openMP forced with USE_OPENMP = 1 in Makefile.rule
The compiler I am using is the mingw one. When the option is not switched on it compiles without any issue but when setting this on it stops when trying to compile the file blas_server_omp.c as it does not know the file sys/mman.h.
If you modify the Makefile to include the /usr/include for this particular file it goes further but hangs also with a conflict on another file (I can reproduce if needed).
I made the change in the Makefile:
ifeq ($(USE_OPENMP), 1)
BLAS_SERVER = blas_server_omp.c
else
ifeq ($(OSNAME), WINNT)
BLAS_SERVER = blas_server_win32.c
endif
To:
ifeq ($(USE_OPENMP), 1)
BLAS_SERVER = blas_server_omp.c
ifeq ($(OSNAME), WINNT)
BLAS_SERVER = blas_server_win32.c
endif
ifeq ($(OSNAME), CYGWIN_NT)
BLAS_SERVER = blas_server_win32.c
endif
else
ifeq ($(OSNAME), WINNT)
BLAS_SERVER = blas_server_win32.c
endif
This allows to compile in my case but I think it is not very accurate... If someone has an idea to be better?
The text was updated successfully, but these errors were encountered: