Changeset 1114d2 in git
- Timestamp:
- Feb 23, 2012, 8:17:38 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 3b2b4c74c79cbeb064719df18592811f15cd811d
- Parents:
- 74f51f261514079d9bce01fd1a8ffed4de458527
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-02-23 20:17:38+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-02-23 20:35:11+01:00
- Files:
-
- 9 added
- 5 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
r74f51f r1114d2 7 7 endif 8 8 9 PACKAGES=findexec omalloc $(USE_FACTORY) libpolys kernel numeric Singular IntegerProgramming 9 PACKAGES=findexec omalloc $(USE_FACTORY) libpolys kernel numeric Singular IntegerProgramming dyn_modules 10 10 11 11 SUBDIRS=$(PACKAGES) -
configure.ac
r74f51f r1114d2 136 136 AC_CONFIG_FILES([Singular/Makefile]) 137 137 AC_CONFIG_FILES([IntegerProgramming/Makefile]) 138 AC_CONFIG_FILES([dyn_modules/Makefile]) 139 AC_CONFIG_FILES([dyn_modules/bigintm/Makefile]) 140 AC_CONFIG_FILES([dyn_modules/syzextra/Makefile]) 138 141 AC_CONFIG_FILES([libsingular-config]) 139 142 -
dyn_modules/bigintm/bigintm.tst
r74f51f r1114d2 7 7 { 8 8 "Loading the Release version!"; 9 LIB(" ./bigintm.so");9 LIB("bigintm.so"); 10 10 } 11 11 else 12 12 { 13 13 "Loading the Debug version!"; 14 LIB(" ./bigintm_g.sog");14 LIB("bigintm_g.so"); 15 15 } 16 16 … … 18 18 bigintm_setup(); 19 19 printBlackboxTypes(); 20 bigintm_setup(); 20 bigintm_setup(); // error is expected!!! 21 21 printBlackboxTypes(); 22 22 … … 44 44 45 45 typeof(_); 46 47 $ // the rest is more for checking the Singular interpreter! 46 48 47 49 a(); -
dyn_modules/syzextra/ederc.tst
r74f51f r1114d2 31 31 { 32 32 "Loading the Release version!"; 33 LIB(" ./syzextra.so");33 LIB("syzextra.so"); 34 34 } 35 35 else 36 36 { 37 37 "Loading the Debug version!"; 38 LIB(" ./syzextra_g.sog");38 LIB("syzextra_g.so"); 39 39 } 40 40 -
dyn_modules/syzextra/syzextra.tst
r74f51f r1114d2 1 echo = 2;2 3 1 "ndebug?: ", system("with", "ndebug"); 4 2 "om_ndebug?: ", system("with", "om_ndebug"); … … 7 5 { 8 6 "Loading the Release version!"; 9 LIB(" ./syzextra.so");7 LIB("syzextra.so"); 10 8 } 11 9 else 12 10 { 13 11 "Loading the Debug version!"; 14 LIB(" ./syzextra_g.sog");12 LIB("syzextra_g.so"); 15 13 } 16 14
Note: See TracChangeset
for help on using the changeset viewer.