Skip to main content
6 events
when toggle format what by license comment
May 14, 2014 at 19:01 vote accept Alex Reynolds
May 14, 2014 at 11:19 answer added MadScientist timeline score: 3
May 14, 2014 at 7:15 history edited Charles
edited tags
May 14, 2014 at 6:50 comment added Alex Reynolds I'm using make 3.81 and bash on both the RHEL6 and OS X 10.9.2 systems. One line that appears to be related to the issue is where I make a static bzip2 library: cd third-party/bzip2-1.0.6 && make libbz2.a && cd /foo/bar && rm -f bzip2 && ln -s bzip2-1.0.6 third-party/bzip2 I have a couple other third-party libraries that I build into static libraries, which also show the same warning message.
May 14, 2014 at 0:04 comment added MadScientist It's not GCC, Clang, or LLVM that's the issue. It's make, which is an entirely separate program. The information we need to see is what command in the makefile is causing that warning to be generated: it will be a recursive invocation of make itself. Assuming you're using GNU make on both OSX and Linux, and you're invoking both versions with the same -j flag, and the makefiles you're using to build are the same, I don't know why it would be that it works on one system but not the other. I assume you're using the same shell on both (not csh for example), etc.
May 13, 2014 at 22:43 history asked Alex Reynolds CC BY-SA 3.0