You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2017/12/01 22:32:36 UTC

[GitHub] OferRosenberg opened a new issue #8917: Build using android.arm64 android.armv7 dockers fails, while arm64 and arm7 dockers work

OferRosenberg opened a new issue #8917: Build using android.arm64 android.armv7 dockers fails, while arm64 and arm7 dockers work
URL: https://github.com/apache/incubator-mxnet/issues/8917
 
 
   I'm trying to build MxNet using the multiarch dockers. 
   While the arm64 and armv7 dockers end succesfully, the Android arm64 and Armv7 docker fails due to compilation errors related to shm_open and shm_unlock - see snapshot below
   
   In file included from src/storage/storage.cc:30:
   src/storage/./cpu_shared_storage_manager.h:124:13: error: use of undeclared identifier 'shm_open'
         fid = shm_open(filename.c_str(), O_EXCL|O_CREAT|O_RDWR, 0666);
               ^
   src/storage/./cpu_shared_storage_manager.h:129:11: error: use of undeclared identifier 'shm_open'
       fid = shm_open(filename.c_str(), O_RDWR, 0666);
             ^
   src/storage/./cpu_shared_storage_manager.h:164:14: error: use of undeclared identifier 'shm_unlink'
       CHECK_EQ(shm_unlink(filename.c_str()), 0)
                ^
   3 errors generated.
   make: *** [build/src/storage/storage.o] Error 1
   
   Is there some configuration I need to do in order to make the android dockers to work ?
   
   Thanks,
   Ofer.
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services