Hi folks,
I am trying to build jcc to install JModelica. The linking process dies:
building 'jcc' extension
gcc -DNDEBUG -g -fwrapv -Os -Wall -Wstrict-prototypes -Qunused-arguments
-dynamiclib -D_jcc_lib -DJCC_VER="2.19"
-I/Library/Java/JavaVirtualMachines/jdk1.8.0.jdk/Contents/Home/include
-
Hi!
> It is most deterministic to set the variables controlling which version of
> everything is used. It us also important to use the same compiler (gcc vs
> clang) that was used to build your version of python.
Got it. I’m using the stock compiler with Xcode 5.1 (Clang) and the stock
Python
Andi,
I was able to compile by installing apple-gcc42 from Homebrew and applying the
appropriate symlinks to bypass Apple’s compiler. It’s a stopgap, but it allows
me to proceed.
Mike
at 22:57, Mike McCormick wrote:
>>
>> Andi,
>>
>> I was able to compile by installing apple-gcc42 from Homebrew and applying
>> the appropriate symlinks to bypass Apple’s compiler. It’s a stopgap, but it
>> allows me to proceed.
>
> That's also
had no idea of the extent of the
Python build system.
This likely explains a LOT of the other issues I’ve been having with other
projects, such as “no symbol for x86_64” during linking.
Mike
On Mar 29, 2014, at 9:36 AM, Andi Vajda wrote:
>
>> On Mar 29, 2014, at 14:33, Mike McCormi