Explorar el Código

Merge pull request #114 from wolfv/patch-1

LIBS have to come after OBJ files for recent GCC
pull/115/head
Mark Liffiton hace 3 años
committed by GitHub
padre
commit
afddd8c504
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      wiringPi/Makefile

+ 1
- 1
wiringPi/Makefile Ver fichero

@@ -75,7 +75,7 @@ static:

$(DYNAMIC): $(OBJ)
$Q echo "[Link (Dynamic)]"
$Q $(CC) -shared -Wl,-soname,libwiringPi.so$(WIRINGPI_SONAME_SUFFIX) -o libwiringPi.so.$(VERSION) $(LIBS) $(OBJ)
$Q $(CC) -shared -Wl,-soname,libwiringPi.so$(WIRINGPI_SONAME_SUFFIX) -o libwiringPi.so.$(VERSION) $(OBJ) $(LIBS)

.c.o:
$Q echo [Compile] $<


Cargando…
Cancelar
Guardar