aliens

Author Topic: Build fix for OSX 10.9  (Read 14477 times)

Offline grrussel

  • Captain
  • ***
  • Posts: 72
    • View Profile
Build fix for OSX 10.9
« on: March 31, 2014, 10:03:19 pm »
https://gist.github.com/grrussel/9899657

Fixes the OSX autobuilder.

L/usr/local/lib -L/usr/local/Cellar/yaml-cpp/0.5.1/lib -lSDLmain -lSDL -Wl,-framework,Cocoa -lyaml-cpp  -lSDL_gfx -lSDL_mixer -lSDL_image -framework OpenGL -o ../bin/openxcom
Undefined symbols for architecture x86_64:
  "OpenXcom::ComboBox::MAX_ITEMS", referenced from:
      OpenXcom::ComboBox::setDropdown(int) in ComboBox.o
      OpenXcom::ComboBox::setOptions(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > const&) in ComboBox.o
      OpenXcom::ComboBox::setOptions(std::__1::vector<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> >, std::__1::allocator<std::__1::basic_string<wchar_t, std::__1::char_traits<wchar_t>, std::__1::allocator<wchar_t> > > > const&) in ComboBox.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [../bin/openxcom] Error 1

Offline SupSuper

  • Lazy Developer
  • Administrator
  • Commander
  • *****
  • Posts: 2159
    • View Profile
Re: Build fix for OSX 10.9
« Reply #1 on: April 01, 2014, 02:58:58 am »
I think this was already fixed here? https://github.com/SupSuper/OpenXcom/pull/800

Offline winterheart

  • Colonel
  • ****
  • Posts: 180
  • Fellow Squaddie
    • View Profile
Re: Build fix for OSX 10.9
« Reply #2 on: April 01, 2014, 07:06:51 pm »
Should be fixed in (not yet applied) pull https://github.com/SupSuper/OpenXcom/pull/803

Offline grrussel

  • Captain
  • ***
  • Posts: 72
    • View Profile
Re: Build fix for OSX 10.9
« Reply #3 on: April 01, 2014, 10:01:42 pm »
Indeed, now fixed in the auto builder for OSX.

Offline myk002

  • Colonel
  • ****
  • Posts: 227
    • View Profile
Re: Build fix for OSX 10.9
« Reply #4 on: April 01, 2014, 10:36:22 pm »
interesting -- what version of gcc were you compiling with on Linux?

Offline SupSuper

  • Lazy Developer
  • Administrator
  • Commander
  • *****
  • Posts: 2159
    • View Profile
Re: Build fix for OSX 10.9
« Reply #5 on: April 02, 2014, 03:12:47 am »
Should be fixed in (not yet applied) pull https://github.com/SupSuper/OpenXcom/pull/803
This breaks on MSVC:
Error   1   error LNK2005: "private: static int const OpenXcom::ComboBox::LIST_MARGIN" (?LIST_MARGIN@ComboBox@OpenXcom@@0HB) already defined in State.obj
Error   2   error LNK2005: "private: static int const OpenXcom::ComboBox::MAX_ITEMS" (?MAX_ITEMS@ComboBox@OpenXcom@@0HB) already defined in State.obj

I'm not sure why a static int needs to be defined twice, since other classes (eg. Globe) do fine with just one definition. Maybe you need a clean?

Offline myk002

  • Colonel
  • ****
  • Posts: 227
    • View Profile
Re: Build fix for OSX 10.9
« Reply #6 on: April 02, 2014, 03:19:49 am »
if a clean doesn't work, you could also try declaring/defining like Globe::ROTATE_LONGITUDE
i.e.
in the .h:
class Globe
{
  static const double ROTATE_LONGITUDE;
}

in the .cpp:
const double Globe::ROTATE_LONGITUDE = 0.10;

but yeah, clean should work

Offline winterheart

  • Colonel
  • ****
  • Posts: 180
  • Fellow Squaddie
    • View Profile
Re: Build fix for OSX 10.9
« Reply #7 on: April 02, 2014, 06:09:29 am »
On Linux, where I got same error, I have gcc 4.7.3.
I'll try to clean next time to find out.

Offline grrussel

  • Captain
  • ***
  • Posts: 72
    • View Profile
Re: Build fix for OSX 10.9
« Reply #8 on: April 02, 2014, 09:26:13 am »
OSX builder is once again broken.

Looks like the C++ code is non-standard as written.

https://stackoverflow.com/questions/3025997/c-defining-static-const-integer-members-in-class-definition

Offline grrussel

  • Captain
  • ***
  • Posts: 72
    • View Profile
Re: Build fix for OSX 10.9
« Reply #9 on: April 02, 2014, 09:29:27 am »
Looks like MSVC have this as an extension, and offer a workaround for the multiple instances too

https://msdn.microsoft.com/en-us/library/34h23df8.aspx

Out of Class Definition of static const Integral (or enum) Members

Under the standard (/Za), you must make an out-of-class definition for data members, as shown here:

class CMyClass  {
   static const int max = 5;
   int m_array[max];
}
...
const int CMyClass::max;   https:// out of class definition

Under /Ze, the out-of-class definition is optional for static, const integral, and const enum data members. Only integrals and enums that are static and const can have initializers in a class; the initializing expression must be a const expression.

To avoid errors when an out-of-class definition is provided in a header file and the header file is included in multiple source files, use selectany. For example:

__declspec(selectany) const int CMyClass::max = 5;


Offline SupSuper

  • Lazy Developer
  • Administrator
  • Commander
  • *****
  • Posts: 2159
    • View Profile
Re: Build fix for OSX 10.9
« Reply #10 on: April 02, 2014, 07:05:02 pm »
OSX builder is once again broken.

Looks like the C++ code is non-standard as written.

https://stackoverflow.com/questions/3025997/c-defining-static-const-integer-members-in-class-definition
So why do all of these work? https://puu.sh/7TlZy.png
OpenXcom nightly builder also uses gcc and it compiles fine.
What's special about these statics? I'm really confused. ???

Offline winterheart

  • Colonel
  • ****
  • Posts: 180
  • Fellow Squaddie
    • View Profile
Re: Build fix for OSX 10.9
« Reply #11 on: April 02, 2014, 09:05:35 pm »
OK, I think I found correct answer. std::min require const int & (reference to const int). ComboBox::MAX_ITEMS only declared in header but not initialized, and ld linker cannot access to it. So most recommendations is initialize it outside of class (as we tried it before). Some linkers smart enough (or maybe bugged) to pass this situation.

To quick workaround I suggest to do this:

Code: [Select]
diff --git a/src/Interface/ComboBox.cpp b/src/Interface/ComboBox.cpp
index d90b08d..8124428 100644
--- a/src/Interface/ComboBox.cpp
+++ b/src/Interface/ComboBox.cpp
@@ -231,7 +231,9 @@ void ComboBox::setSelected(int sel)
  */
 void ComboBox::setDropdown(int options)
 {
-       int items = std::min(options, MAX_ITEMS);
+       https:// Initialize const for std::min to avoid linking error on *nix
+       int max_items = MAX_ITEMS;
+       int items = std::min(options, max_items);
        int h = _button->getFont()->getHeight() + _button->getFont()->getSpacing();
        _window->setHeight(items * h + LIST_MARGIN * 2);
        _list->setHeight(items * h);

Offline grrussel

  • Captain
  • ***
  • Posts: 72
    • View Profile
Re: Build fix for OSX 10.9
« Reply #12 on: April 02, 2014, 09:42:09 pm »
FYI: the OSX builds are made with clang, not g++, so it makes for a 3rd possibility of compiler variation. But, essentially, declaring the statics as was done in the header only, and then taking the address of the static (as is done in calling std::min with its reference parameters) seems not to work on clang, some g++ versions, and is also not standard c++; As for the other instances of this, well, perhaps it is simply luck that they are not passed to std::min or a similar function or usage?

Offline grrussel

  • Captain
  • ***
  • Posts: 72
    • View Profile
Re: Build fix for OSX 10.9
« Reply #13 on: April 02, 2014, 09:47:29 pm »
and it builds on OSX again :-)

Offline grrussel

  • Captain
  • ***
  • Posts: 72
    • View Profile
Re: Build fix for OSX 10.9
« Reply #14 on: April 09, 2014, 10:49:07 am »
As of change set:

ensure intro movie is centered on linux (detail)
Added multiline textlists. (detail)

The OSX build fails.

Interface/TextList.cpp:573:15: error: no matching function for call to 'min'
        int selRow = std::min(_selRow, _rows.size());
                     ^~~~~~~~
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/c++/v1/algorithm:2322:1: note: candidate template ignored: deduced conflicting types for parameter '_Tp' ('unsigned int' vs. 'unsigned long')
min(const _Tp& __a, const _Tp& __b)
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/c++/v1/algorithm:2314:1: note: candidate function template not viable: requires 3 arguments, but 2 were provided
min(const _Tp& __a, const _Tp& __b, _Compare __comp)
^
1 error generated.