We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f07a803 commit ba2c5b4Copy full SHA for ba2c5b4
exports/Makefile
@@ -155,8 +155,12 @@ ifeq ($(F_COMPILER), INTEL)
155
-Wl,--whole-archive $< -Wl,--no-whole-archive \
156
-Wl,-soname,$(INTERNALNAME) $(EXTRALIB)
157
$(CC) $(CFLAGS) $(LDFLAGS) -w -o linktest linktest.c ../$(LIBSONAME) $(FEXTRALIB) && echo OK.
158
+else ifeq ($(F_COMPILER), FLANG)
159
+ $(FC) $(FFLAGS) $(LDFLAGS) -shared -o ../$(LIBSONAME) \
160
+ -Wl,--whole-archive $< -Wl,--no-whole-archive \
161
+ -Wl,-soname,$(INTERNALNAME) $(EXTRALIB)
162
+ $(CC) $(CFLAGS) $(LDFLAGS) -w -o linktest linktest.c ../$(LIBSONAME) $(FEXTRALIB) && echo OK.
163
else
-
164
ifneq ($(C_COMPILER), LSB)
165
$(CC) $(CFLAGS) $(LDFLAGS) -shared -o ../$(LIBSONAME) \
166
0 commit comments