Changeset 42141
- Timestamp:
- Mar 23, 2022, 1:21:41 PM (4 years ago)
- Location:
- branches/eam_branches/ipp-20220316/Ohana
- Files:
-
- 4 edited
-
Makefile.Common (modified) (1 diff)
-
Makefile.System.in (modified) (1 diff)
-
src/libdvo/include/dvodb.h (modified) (3 diffs)
-
src/opihi/Makefile.Common (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20220316/Ohana/Makefile.Common
r41492 r42141 84 84 @echo "" 85 85 86 # USE THIS? -Wl,--allow-multiple-definition 87 86 88 $(LIB)/%.$(ARCH).so: 87 89 @if [ ! -d $(LIB) ]; then mkdir -p $(LIB); fi 88 90 rm -f $@ 89 gcc -shared -Wl,-soname,$*.so -o $@ $^ -lc 91 # gcc -shared -Wl,-soname,$*.so -o $@ $^ -lc 92 gcc -shared -Wl,-soname,$*.so -o $@ $^ -lc -Wl,--allow-multiple-definition 90 93 @echo "compiled shared library $*" 91 94 @echo "" -
branches/eam_branches/ipp-20220316/Ohana/Makefile.System.in
r12842 r42141 17 17 CFLAGS = @CFLAGS@ 18 18 CPPFLAGS = @CPPFLAGS@ 19 LDFLAGS = @LDFLAGS@ 19 LDFLAGS = @LDFLAGS@ -Wl,--allow-multiple-definition 20 20 DLLTYPE = @DLLTYPE@ 21 21 -
branches/eam_branches/ipp-20220316/Ohana/src/libdvo/include/dvodb.h
r42075 r42141 150 150 151 151 /* measure fields */ 152 enum {MEAS_ZERO,152 typedef enum {MEAS_ZERO, 153 153 MEAS_GLON, 154 154 MEAS_GLAT, … … 312 312 313 313 /* average fields */ 314 enum {AVE_ZERO,314 typedef enum {AVE_ZERO, 315 315 AVE_RA, 316 316 AVE_DEC, … … 376 376 // AVE_Xm, 377 377 378 enum {IMAGE_ZERO,378 typedef enum {IMAGE_ZERO, 379 379 IMAGE_RA, 380 380 IMAGE_DEC, -
branches/eam_branches/ipp-20220316/Ohana/src/opihi/Makefile.Common
r13615 r42141 42 42 @if [ ! -d $(LIB) ]; then mkdir -p $(LIB); fi 43 43 rm -f $@ 44 gcc -shared -Wl,-soname,$*.so -o $@ $^ -lc 44 # gcc -shared -Wl,-soname,$*.so -o $@ $^ -lc 45 gcc -shared -Wl,-soname,$*.so -o $@ $^ -lc -Wl,--allow-multiple-definition 45 46 46 47 $(DESTLIB)/%.so: $(LIB)/%.$(ARCH).so
Note:
See TracChangeset
for help on using the changeset viewer.
