Custom Query (100 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (94 - 96 of 100)

Ticket Resolution Summary Owner Reporter
#128 fixed Please recognize ppc64le architectures Sérgio Monteiro Basto
Description

Here is the latest patch: http://pkgs.fedoraproject.org/cgit/kBuild.git/tree/kBuild-0.1.9998-ppc64le.patch

#133 invalid VAC308 resets LIB entry Yuri Dario
Description

The VAC308 template is resetting the LIB variable, thus the linker is unable to find default libraries. Suggested patch:

--- VAC308.kmk;2	2015-12-17 16:40:00.000000000 +0100
+++ VAC308.kmk	2017-01-05 15:45:58.000000000 +0100
@@ -66,7 +66,7 @@
  TOOL_VAC308_ENV_SETUP ?= $(REDIRECT) \
 	-E 'BEGINLIBPATH=$(PATH_TOOL_VAC308_DLL);$(BEGINLIBPATH)' \
 	-E 'DPATH=$(PATH_TOOL_VAC308_LOCALE);$(PATH_TOOL_VAC308_HELP);$(DPATH)' \
-	-E 'LIB=' \
+	-E 'LIB=$(PATH_TOOL_VAC308_LIB)' \
 	-E 'INCLUDE=' \
 	--
  TOOL_VAC308_CC  ?= $(PATH_TOOL_VAC308_BIN)/icc$(HOSTSUFF_EXE)

#134 fixed last versions doesn't compile at Linux Sérgio Monteiro Basto
Description

Still got this compile errors

kBuild/src/kmk/kmkbuiltin/redirect.c:913:108: error: 'papszEnvVars' undeclared (first use in this function)

kBuild/src/kmk/kmkbuiltin/redirect.c:1579:37: error: 'fdSource' undeclared (first use in this function)

Makefile:1265: recipe for target 'redirect.o' failed

after apply this patch:

Index: src/kmk/Makefile.am
===================================================================
--- ./src/kmk/Makefile.am   (revision 3025)
+++ ./src/kmk/Makefile.am   (working copy)
@@ -86,7 +86,7 @@
        kmkbuiltin/strlcpy.c \
        kmkbuiltin/osdep.c \
        kmkbuiltin/kbuild_protection.c \
-       kmkbuiltin/kbuild_version.c
+       ../lib/kbuild_version.c
 
 kmk_redirect_SOURCES = kmkbuiltin/redirect.c
 
@@ -171,7 +171,7 @@
    -DCONFIG_WITH_KMK_BUILTIN \
     @DEFS@
 
-AM_CPPFLAGS =  $(GLOBINC) -I$(srcdir)/../lib
+AM_CPPFLAGS =  $(GLOBINC) -I$(srcdir)/../lib -I$(srcdir)/../lib/kStuff/include/
 # Only process if target is MS-Windows
 if WINDOWSENV
     AM_CPPFLAGS += $(W32INC)
Note: See TracQuery for help on using queries.