Changeset 410
- Timestamp:
- Mar 13, 2013 12:07:39 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ADOL-C/src/Makefile.am
r372 r410 11 11 ############################################################################## 12 12 13 if SPARSE14 AM_CFLAGS = @ac_adolc_cflags@ -DADOLC_INTERNAL=1 -DSPARSE=1 -std=gnu9915 AM_CXXFLAGS = @ac_adolc_cxxflags@ -DADOLC_INTERNAL=1 -DSPARSE=116 else17 13 AM_CFLAGS = @ac_adolc_cflags@ -DADOLC_INTERNAL=1 -std=gnu99 18 14 AM_CXXFLAGS = @ac_adolc_cxxflags@ -DADOLC_INTERNAL=1 19 endif20 15 21 16 AM_CPPFLAGS = -I$(top_srcdir)/ADOL-C/include -I$(top_srcdir)/ADOL-C/src -
trunk/MSVisualStudio/v10/adolc.vcxproj
r396 r410 69 69 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='sparse|Win32'"> 70 70 <ClCompile> 71 <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_WARNINGS;ADOLC_DLL;ADOLC_INTERNAL=1;HAVE_CONFIG_H; SPARSE=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>71 <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_WARNINGS;ADOLC_DLL;ADOLC_INTERNAL=1;HAVE_CONFIG_H;%(PreprocessorDefinitions)</PreprocessorDefinitions> 72 72 <AdditionalIncludeDirectories>$(IntDir);$(ProjectDir)\ColPack\$(IntDir)\include;$(ProjectDir)..\..\ADOL-C\include;$(ProjectDir)..\..\ADOL-C\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 73 73 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> … … 92 92 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='sparse|x64'"> 93 93 <ClCompile> 94 <PreprocessorDefinitions>WIN64;NDEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_WARNINGS;ADOLC_DLL;ADOLC_INTERNAL=1;HAVE_CONFIG_H; SPARSE=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>94 <PreprocessorDefinitions>WIN64;NDEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_WARNINGS;ADOLC_DLL;ADOLC_INTERNAL=1;HAVE_CONFIG_H;%(PreprocessorDefinitions)</PreprocessorDefinitions> 95 95 <AdditionalIncludeDirectories>$(IntDir);$(ProjectDir)\ColPack\$(IntDir)\include;$(ProjectDir)..\..\ADOL-C\include;$(ProjectDir)..\..\ADOL-C\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 96 96 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> -
trunk/MSVisualStudio/v10/nosparse/config.h.in
r392 r410 137 137 #define SIZEOF_VOID_P 4 138 138 139 /* Define 1 if sparse derivative propagation is to be enabled */ 140 /* #undef SPARSE */ 141 139 142 /* Define to 1 if you have the ANSI C header files. */ 140 143 #define STDC_HEADERS 1 -
trunk/MSVisualStudio/v10/sparse/config.h.in
r392 r410 137 137 #define SIZEOF_VOID_P 4 138 138 139 /* Define 1 if sparse derivative propagation is to be enabled */ 140 #define SPARSE 1 141 139 142 /* Define to 1 if you have the ANSI C header files. */ 140 143 #define STDC_HEADERS 1 -
trunk/MSVisualStudio/v10/x64/nosparse/config.h.in
r392 r410 137 137 #define SIZEOF_VOID_P 8 138 138 139 /* Define 1 if sparse derivative propagation is to be enabled */ 140 /* #undef SPARSE */ 141 139 142 /* Define to 1 if you have the ANSI C header files. */ 140 143 #define STDC_HEADERS 1 -
trunk/MSVisualStudio/v10/x64/sparse/config.h.in
r395 r410 137 137 #define SIZEOF_VOID_P 8 138 138 139 /* Define 1 if sparse derivative propagation is to be enabled */ 140 #define SPARSE 1 141 139 142 /* Define to 1 if you have the ANSI C header files. */ 140 143 #define STDC_HEADERS 1 -
trunk/configure.ac
r406 r410 309 309 fi 310 310 AM_CONDITIONAL(SPARSE,[test x${sparse} = xyes]) 311 if test x$sparse = xyes ; then 312 AC_DEFINE(SPARSE,[1],[Define 1 if sparse derivative propagation is to be enabled]) 313 fi 311 314 312 315 if test x$sparse = xyes && test x$have_colpack = xyes; then
Note: See TracChangeset
for help on using the changeset viewer.