Custom Query (122 matches)
Results (34 - 36 of 122)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#102 | migrated | abs_*_dir variables do assumptions on configure options | stefan | stefan |
Description |
The code # Stuff for example Makefiles if test x$prefix = xNONE; then full_prefix=$ac_default_prefix else full_prefix=$prefix fi full_prefix=`cd $full_prefix ; pwd` AC_SUBST(abs_lib_dir) abs_lib_dir=$full_prefix/lib AC_SUBST(abs_include_dir) abs_include_dir=$full_prefix/include AC_SUBST(abs_bin_dir) abs_bin_dir=$full_prefix/bin in the AC_COIN_INIT_AUTOMAKE macro in coin.m4 assume that the user did not specify own values for --exec-prefix, --libdir, and so on. However, already some newer 64bit systems reset $libdir to $exec_prefix/lib64, see also #90. |
|||
#111 | migrated | improve cl wrapper | stefan | stefan |
Description |
Regarding Automake/compile or cccl:
|
|||
#112 | migrated | build shared libraries on Windows | stefan | stefan |
Description |
Make sure autotools can build proper DLLs on Windows. Probably restrict third-party codes (like Glpk), where we do not have control over the code, to static libraries, though. COIN-OR package should make their API explicit by using __declspec(dllexport/dllimport) (MSVC) and __attribute ((visibility(...))) (GCC). Then we should pass option win32-dll to LT_INIT (https://www.gnu.org/software/libtool/manual/html_node/LT_005fINIT.html). |