我有一个使用CPLEX的MIP模型。我是Mac中编译程序的新手。我想知道编译这样的程序的命令行是什么?我已经在我的机器上安装了CPLEX。 这里是我正在使用的命令,但它不起作用:
g ++ -I /<'path'> / CPLEX_Studio1261 / cplex / include -I /<'path'> / CPLEX_Studio1261 / concert / include -L /<'path'> / CPLEX_Studio1261 / cplex / lib / x86-64_linux / static_pic -L /<'path'> / CPLEX_Studio1261 / concert / lib / x86-64_linux / static_pic hello.cpp -lilocplex -lconcert -lcplex
任何帮助表示赞赏!
答案 0 :(得分:2)
我自己没有使用CPLEX,但您似乎正在tri:::
8.1 add *.h and *.lib path in the "searching path" and "library path"
8.2 add -DIL_STL "in other c flags"
8.3 add -lilocplex -lconcert -lcplex in "other linker flags"
我认为你需要在命令行的所有链接器之前放置源文件的名称(hello.cpp
)。
请参阅链接 - here。