rjRanjana / in-the-box

Automatically exported from code.google.com/p/in-the-box
0 stars 0 forks source link

Build error: missing files in repository #1

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Checkout the fresh copy of the sources from repository
2. Start building the project
3. Compilation fails at mspace.h file with the error message No such file or 
directory in line:
#include "../../../../bionic/libc/bionic/dlmalloc.h"

What version of the product are you using? On what operating system?
r28

Original issue reported on code.google.com by bar...@gmail.com on 2 Jun 2011 at 11:51

GoogleCodeExporter commented 8 years ago
Files are not missing only there is path problem. Here is the change which 
needs to be done to avoid the problem.

Index: cutils/mspace.h
===================================================================
--- cutils/mspace.h (revision 28)
+++ cutils/mspace.h (working copy)
@@ -42,7 +42,7 @@

 #define MSPACES 1
 #define ONLY_MSPACES 1
-#include "../../../../bionic/libc/bionic/dlmalloc.h"
+#include "include/bionic/libc/bionic/dlmalloc.h"

 #ifdef __cplusplus
 extern "C" {

Original comment by searcha...@gmail.com on 4 Jun 2011 at 8:01

GoogleCodeExporter commented 8 years ago

Original comment by ad...@in-the-box.org on 6 Jun 2011 at 4:34