Custom Query (100 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (97 - 99 of 100)

Ticket Resolution Summary Owner Reporter
#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)
#135 fixed commit 3169 breaks build with gcc on Linux Fedora 26 + Sérgio Monteiro Basto Sérgio Monteiro Basto
Description

http://trac.netlabs.org/kbuild/changeset/3169/trunk/src/kmk/kmkbuiltin.c

#define BUILTIN_ENTRY(a_fn, a_sz, a_uFnSignature, fMpSafe, fNeedEnv) \
{  { { sizeof(a_sz) - 1, a_sz, } }, \
       (uintptr_t)a_fn, a_uFnSignature,   fMpSafe, fNeedEnv }
, } } ,

?!??

Note: See TracQuery for help on using queries.