Results 1 to 3 of 3

Thread: compiling cloop on fedora core 2

  1. #1

    compiling cloop on fedora core 2

    I am using fedora core 2 and I have tried to compile cloop version 2.01-5. However the default tarball gives me the following errors:
    [root@skibum cloop-2.01]# make
    ( make -C advancecomp-1.9_create_compressed_fs advfs )
    make[1]: Entering directory `/home/savarese/cloop-2.01/advancecomp-1.9_create_co
    mpressed_fs'
    g++ -DHAVE_CONFIG_H -I. -I. -I. -g -O3 -DUSE_ERROR_SILENT -DUSE_COMPRESS -c
    -o advfs.o `test -f 'advfs.cc' || echo './'`advfs.cc
    In file included from advfs.cc:24:
    /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header;
    include <endian.h> instead!
    In file included from advfs.cc:33:
    /usr/include/netinet/in.h:262: error: syntax error before `)' token
    /usr/include/netinet/in.h:262: error: syntax error before `?' token
    /usr/include/netinet/in.h:262: error: syntax error before `)' token
    /usr/include/netinet/in.h:263: error: syntax error before `)' token
    /usr/include/netinet/in.h:263: error: syntax error before `?' token
    /usr/include/netinet/in.h:263: error: syntax error before `)' token
    /usr/include/netinet/in.h:265: error: syntax error before `)' token
    /usr/include/netinet/in.h:265: error: syntax error before `?' token
    /usr/include/netinet/in.h:265: error: syntax error before `)' token
    /usr/include/netinet/in.h:267: error: syntax error before `)' token
    /usr/include/netinet/in.h:267: error: syntax error before `?' token
    /usr/include/netinet/in.h:267: error: syntax error before `)' token
    In file included from advfs.cc:33:
    /usr/include/netinet/in.h:387: error: syntax error before `}' token
    make[1]: *** [advfs.o] Error 1
    make[1]: Leaving directory `/home/savarese/cloop-2.01/advancecomp-1.9_create_com
    pressed_fs'
    make: *** [advancecomp-1.9_create_compressed_fs/advfs] Error 2

    When I remove the byteorder include from advfs.cc and replace it with endian.h, I get this error:

    [root@skibum cloop-2.01]# make
    ( make -C advancecomp-1.9_create_compressed_fs advfs )
    make[1]: Entering directory `/home/savarese/cloop-2.01/advancecomp-1.9_create_compressed_fs'
    g++ -DHAVE_CONFIG_H -I. -I. -I. -g -O3 -DUSE_ERROR_SILENT -DUSE_COMPRESS -c -o advfs.o `test -f 'advfs.cc' || echo './'`advfs.cc
    advfs.cc: In function `int main(int, char**)':
    advfs.cc:245: error: `__cpu_to_be64' undeclared (first use this function)
    advfs.cc:245: error: (Each undeclared identifier is reported only once for each
    function it appears in.)
    make[1]: *** [advfs.o] Error 1
    make[1]: Leaving directory `/home/savarese/cloop-2.01/advancecomp-1.9_create_compressed_fs'
    make: *** [advancecomp-1.9_create_compressed_fs/advfs] Error 2

    My kernel version is 2.6.8-1.521smp. Does anybody knows why this happens?
    Thanks,
    Scott

  2. #2
    Senior Member registered user
    Join Date
    Apr 2003
    Posts
    220
    what do you want to do with this cloop?

    use kernel module od jsut extract_compressed_fs binaries?

  3. #3
    Junior Member
    Join Date
    Dec 2004
    Posts
    1

    Re: compiling cloop on fedora core 2

    I had the same problem..
    If you move the line
    #include <netinet/in.h>
    above the original
    #include <asm/byteorder.h>
    the code should compile.. It did the trick here... and I'm running FC2 with 2.4.22 kernel..

    Quote Originally Posted by scottsavarese
    I am using fedora core 2 and I have tried to compile cloop version 2.01-5. However the default tarball gives me the following errors:
    [root@skibum cloop-2.01]# make
    ( make -C advancecomp-1.9_create_compressed_fs advfs )
    make[1]: Entering directory `/home/savarese/cloop-2.01/advancecomp-1.9_create_co
    mpressed_fs'
    g++ -DHAVE_CONFIG_H -I. -I. -I. -g -O3 -DUSE_ERROR_SILENT -DUSE_COMPRESS -c
    -o advfs.o `test -f 'advfs.cc' || echo './'`advfs.cc
    In file included from advfs.cc:24:
    /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header;
    include <endian.h> instead!
    In file included from advfs.cc:33:
    /usr/include/netinet/in.h:262: error: syntax error before `)' token
    /usr/include/netinet/in.h:262: error: syntax error before `?' token
    /usr/include/netinet/in.h:262: error: syntax error before `)' token
    /usr/include/netinet/in.h:263: error: syntax error before `)' token
    /usr/include/netinet/in.h:263: error: syntax error before `?' token
    /usr/include/netinet/in.h:263: error: syntax error before `)' token
    /usr/include/netinet/in.h:265: error: syntax error before `)' token
    /usr/include/netinet/in.h:265: error: syntax error before `?' token
    /usr/include/netinet/in.h:265: error: syntax error before `)' token
    /usr/include/netinet/in.h:267: error: syntax error before `)' token
    /usr/include/netinet/in.h:267: error: syntax error before `?' token
    /usr/include/netinet/in.h:267: error: syntax error before `)' token
    In file included from advfs.cc:33:
    /usr/include/netinet/in.h:387: error: syntax error before `}' token
    make[1]: *** [advfs.o] Error 1
    make[1]: Leaving directory `/home/savarese/cloop-2.01/advancecomp-1.9_create_com
    pressed_fs'
    make: *** [advancecomp-1.9_create_compressed_fs/advfs] Error 2

    When I remove the byteorder include from advfs.cc and replace it with endian.h, I get this error:

    [root@skibum cloop-2.01]# make
    ( make -C advancecomp-1.9_create_compressed_fs advfs )
    make[1]: Entering directory `/home/savarese/cloop-2.01/advancecomp-1.9_create_compressed_fs'
    g++ -DHAVE_CONFIG_H -I. -I. -I. -g -O3 -DUSE_ERROR_SILENT -DUSE_COMPRESS -c -o advfs.o `test -f 'advfs.cc' || echo './'`advfs.cc
    advfs.cc: In function `int main(int, char**)':
    advfs.cc:245: error: `__cpu_to_be64' undeclared (first use this function)
    advfs.cc:245: error: (Each undeclared identifier is reported only once for each
    function it appears in.)
    make[1]: *** [advfs.o] Error 1
    make[1]: Leaving directory `/home/savarese/cloop-2.01/advancecomp-1.9_create_compressed_fs'
    make: *** [advancecomp-1.9_create_compressed_fs/advfs] Error 2

    My kernel version is 2.6.8-1.521smp. Does anybody knows why this happens?
    Thanks,
    Scott

Similar Threads

  1. Klik fails in Fedora Core 4
    By universpace in forum Klik
    Replies: 3
    Last Post: 03-11-2006, 08:52 AM
  2. Linux Fedora Core 4
    By shadyaftermath in forum MS Windows & New to Linux
    Replies: 1
    Last Post: 08-26-2005, 11:12 PM
  3. Replies: 0
    Last Post: 07-26-2005, 09:27 PM
  4. Having troubles with compiling and using cloop.o
    By ghstridr in forum Customising & Remastering
    Replies: 5
    Last Post: 05-04-2004, 11:15 AM
  5. compiling cloop
    By pr0gm4 in forum Customising & Remastering
    Replies: 0
    Last Post: 08-27-2003, 02:31 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


LENOVO P520 Workstation W-2135 up to 128GB RAM 4TB SSD Win11P WiFi DVD/RW Gaming picture

LENOVO P520 Workstation W-2135 up to 128GB RAM 4TB SSD Win11P WiFi DVD/RW Gaming

$439.88



~OVERSTOCK~ 15.6

~OVERSTOCK~ 15.6" Lenovo ThinkPad Laptop: 8GB RAM 512 GB SSD Windows 10

$179.99



Lenovo Workstation Gaming NVIDIA RTX 2080 W-2135 up to 128GB RAM 4TB SSD Win11P picture

Lenovo Workstation Gaming NVIDIA RTX 2080 W-2135 up to 128GB RAM 4TB SSD Win11P

$739.99



Lenovo ThinkPad T480 14

Lenovo ThinkPad T480 14" Touchscreen Laptop i5 256GB NVMe 16GB RAM Win 11 Pro

$249.00



Lenovo 100e Chromebook Laptop 2nd Gen | 11.6

Lenovo 100e Chromebook Laptop 2nd Gen | 11.6" HD | MTK 1.7GHz | 4GB RAM | 32GB

$32.00



Lenovo - LOQ 15.6

Lenovo - LOQ 15.6" Gaming Laptop FHD - Intel Core i5-13420H with 8GB Memory -...

$629.99



Lenovo Ideapad 1i 15.6

Lenovo Ideapad 1i 15.6" FHD Notebook Intel Core i5-1235U 8GB RAM 256GB SSD

$349.99



Lenovo ThinkPad Yoga 11e 11.6

Lenovo ThinkPad Yoga 11e 11.6" 2in1 Touch Intel Core i3 4GB RAM 128GB SSD Win10

$59.00



Notebook Lenovo Slim Pro 9 Laptop, 16

Notebook Lenovo Slim Pro 9 Laptop, 16" Glass, i9-13905H, GB, 1TB SSD

$1051.99



Lenovo ThinkPad 14

Lenovo ThinkPad 14" Laptop Computer Core i7 16GB RAM 256GB SSD Windows 10 Pro

$229.99