Issue572

Title Compile error on Mac OSX
Priority bug Status resolved
Superseder Nosy List florian, lixrxyy, malte, manuel
Assigned To malte Keywords
Optional summary

Created on 2015-07-29.07:21:04 by lixrxyy, last changed by florian.

Messages
msg4557 (view) Author: florian Date: 2015-08-04.17:53:46
Thanks, Xiao.

I'm closing this this issue, because the patch is already merged.
msg4556 (view) Author: lixrxyy Date: 2015-08-04.17:34:48
Hi Florian,

I'm happy to help, will get back to you later.
msg4555 (view) Author: lixrxyy Date: 2015-08-04.17:34:01
Hi Malte,

I don't recall what's error when I compiled the codebase with clang. It probably was 
same error.

I just pulled the latest changes and compiled with clang.
Everything is good.
This really makes anyone using Mac OS much easier to try out Fast-Downward, thank you 
for the effort.
msg4531 (view) Author: florian Date: 2015-07-29.10:18:48
Also, I read in your link that you use XCode. CMake can theoretically generate
an XCode project for you and I would also be interested in how this works out.
msg4530 (view) Author: florian Date: 2015-07-29.10:15:15
Hi Xiao,

we are also currently working on a new build system based on cmake (issue67).
I'm currently looking for volunteers to test this with as many different setups
as possible. As Malte said, we don't have Macs, so we didn't test it there so
far. If you want to help with this, you could clone from my repository, update
to the branch, try to build and run everything, and report the results in
issue67 (msg4431 and msg4434 in issue67 explain how to do this).
msg4529 (view) Author: malte Date: 2015-07-29.08:28:40
Dear Xiao, thanks for reporting this!

We cannot move the #include on top of the #if block because this would break the
build on Windows. I have instead added the #include into the part of the #if
statement for Mac OS as well. Can you test if the newest version of the code
works for you?

Also, regarding the documentation, we made some changes to make the code compile
with clang as well, so I'm not sure the additional setup setups mentioned in our
current build instructions are necessary. Would it be possible for you to try
out what happens if you just try to build the compiler with "./build_all" with
no further options? (Unfortunately we don't have access to a Mac ourselves.)
msg4528 (view) Author: lixrxyy Date: 2015-07-29.07:21:04
I got the following error while compiling the code on MacOS with gcc 4.8.
utilities.cc:174:12: error: use of undeclared identifier 'getpid'
    return getpid();
           ^
1 error generated.
make: *** [.obj/utilities.release.o] Error 1


It can be fixed by moving "#include <unistd.h>" to above "#if OPERATING_SYSTEM == LINUX" in the file 
"src/search/utilities.cc"

Detail steps I tried compiling on Mac OSX: https://xli.github.io/ai/2015/07/28/compile-fast-
downward-on-mac-osx.html

(This is a tiny problem for me, and I don't really need the fix. Just thought you may like to know 
this and simply fix it)
History
Date User Action Args
2015-08-04 17:53:46floriansetstatus: chatting -> resolved
messages: + msg4557
2015-08-04 17:34:48lixrxyysetmessages: + msg4556
2015-08-04 17:34:01lixrxyysetmessages: + msg4555
2015-08-04 11:23:38manuelsetnosy: + manuel
2015-07-29 10:18:48floriansetmessages: + msg4531
2015-07-29 10:15:15floriansetnosy: + florian
messages: + msg4530
2015-07-29 08:28:52maltesetassignedto: malte
2015-07-29 08:28:40maltesetstatus: unread -> chatting
nosy: + malte
messages: + msg4529
2015-07-29 07:21:04lixrxyycreate