You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -417,7 +417,7 @@ Remove configure block and add:
417
417
#change to windows extensions
418
418
sed -i -E 's/[.]o\b/.obj/g' Makefile src/Makefile
419
419
sed -i -E 's/[.]a\b/.lib/g' Makefile src/Makefile
420
-
420
+
421
421
sed -i -E 's/^AR=(ar.*)/AR?=\1/g' Makefile src/Makefile #allow manually specifing AR
422
422
sed -i -E 's/\$\{CXX\} \$\{LDFLAGS\}/${CXX}${CFLAGS}/g' src/Makefile #this only happens once, and its for linking the main executable, while LD is more on track we need the other translations that compile does so we will use the compiler. We need to use this over CXX_COMPILE as it has the -c command which forces compile only
423
423
sed -i -E "s#PREFIX = .+#PREFIX = $BLD_CONFIG_INSTALL_FOLDER#" Makefile
@@ -431,7 +431,7 @@ Remove configure block and add:
431
431
```
432
432
433
433
after make install add:
434
-
```bash
434
+
```bash
435
435
if [[ $BLD_CONFIG_PREFER_STATIC_LINKING-eq 1 ]];then
0 commit comments