Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Installing on Mac? #2

Closed
v0n0 opened this issue Sep 1, 2020 · 1 comment
Closed

Installing on Mac? #2

v0n0 opened this issue Sep 1, 2020 · 1 comment

Comments

@v0n0
Copy link

v0n0 commented Sep 1, 2020

Does this run on Mac OS? I installed glpk with Homebrew and I get this:

glpk_wrapper.c:2352:42: error: incomplete definition of type 'struct glp_prob'
      for (; ii < (size_t)100; ++ii) arg1->_opaque_prob[ii] = arg2[ii];
                                     ~~~~^
/usr/local/include/glpk.h:38:16: note: forward declaration of 'struct glp_prob'
typedef struct glp_prob glp_prob;
               ^
glpk_wrapper.c:2379:40: error: incomplete definition of type 'struct glp_prob'
  result = (double *)(double *) ((arg1)->_opaque_prob);
                                 ~~~~~~^
/usr/local/include/glpk.h:38:16: note: forward declaration of 'struct glp_prob'
typedef struct glp_prob glp_prob;
               ^
glpk_wrapper.c:2411:34: error: invalid application of 'sizeof' to an incomplete type 'glp_prob' (aka 'struct glp_prob')
  result = (glp_prob *)calloc(1, sizeof(glp_prob));
                                 ^     ~~~~~~~~~~
/usr/local/include/glpk.h:38:16: note: forward declaration of 'struct glp_prob'
typedef struct glp_prob glp_prob;
               ^
glpk_wrapper.c:4232:42: error: incomplete definition of type 'struct glp_tree'
      for (; ii < (size_t)100; ++ii) arg1->_opaque_tree[ii] = arg2[ii];
                                     ~~~~^
/usr/local/include/glpk.h:160:16: note: forward declaration of 'struct glp_tree'
typedef struct glp_tree glp_tree;
               ^
glpk_wrapper.c:4259:40: error: incomplete definition of type 'struct glp_tree'
  result = (double *)(double *) ((arg1)->_opaque_tree);
                                 ~~~~~~^
/usr/local/include/glpk.h:160:16: note: forward declaration of 'struct glp_tree'
typedef struct glp_tree glp_tree;
               ^
glpk_wrapper.c:4291:34: error: invalid application of 'sizeof' to an incomplete type 'glp_tree' (aka 'struct glp_tree')
  result = (glp_tree *)calloc(1, sizeof(glp_tree));
                                 ^     ~~~~~~~~~~
/usr/local/include/glpk.h:160:16: note: forward declaration of 'struct glp_tree'
typedef struct glp_tree glp_tree;
               ^
glpk_wrapper.c:6164:42: error: incomplete definition of type 'struct glp_tran'
      for (; ii < (size_t)100; ++ii) arg1->_opaque_tran[ii] = arg2[ii];
                                     ~~~~^
/usr/local/include/glpk.h:304:16: note: forward declaration of 'struct glp_tran'
typedef struct glp_tran glp_tran;
               ^
glpk_wrapper.c:6191:40: error: incomplete definition of type 'struct glp_tran'
  result = (double *)(double *) ((arg1)->_opaque_tran);
                                 ~~~~~~^
/usr/local/include/glpk.h:304:16: note: forward declaration of 'struct glp_tran'
typedef struct glp_tran glp_tran;
               ^
glpk_wrapper.c:6223:34: error: invalid application of 'sizeof' to an incomplete type 'glp_tran' (aka 'struct glp_tran')
  result = (glp_tran *)calloc(1, sizeof(glp_tran));
                                 ^     ~~~~~~~~~~
/usr/local/include/glpk.h:304:16: note: forward declaration of 'struct glp_tran'
typedef struct glp_tran glp_tran;
               ^
glpk_wrapper.c:11311:17: warning: implicit declaration of function 'glp_main' is invalid in C99 [-Wimplicit-function-declaration]
  result = (int)glp_main(arg1,(char const *(*))arg2);
                ^
glpk_wrapper.c:11323:3: error: use of undeclared identifier 'glp_long'
  glp_long *arg1 = (glp_long *) 0 ;
  ^
glpk_wrapper.c:11323:13: error: use of undeclared identifier 'arg1'
  glp_long *arg1 = (glp_long *) 0 ;
            ^
glpk_wrapper.c:11323:31: error: expected expression
  glp_long *arg1 = (glp_long *) 0 ;
                              ^
glpk_wrapper.c:11323:21: error: use of undeclared identifier 'glp_long'
  glp_long *arg1 = (glp_long *) 0 ;
                    ^
glpk_wrapper.c:11337:21: error: expected expression
  arg1 = (glp_long *)(argp1);
                    ^
glpk_wrapper.c:11337:11: error: use of undeclared identifier 'glp_long'
  arg1 = (glp_long *)(argp1);
          ^
glpk_wrapper.c:11337:3: error: use of undeclared identifier 'arg1'
  arg1 = (glp_long *)(argp1);
  ^
glpk_wrapper.c:11343:7: error: use of undeclared identifier 'arg1'
  if (arg1) (arg1)->lo = arg2;
      ^
glpk_wrapper.c:11343:14: error: use of undeclared identifier 'arg1'
  if (arg1) (arg1)->lo = arg2;
             ^
glpk_wrapper.c:11352:3: error: use of undeclared identifier 'glp_long'
  glp_long *arg1 = (glp_long *) 0 ;
  ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
3 warnings and 20 errors generated.
make: *** [glpk_wrapper.o] Error 1
@brg8
Copy link
Owner

brg8 commented Oct 27, 2020

You can try downloading and installing it directly rather than through Homebrew. I have also historically had problems getting glpk installed. You can use docker to start up a clean environment and get glpk installed there. I did this in a previous project, here is an excerpt from my old Dockerfile

FROM ruby:2.6.3

# throw errors if Gemfile in the docker image has been modified since Gemfile.lock
RUN bundle config --global frozen 1

# install some standard stuff
RUN apt-get -y update
RUN apt-get -y install sudo
RUN apt-get -y install dialog apt-utils
RUN apt-get -y install curl
RUN apt-get -y install build-essential
RUN apt-get -y install manpages-dev
RUN apt-get -y install wget

# install glpk version 4.44
RUN apt-get -y install gnupg
RUN wget ftp://ftp.gnu.org/gnu/glpk/glpk-4.44.tar.gz
RUN wget ftp://ftp.gnu.org/gnu/glpk/glpk-4.44.tar.gz.sig
RUN gpg --keyserver keys.gnupg.net --recv-keys 5981E818
RUN gpg --verify glpk-4.44.tar.gz.sig glpk-4.44.tar.gz
RUN tar -xzvf glpk-4.44.tar.gz

# configure and finalize glpk
RUN cd glpk-4.44 && ./configure && make check && examples/glpsol --version
RUN cd glpk-4.44 && make uninstall
RUN cd glpk-4.44 && make install
RUN which glpsol

@brg8 brg8 closed this as completed Nov 18, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants