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
  •  


Lot of 10pcs Brocade 57-1000012-01 8Gbps SWL 850nm SFP+ Optical Transceivers picture

Lot of 10pcs Brocade 57-1000012-01 8Gbps SWL 850nm SFP+ Optical Transceivers

$19.00



AFBR-57G5MZ-ELX AVAGO Genuine 32Gbps 850NM MMO FC SFP+ TRANSCEIVER picture

AFBR-57G5MZ-ELX AVAGO Genuine 32Gbps 850NM MMO FC SFP+ TRANSCEIVER

$65.00



GENUINE Cisco SFP-10G-SR V03 10-2415-03 Transceiver Module 850nm 10G SFP+ picture

GENUINE Cisco SFP-10G-SR V03 10-2415-03 Transceiver Module 850nm 10G SFP+

$6.99



Cisco Nexus 48-Port 10G SFP+ Switch N9K-9396PX w/ 9K-M12PQ 12-Port 40G QSFP picture

Cisco Nexus 48-Port 10G SFP+ Switch N9K-9396PX w/ 9K-M12PQ 12-Port 40G QSFP

$249.99



Genuine Cisco SFP-10G-SR V03 10GBASE-SR SFP+ Transceiver Module 10-2415-03  picture

Genuine Cisco SFP-10G-SR V03 10GBASE-SR SFP+ Transceiver Module 10-2415-03

$8.00



NEW Sealed Cisco SFP-10G-LR 10GBASE-LR SFP+ 1310nm 10km *US Shipping* picture

NEW Sealed Cisco SFP-10G-LR 10GBASE-LR SFP+ 1310nm 10km *US Shipping*

$18.00



Brand New Cisco GLC-LH-SMD 1000BASE-LX/LH SFP Module 1310nm 10km SMF LC picture

Brand New Cisco GLC-LH-SMD 1000BASE-LX/LH SFP Module 1310nm 10km SMF LC

$13.89



Cisco GLC-SX-MMD SFP 1000Base-SX Short Haul  Module 10-2626-01 - 1 Year Warranty picture

Cisco GLC-SX-MMD SFP 1000Base-SX Short Haul Module 10-2626-01 - 1 Year Warranty

$21.49



LOT OF 20 Genuine Cisco SFP-10G-SR V03 10GBASE-SR SFP+ Transceiver Module picture

LOT OF 20 Genuine Cisco SFP-10G-SR V03 10GBASE-SR SFP+ Transceiver Module

$89.00



Cisco 10G SFP+ Module SFP-10G-SR 10-2415-03 (Lot of 5) picture

Cisco 10G SFP+ Module SFP-10G-SR 10-2415-03 (Lot of 5)

$24.99