Skip to content
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

Closed
MarbolanGos opened this issue Jun 21, 2011 · 5 comments
Closed

Cross compilation issue with OpenMP #39

MarbolanGos opened this issue Jun 21, 2011 · 5 comments
Assignees
Labels
Milestone

Comments

@MarbolanGos
Copy link

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?

@ghost ghost assigned xianyi Jun 21, 2011
xianyi added a commit that referenced this issue Jun 22, 2011
@xianyi
Copy link
Collaborator

xianyi commented Jun 22, 2011

Hi,

I just comment "#include <sys/mman.h>".
You can check out release-v0.1alpha2 branch.

Thanks

Xianyi Zhang

@MarbolanGos
Copy link
Author

Hi,

thanks for this catch again!
Concerning the commit 078bfd0 wouldn't it be more interesting to change the name of the libgoto2.def to libopenblas.def ?

@xianyi
Copy link
Collaborator

xianyi commented Jun 22, 2011

Hi MarbolanGos,
Because libgoto2.def is only used internally, I decide keeping this name.
Thanks

Xianyi Zhang

@xianyi xianyi closed this as completed Jun 22, 2011
@MarbolanGos
Copy link
Author

Hi again,
I still have an issue when compiling:
$ make BINARY=32 USE_OPENMP=1 CC=i686-w64-mingw32-gcc FC=i686-w64-mingw32-gfortran -j 4
i686-w64-mingw32-gcc -O2 -fopenmp -Wall -m32 -DF_INTERFACE_GFORT -DSMP_SERVER -DUSE_OPENMP -DMAX_CPU_NUMBER=4 -DASMNAME=dllinit -DASMFNAME=dllinit -DNAME=dllinit -DCNAME=dllinit -DCHAR_NAME="dllinit_" -DCHAR_CNAME="dllinit" -DNO_AFFINITY -I.. -c -o dllinit.obj -s dllinit.c
i686-w64-mingw32-ranlib ../libopenblas_nehalemp-r0.1alpha2.lib
i686-w64-mingw32-dllwrap -o ../libopenblas_nehalemp-r0.1alpha2.dll --def libgoto2.def
--entry _dllinit@12 -s dllinit.obj --dllname libopenblas_nehalemp-r0.1alpha2.dll ../libopenblas_nehalemp-r0.1alpha2.lib -L/usr/lib64/gcc/i686-w64-mingw32/4.6.0 -L/usr/lib64/gcc/i686-w64-mingw32/4.6.0/../../../../i686-w64-mingw32/lib/../lib -L/usr/i686-w64-mingw32/sys-root/mingw/lib/../lib -L/usr/lib64/gcc/i686-w64-mingw32/4.6.0/../../../../i686-w64-mingw32/lib -L/usr/i686-w64-mingw32/sys-root/mingw/lib -lgfortran -lgomp -lmingwthrd -lmingw32 -lmoldname -lmingwex -lmsvcrt -lquadmath -lm -lmingwthrd -lmingw32 -lmoldname -lmingwex -lmsvcrt -lmingwthrd -lmingw32 -lmoldname -lmingwex -lmsvcrt
lib /machine:i386 /def:libgoto2.def
make[1]: execvp: lib: Permission denied
make[1]: [../libopenblas_nehalemp-r0.1alpha2.dll] Error 127 (ignored)
make[1]: Leaving directory `/home/Nanotimes/Downloads/OpenBLAS/exports'
ln -fs libopenblas_nehalemp-r0.1alpha2.dll libopenblas.dll

This does not seem to be blocking for linking to the dll file but I do not understand the permission error

@xianyi
Copy link
Collaborator

xianyi commented Jun 22, 2011

Hi,

I think this "lib /machine:i386 /def:libgoto2.def" is only worked in windows. GotoBLAS ignore this error in Makefile.
Thus, you built the lib successfully.

Thanks

Xianyi Zhang

Hi again,
I still have an issue when compiling:
$ make BINARY=32 USE_OPENMP=1 CC=i686-w64-mingw32-gcc FC=i686-w64-mingw32-gfortran -j 4
i686-w64-mingw32-gcc -O2 -fopenmp -Wall -m32 -DF_INTERFACE_GFORT -DSMP_SERVER -DUSE_OPENMP -DMAX_CPU_NUMBER=4 -DASMNAME=dllinit -DASMFNAME=dllinit -DNAME=dllinit -DCNAME=dllinit -DCHAR_NAME="dllinit_" -DCHAR_CNAME="dllinit" -DNO_AFFINITY -I.. -c -o dllinit.obj -s dllinit.c
i686-w64-mingw32-ranlib ../libopenblas_nehalemp-r0.1alpha2.lib
i686-w64-mingw32-dllwrap -o ../libopenblas_nehalemp-r0.1alpha2.dll --def libgoto2.def
--entry _dllinit@12 -s dllinit.obj --dllname libopenblas_nehalemp-r0.1alpha2.dll ../libopenblas_nehalemp-r0.1alpha2.lib -L/usr/lib64/gcc/i686-w64-mingw32/4.6.0 -L/usr/lib64/gcc/i686-w64-mingw32/4.6.0/../../../../i686-w64-mingw32/lib/../lib -L/usr/i686-w64-mingw32/sys-root/mingw/lib/../lib -L/usr/lib64/gcc/i686-w64-mingw32/4.6.0/../../../../i686-w64-mingw32/lib -L/usr/i686-w64-mingw32/sys-root/mingw/lib -lgfortran -lgomp -lmingwthrd -lmingw32 -lmoldname -lmingwex -lmsvcrt -lquadmath -lm -lmingwthrd -lmingw32 -lmoldname -lmingwex -lmsvcrt -lmingwthrd -lmingw32 -lmoldname -lmingwex -lmsvcrt
lib /machine:i386 /def:libgoto2.def
make[1]: execvp: lib: Permission denied
make[1]: [../libopenblas_nehalemp-r0.1alpha2.dll] Error 127 (ignored)
make[1]: Leaving directory `/home/Nanotimes/Downloads/OpenBLAS/exports'
ln -fs libopenblas_nehalemp-r0.1alpha2.dll libopenblas.dll

This does not seem to be blocking for linking to the dll file but I do not understand the permission error

martin-frbg added a commit that referenced this issue Mar 30, 2020
kseniyazaytseva pushed a commit to kseniyazaytseva/OpenBLAS that referenced this issue Dec 19, 2023
…SCR9_128 configuration

Merge in PL/openblas from k.zaytseva/fix_symv to dev-riscv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants